accountSecurity.vue 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. },
  28. components: {
  29. textRight
  30. },
  31. computed: {
  32. i18n() {
  33. return this.$t('index')
  34. }
  35. },
  36. methods: {
  37. toCancellation(){
  38. uni.navigateTo({
  39. url:"/pageC/accountCancellation/accountCancellation"
  40. })
  41. }
  42. },
  43. mounted() {
  44. uni.setNavigationBarTitle({
  45. title: this.i18n.account
  46. })
  47. }
  48. }
  49. </script>
  50. <style scoped lang="scss">
  51. .page {
  52. padding: 20rpx 24rpx;
  53. .content-top {
  54. background-color: #fff;
  55. border-radius: 16rpx;
  56. padding: 0 24rpx;
  57. .first {
  58. height: 108rpx;
  59. display: flex;
  60. justify-content: space-between;
  61. align-items: center;
  62. border-bottom: 2rpx solid rgba(151, 151, 151, .1);
  63. }
  64. }
  65. .content-bottom{
  66. background-color: #fff;
  67. border-radius: 16rpx;
  68. padding: 0 24rpx;
  69. margin-top: 20rpx;
  70. .first {
  71. height: 108rpx;
  72. display: flex;
  73. justify-content: space-between;
  74. align-items: center;
  75. border-bottom: 2rpx solid rgba(151, 151, 151, .1);
  76. }
  77. }
  78. }
  79. </style>