accountSetup.vue 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  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
  66. class="text-1"
  67. @click="toNextPage(`/pageD/userAgreement/userAgreement`)"
  68. >
  69. <text>{{ i18n.user }}</text>
  70. <image
  71. src="../../static/mine/325.png"
  72. class="right-icon"
  73. mode=""
  74. ></image>
  75. </view>
  76. <view
  77. class="text-1"
  78. @click="toNextPage('/pageC/privacyPolicy/privacyPolicy')"
  79. >
  80. <text>{{ i18n.privacy }}</text>
  81. <image
  82. src="../../static/mine/325.png"
  83. class="right-icon"
  84. mode=""
  85. ></image>
  86. </view>
  87. <!-- <view
  88. class="text-1"
  89. @click="toNextPage(`/pageD/platformProducts/platformProducts`)"
  90. >
  91. <text>{{ i18n.platform }}</text>
  92. <image
  93. src="../../static/mine/325.png"
  94. class="right-icon"
  95. mode=""
  96. ></image>
  97. </view> -->
  98. <view
  99. class="text-2"
  100. @click="toNextPage(`/pageD/joinPlatfrom/joinPlatfrom`)"
  101. >
  102. <text>{{ i18n.merchant }}</text>
  103. <image
  104. src="../../static/mine/325.png"
  105. class="right-icon"
  106. mode=""
  107. ></image>
  108. </view>
  109. </view>
  110. <button class="layout" @click="layout">{{ i18n.layout }}</button>
  111. </view>
  112. </template>
  113. <script>
  114. import AllRight from "../mineComponent/allRight/allRight.vue";
  115. export default {
  116. components: {
  117. AllRight,
  118. },
  119. computed: {
  120. i18n() {
  121. return this.$t("index");
  122. },
  123. },
  124. onShow() {
  125. uni.setNavigationBarTitle({
  126. title: this.i18n.setup,
  127. });
  128. },
  129. data() {
  130. return {
  131. userInfo: {},
  132. };
  133. },
  134. methods: {
  135. //退出登录
  136. layout() {
  137. uni.clearStorage();
  138. uni.navigateTo({
  139. url: "/pages/login/login",
  140. });
  141. },
  142. toNextPage(url) {
  143. uni.navigateTo({
  144. url: url,
  145. });
  146. },
  147. getUserInfo() {
  148. uni.getStorage({
  149. key: "user_info",
  150. success: ({ data }) => {
  151. this.userInfo = data;
  152. },
  153. });
  154. },
  155. },
  156. mounted() {
  157. this.getUserInfo();
  158. uni.setNavigationBarTitle({
  159. title: this.i18n.setup,
  160. });
  161. },
  162. created() {},
  163. };
  164. </script>
  165. <style lang="scss" scoped>
  166. .page {
  167. padding: 20rpx 24rpx;
  168. .set-top {
  169. background-color: #fff;
  170. border-radius: 16rpx;
  171. padding: 0 20rpx;
  172. .information {
  173. display: flex;
  174. justify-content: space-between;
  175. align-items: center;
  176. width: 100%;
  177. height: 176rpx;
  178. .information-lift {
  179. display: flex;
  180. align-items: center;
  181. .header-img {
  182. border-radius: 50%;
  183. height: 116rpx;
  184. width: 116rpx;
  185. margin-right: 20rpx;
  186. }
  187. .name {
  188. font-size: 36rpx;
  189. }
  190. }
  191. }
  192. .address {
  193. display: flex;
  194. justify-content: space-between;
  195. height: 106rpx;
  196. align-items: center;
  197. border-top: 2rpx solid rgba(151, 151, 151, 0.2);
  198. }
  199. }
  200. .set-center {
  201. margin-top: 20rpx;
  202. background-color: #fff;
  203. border-radius: 16rpx;
  204. padding: 0 20rpx;
  205. .security {
  206. display: flex;
  207. height: 102rpx;
  208. border-bottom: 2rpx solid rgba(151, 151, 151, 0.2);
  209. justify-content: space-between;
  210. align-items: center;
  211. }
  212. .switch {
  213. display: flex;
  214. justify-content: space-between;
  215. height: 104rpx;
  216. align-items: center;
  217. }
  218. }
  219. .set-bottom {
  220. border-radius: 16rpx;
  221. padding: 0 20rpx;
  222. background-color: #fff;
  223. margin-top: 20rpx;
  224. .text-1 {
  225. display: flex;
  226. justify-content: space-between;
  227. align-items: center;
  228. height: 102rpx;
  229. border-bottom: 2rpx solid rgba(151, 151, 151, 0.2);
  230. }
  231. .text-2 {
  232. display: flex;
  233. justify-content: space-between;
  234. align-items: center;
  235. height: 102rpx;
  236. }
  237. }
  238. .layout {
  239. border-radius: 16rpx;
  240. background-color: #fff;
  241. color: #f83224;
  242. font-size: 32rpx;
  243. height: 92rpx;
  244. margin-top: 20rpx;
  245. }
  246. .right-icon {
  247. width: 32rpx;
  248. height: 32rpx;
  249. }
  250. .text-right {
  251. display: flex;
  252. align-items: center;
  253. text {
  254. font-size: 30rpx;
  255. color: rgba(34, 34, 34, 0.5);
  256. }
  257. }
  258. }
  259. </style>