editOutbound.vue 573 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <view class="container outbound-content">
  3. <view class="top-box">
  4. 修改后的外呼号码,将作为您的默认外呼号码,若后期还需修改,可在【我的】-【外呼号码】页面设置
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. }
  13. },
  14. methods: {
  15. }
  16. }
  17. </script>
  18. <style scoped lang="scss">
  19. .outbound-content {
  20. .top-box {
  21. width: 100%;
  22. background-color: #F7F7F7;
  23. padding: 20rpx 34rpx ;
  24. font-size: 28rpx;
  25. font-weight: 400;
  26. line-height: 48rpx;
  27. color: #666666;
  28. }
  29. }
  30. </style>