accountSet.vue 814 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <template>
  2. <view class="page">
  3. <uni-Cell :celllist="celllist">
  4. <template #customContent="{ item }">
  5. <view v-if="item.title=='手机号'" class="dis a-c">
  6. <text style="font-size: 30rpx;color: #666;">18335592986</text>
  7. </view>
  8. </template>
  9. </uni-Cell>
  10. </view>
  11. </template>
  12. <script>
  13. export default {
  14. data() {
  15. return {
  16. celllist: [{
  17. title: "重置密码",
  18. url: "/pages/set/resetPassword",
  19. clickType: 'navigate',
  20. },
  21. {
  22. title: "注销账号",
  23. url: "/pages/set/accountCancellation",
  24. clickType: 'navigate',
  25. }
  26. ]
  27. }
  28. },
  29. onShow() {
  30. },
  31. onLoad() {
  32. },
  33. methods: {
  34. }
  35. }
  36. </script>
  37. <style lang="scss" scoped>
  38. .page {
  39. background-color: #F8F8F8;
  40. height: 100vh;
  41. }
  42. </style>