accountSecurity.vue 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <template>
  2. <view class="page">
  3. <!-- <view class="content-top">
  4. <view class="first">
  5. <text>{{i18n.editPassword}}</text>
  6. <textRight :texts="i18n.setPassword" />
  7. </view>
  8. <view class="first">
  9. <text>{{i18n.editPhone}}</text>
  10. <textRight texts="178****0000" />
  11. </view>
  12. </view> -->
  13. <view class="content-bottom">
  14. <view class="first" @click="toCancellation">
  15. <text>{{ i18n.accountCancellation }}</text>
  16. <textRight :texts="i18n.cancellation" />
  17. </view>
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. import textRight from "./component/textRight.vue";
  23. export default {
  24. data() {
  25. return {};
  26. },
  27. components: {
  28. textRight,
  29. },
  30. computed: {
  31. i18n() {
  32. return this.$t("index");
  33. },
  34. },
  35. methods: {
  36. toCancellation() {
  37. uni.navigateTo({
  38. url: "/pageC/accountCancellation/accountCancellation",
  39. });
  40. },
  41. },
  42. mounted() {
  43. uni.setNavigationBarTitle({
  44. title: this.i18n.account,
  45. });
  46. },
  47. };
  48. </script>
  49. <style scoped lang="scss">
  50. .page {
  51. padding: 20rpx 24rpx;
  52. .content-top {
  53. background-color: #fff;
  54. border-radius: 16rpx;
  55. padding: 0 24rpx;
  56. .first {
  57. height: 108rpx;
  58. display: flex;
  59. justify-content: space-between;
  60. align-items: center;
  61. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  62. }
  63. }
  64. .content-bottom {
  65. background-color: #fff;
  66. border-radius: 16rpx;
  67. padding: 0 24rpx;
  68. margin-top: 20rpx;
  69. .first {
  70. height: 108rpx;
  71. display: flex;
  72. justify-content: space-between;
  73. align-items: center;
  74. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  75. }
  76. }
  77. }
  78. </style>