accountSetup.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. <template>
  2. <view class="page">
  3. <view class="set-top">
  4. <view class="information" @click="toNextPage('/pageC/personalInformation/personalInformation')">
  5. <view class="information-lift">
  6. <image src="http://pic.imeitou.com/uploads/allimg/240522/10-240522162434-50.jpg" class="header-img"
  7. mode=""></image>
  8. <view class="name"> 张三 </view>
  9. </view>
  10. <image class="right-icon" src="../../static/mine/325.png" mode=""></image>
  11. </view>
  12. <view class="address" @click="toNextPage('/pageC/addressManagement/addressManagement')">
  13. <view class="address-manage">
  14. {{ i18n.address }}
  15. </view>
  16. <view class="text-right">
  17. <text>{{ i18n.addAndEdit }}</text>
  18. <image src="../../static/mine/325.png" class="right-icon" mode=""></image>
  19. </view>
  20. </view>
  21. </view>
  22. <view class="set-center">
  23. <view class="security" @click="toNextPage('/pageC/accountSecurity/accountSecurity')">
  24. <text>{{ i18n.account }}</text>
  25. <view class="text-right">
  26. <text>{{ i18n.password }}</text>
  27. <image src="../../static/mine/325.png" class="right-icon" mode=""></image>
  28. </view>
  29. </view>
  30. <view class="switch" @click="toNextPage('/pageC/switchLanguage/switchLanguage')">
  31. <text>{{ i18n.switch }}</text>
  32. <image src="../../static/mine/325.png" class="right-icon" mode=""></image>
  33. </view>
  34. </view>
  35. <view class="set-bottom">
  36. <view class="text-1">
  37. <text>{{ i18n.user }}</text>
  38. <image src="../../static/mine/325.png" class="right-icon" mode=""></image>
  39. </view>
  40. <view class="text-1" @click="toNextPage('/pageC/privacyPolicy/privacyPolicy')">
  41. <text>{{ i18n.privacy }}</text>
  42. <image src="../../static/mine/325.png" class="right-icon" mode=""></image>
  43. </view>
  44. <view class="text-1">
  45. <text>{{ i18n.platform }}</text>
  46. <image src="../../static/mine/325.png" class="right-icon" mode=""></image>
  47. </view>
  48. <view class="text-2">
  49. <text>{{ i18n.merchant }}</text>
  50. <image src="../../static/mine/325.png" class="right-icon" mode=""></image>
  51. </view>
  52. </view>
  53. <button class="layout" @click="layout">{{ i18n.layout }}</button>
  54. </view>
  55. </template>
  56. <script>
  57. import AllRight from "../mineComponent/allRight/allRight.vue";
  58. export default {
  59. components: {
  60. AllRight,
  61. },
  62. computed: {
  63. i18n() {
  64. return this.$t("index");
  65. },
  66. },
  67. onShow() {
  68. uni.setNavigationBarTitle({
  69. title: this.i18n.setup,
  70. });
  71. },
  72. data() {
  73. return {};
  74. },
  75. methods: {
  76. //退出登录
  77. layout() {
  78. uni.clearStorage()
  79. uni.navigateTo({
  80. url: "/pages/login/login",
  81. });
  82. },
  83. toNextPage(url) {
  84. uni.navigateTo({
  85. url: url,
  86. });
  87. },
  88. },
  89. mounted() {
  90. uni.setNavigationBarTitle({
  91. title: this.i18n.setup,
  92. });
  93. },
  94. created() {},
  95. };
  96. </script>
  97. <style lang="scss" scoped>
  98. .page {
  99. padding: 20rpx 24rpx;
  100. .set-top {
  101. background-color: #fff;
  102. border-radius: 16rpx;
  103. padding: 0 20rpx;
  104. .information {
  105. display: flex;
  106. justify-content: space-between;
  107. align-items: center;
  108. width: 100%;
  109. height: 176rpx;
  110. .information-lift {
  111. display: flex;
  112. align-items: center;
  113. .header-img {
  114. border-radius: 50%;
  115. height: 116rpx;
  116. width: 116rpx;
  117. margin-right: 20rpx;
  118. }
  119. .name {
  120. font-size: 36rpx;
  121. }
  122. }
  123. }
  124. .address {
  125. display: flex;
  126. justify-content: space-between;
  127. height: 106rpx;
  128. align-items: center;
  129. border-top: 2rpx solid rgba(151, 151, 151, 0.2);
  130. }
  131. }
  132. .set-center {
  133. margin-top: 20rpx;
  134. background-color: #fff;
  135. border-radius: 16rpx;
  136. padding: 0 20rpx;
  137. .security {
  138. display: flex;
  139. height: 102rpx;
  140. border-bottom: 2rpx solid rgba(151, 151, 151, 0.2);
  141. justify-content: space-between;
  142. align-items: center;
  143. }
  144. .switch {
  145. display: flex;
  146. justify-content: space-between;
  147. height: 104rpx;
  148. align-items: center;
  149. }
  150. }
  151. .set-bottom {
  152. border-radius: 16rpx;
  153. padding: 0 20rpx;
  154. background-color: #fff;
  155. margin-top: 20rpx;
  156. .text-1 {
  157. display: flex;
  158. justify-content: space-between;
  159. align-items: center;
  160. height: 102rpx;
  161. border-bottom: 2rpx solid rgba(151, 151, 151, 0.2);
  162. }
  163. .text-2 {
  164. display: flex;
  165. justify-content: space-between;
  166. align-items: center;
  167. height: 102rpx;
  168. }
  169. }
  170. .layout {
  171. border-radius: 16rpx;
  172. background-color: #fff;
  173. color: #f83224;
  174. font-size: 32rpx;
  175. height: 92rpx;
  176. margin-top: 20rpx;
  177. }
  178. .right-icon {
  179. width: 32rpx;
  180. height: 32rpx;
  181. }
  182. .text-right {
  183. display: flex;
  184. align-items: center;
  185. text {
  186. font-size: 30rpx;
  187. color: rgba(34, 34, 34, 0.5);
  188. }
  189. }
  190. }
  191. </style>