accountSetup.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. <template>
  2. <view class="page">
  3. <view class="set-top">
  4. <view
  5. class="information"
  6. @click="toNextPage('/pageC/personalInformation/personalInformation')"
  7. >
  8. <view class="information-lift">
  9. <image :src="userInfo.avatar" class="header-img" mode=""></image>
  10. <view class="name"> {{ userInfo.nickname }} </view>
  11. </view>
  12. <image
  13. class="right-icon"
  14. src="../../static/mine/325.png"
  15. mode=""
  16. ></image>
  17. </view>
  18. <view
  19. class="address"
  20. @click="
  21. toNextPage('/pageC/addressManagement/addressManagement?type=setup')
  22. "
  23. >
  24. <view class="address-manage">
  25. {{ i18n.address }}
  26. </view>
  27. <view class="text-right">
  28. <text>{{ i18n.addAndEdit }}</text>
  29. <image
  30. src="../../static/mine/325.png"
  31. class="right-icon"
  32. mode=""
  33. ></image>
  34. </view>
  35. </view>
  36. </view>
  37. <view class="set-center">
  38. <view
  39. class="security"
  40. @click="toNextPage('/pageC/accountSecurity/accountSecurity')"
  41. >
  42. <text>{{ i18n.account }}</text>
  43. <view class="text-right">
  44. <text>{{ i18n.password }}</text>
  45. <image
  46. src="../../static/mine/325.png"
  47. class="right-icon"
  48. mode=""
  49. ></image>
  50. </view>
  51. </view>
  52. <view
  53. class="switch"
  54. @click="toNextPage('/pageC/switchLanguage/switchLanguage')"
  55. >
  56. <text>{{ i18n.switch }}</text>
  57. <image
  58. src="../../static/mine/325.png"
  59. class="right-icon"
  60. mode=""
  61. ></image>
  62. </view>
  63. </view>
  64. <view class="set-bottom">
  65. <view class="text-1">
  66. <text>{{ i18n.user }}</text>
  67. <image
  68. src="../../static/mine/325.png"
  69. class="right-icon"
  70. mode=""
  71. ></image>
  72. </view>
  73. <view
  74. class="text-1"
  75. @click="toNextPage('/pageC/privacyPolicy/privacyPolicy')"
  76. >
  77. <text>{{ i18n.privacy }}</text>
  78. <image
  79. src="../../static/mine/325.png"
  80. class="right-icon"
  81. mode=""
  82. ></image>
  83. </view>
  84. <view class="text-1">
  85. <text>{{ i18n.platform }}</text>
  86. <image
  87. src="../../static/mine/325.png"
  88. class="right-icon"
  89. mode=""
  90. ></image>
  91. </view>
  92. <view class="text-2">
  93. <text>{{ i18n.merchant }}</text>
  94. <image
  95. src="../../static/mine/325.png"
  96. class="right-icon"
  97. mode=""
  98. ></image>
  99. </view>
  100. </view>
  101. <button class="layout" @click="layout">{{ i18n.layout }}</button>
  102. </view>
  103. </template>
  104. <script>
  105. import AllRight from "../mineComponent/allRight/allRight.vue";
  106. export default {
  107. components: {
  108. AllRight,
  109. },
  110. computed: {
  111. i18n() {
  112. return this.$t("index");
  113. },
  114. },
  115. onShow() {
  116. uni.setNavigationBarTitle({
  117. title: this.i18n.setup,
  118. });
  119. },
  120. data() {
  121. return {
  122. userInfo: {},
  123. };
  124. },
  125. methods: {
  126. //退出登录
  127. layout() {
  128. uni.clearStorage();
  129. uni.navigateTo({
  130. url: "/pages/login/login",
  131. });
  132. },
  133. toNextPage(url) {
  134. uni.navigateTo({
  135. url: url,
  136. });
  137. },
  138. getUserInfo() {
  139. uni.getStorage({
  140. key: "user_info",
  141. success: ({ data }) => {
  142. this.userInfo = data;
  143. },
  144. });
  145. },
  146. },
  147. mounted() {
  148. this.getUserInfo();
  149. uni.setNavigationBarTitle({
  150. title: this.i18n.setup,
  151. });
  152. },
  153. created() {},
  154. };
  155. </script>
  156. <style lang="scss" scoped>
  157. .page {
  158. padding: 20rpx 24rpx;
  159. .set-top {
  160. background-color: #fff;
  161. border-radius: 16rpx;
  162. padding: 0 20rpx;
  163. .information {
  164. display: flex;
  165. justify-content: space-between;
  166. align-items: center;
  167. width: 100%;
  168. height: 176rpx;
  169. .information-lift {
  170. display: flex;
  171. align-items: center;
  172. .header-img {
  173. border-radius: 50%;
  174. height: 116rpx;
  175. width: 116rpx;
  176. margin-right: 20rpx;
  177. }
  178. .name {
  179. font-size: 36rpx;
  180. }
  181. }
  182. }
  183. .address {
  184. display: flex;
  185. justify-content: space-between;
  186. height: 106rpx;
  187. align-items: center;
  188. border-top: 2rpx solid rgba(151, 151, 151, 0.2);
  189. }
  190. }
  191. .set-center {
  192. margin-top: 20rpx;
  193. background-color: #fff;
  194. border-radius: 16rpx;
  195. padding: 0 20rpx;
  196. .security {
  197. display: flex;
  198. height: 102rpx;
  199. border-bottom: 2rpx solid rgba(151, 151, 151, 0.2);
  200. justify-content: space-between;
  201. align-items: center;
  202. }
  203. .switch {
  204. display: flex;
  205. justify-content: space-between;
  206. height: 104rpx;
  207. align-items: center;
  208. }
  209. }
  210. .set-bottom {
  211. border-radius: 16rpx;
  212. padding: 0 20rpx;
  213. background-color: #fff;
  214. margin-top: 20rpx;
  215. .text-1 {
  216. display: flex;
  217. justify-content: space-between;
  218. align-items: center;
  219. height: 102rpx;
  220. border-bottom: 2rpx solid rgba(151, 151, 151, 0.2);
  221. }
  222. .text-2 {
  223. display: flex;
  224. justify-content: space-between;
  225. align-items: center;
  226. height: 102rpx;
  227. }
  228. }
  229. .layout {
  230. border-radius: 16rpx;
  231. background-color: #fff;
  232. color: #f83224;
  233. font-size: 32rpx;
  234. height: 92rpx;
  235. margin-top: 20rpx;
  236. }
  237. .right-icon {
  238. width: 32rpx;
  239. height: 32rpx;
  240. }
  241. .text-right {
  242. display: flex;
  243. align-items: center;
  244. text {
  245. font-size: 30rpx;
  246. color: rgba(34, 34, 34, 0.5);
  247. }
  248. }
  249. }
  250. </style>