bind-mobile-phone-number.vue 1010 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!-- 绑定手机号 -->
  2. <template>
  3. <view class="wrap">
  4. <view class="content-box">
  5. <text>{{info.showPhone}}</text>
  6. <text>当前绑定手机号</text>
  7. </view>
  8. <view class="btn-box">
  9. <button type="default" class="active" @tap="changeBindMobilePhoneNumber">更换绑定</button>
  10. <button type="default" @tap="back">返回</button>
  11. </view>
  12. </view>
  13. </template>
  14. <script>
  15. export default {
  16. data() {
  17. return {
  18. info: {},
  19. }
  20. },
  21. onLoad() {
  22. this.info = uni.getStorageSync('USER_INFO') || {};
  23. this.info.showPhone = this.info.phone.split('').map((n, i) => i > 2 && i < 7 ? '*' : n).join('');
  24. },
  25. methods: {
  26. // 跳转更换绑定手机号
  27. changeBindMobilePhoneNumber(){
  28. uni.navigateTo({
  29. url:'../change-bind-mobile-phone-number/change-bind-mobile-phone-number'
  30. })
  31. },
  32. // 返回
  33. back(){
  34. uni.navigateBack({
  35. delta: 1,
  36. })
  37. }
  38. }
  39. }
  40. </script>
  41. <style scoped lang="scss">
  42. @import "./bind-mobile-phone-number.css";
  43. </style>