accounts-and-security.vue 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <!-- 账户与安全 -->
  2. <template>
  3. <view class="wrap">
  4. <view class="module">
  5. <view class="row-between" @tap="bindMobilePhoneNumber">
  6. <text class="label">绑定手机号</text>
  7. <view class="right-sidebar">
  8. {{info.showPhone}}
  9. <image src="../../../static/back-icon2.png" class="back-icon" mode="widthFix"></image>
  10. </view>
  11. </view>
  12. <view class="row-between" @tap="changePassword">
  13. <text class="label">修改密码</text>
  14. <view class="right-sidebar">
  15. <image src="../../../static/back-icon2.png" class="back-icon" mode="widthFix"></image>
  16. </view>
  17. </view>
  18. <view class="row-between" @tap="realNameCertification">
  19. <text class="label">实名认证</text>
  20. <view class="right-sidebar">
  21. <image src="../../../static/back-icon2.png" class="back-icon" mode="widthFix"></image>
  22. </view>
  23. </view>
  24. </view>
  25. <view class="module">
  26. <view class="row-between" @tap="cancelAccount">
  27. <text class="label">注销账户</text>
  28. <view class="right-sidebar">
  29. <text class="gray">账户注销后无法恢复</text>
  30. <image src="../../../static/back-icon2.png" class="back-icon" mode="widthFix"></image>
  31. </view>
  32. </view>
  33. </view>
  34. </view>
  35. </template>
  36. <script>
  37. export default {
  38. data() {
  39. return {
  40. info: {},
  41. }
  42. },
  43. onLoad() {
  44. this.info = uni.getStorageSync('USER_INFO') || {};
  45. this.info.showPhone = this.info.phone.split('').map((n, i) => i > 2 && i < 7 ? '*' : n).join('');
  46. },
  47. methods: {
  48. // 跳转绑定手机号
  49. bindMobilePhoneNumber(){
  50. uni.navigateTo({
  51. url:'../bind-mobile-phone-number/bind-mobile-phone-number'
  52. })
  53. },
  54. // 跳转修改密码
  55. changePassword(){
  56. uni.navigateTo({
  57. url:'../change-password/change-password'
  58. })
  59. },
  60. // 跳转实名认证
  61. realNameCertification(){
  62. uni.navigateTo({
  63. url:'../real-name-certification/real-name-certification'
  64. })
  65. },
  66. // 跳转注销用户
  67. cancelAccount(){
  68. uni.navigateTo({
  69. url:'../cancel-account/cancel-account'
  70. })
  71. },
  72. }
  73. }
  74. </script>
  75. <style scoped lang="scss">
  76. @import "./accounts-and-security.css";
  77. </style>