12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <view class="container outbound-content">
- <view class="top-box">
- 修改后的外呼号码,将作为您的默认外呼号码,若后期还需修改,可在【我的】-【外呼号码】页面设置
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style scoped lang="scss">
- .outbound-content {
- .top-box {
- width: 100%;
- background-color: #F7F7F7;
- padding: 20rpx 34rpx ;
- font-size: 28rpx;
- font-weight: 400;
- line-height: 48rpx;
- color: #666666;
- }
- }
- </style>
|