accountSetup.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  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.accountCancellation }}</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 { conn } from "../../utils/WebIM.js";
  115. import AllRight from "../mineComponent/allRight/allRight.vue";
  116. export default {
  117. components: {
  118. AllRight,
  119. },
  120. computed: {
  121. i18n() {
  122. return this.$t("index");
  123. },
  124. },
  125. onShow() {
  126. this.getUserInfo();
  127. uni.setNavigationBarTitle({
  128. title: this.i18n.setup,
  129. });
  130. },
  131. data() {
  132. return {
  133. userInfo: {},
  134. };
  135. },
  136. methods: {
  137. //退出登录
  138. layout() {
  139. uni.clearStorage();
  140. uni.navigateTo({
  141. url: "/pages/login/login",
  142. });
  143. conn.close();
  144. },
  145. toNextPage(url) {
  146. uni.navigateTo({
  147. url: url,
  148. });
  149. },
  150. getUserInfo() {
  151. uni.getStorage({
  152. key: "user_info",
  153. success: ({ data }) => {
  154. this.userInfo = data;
  155. },
  156. });
  157. },
  158. },
  159. mounted() {
  160. uni.setNavigationBarTitle({
  161. title: this.i18n.setup,
  162. });
  163. },
  164. created() {},
  165. };
  166. </script>
  167. <style lang="scss" scoped>
  168. .page {
  169. padding: 20rpx 24rpx;
  170. .set-top {
  171. background-color: #fff;
  172. border-radius: 16rpx;
  173. padding: 0 20rpx;
  174. .information {
  175. display: flex;
  176. justify-content: space-between;
  177. align-items: center;
  178. width: 100%;
  179. height: 176rpx;
  180. .information-lift {
  181. display: flex;
  182. align-items: center;
  183. .header-img {
  184. border-radius: 50%;
  185. height: 116rpx;
  186. width: 116rpx;
  187. margin-right: 20rpx;
  188. }
  189. .name {
  190. font-size: 36rpx;
  191. }
  192. }
  193. }
  194. .address {
  195. display: flex;
  196. justify-content: space-between;
  197. height: 106rpx;
  198. align-items: center;
  199. border-top: 2rpx solid rgba(151, 151, 151, 0.2);
  200. }
  201. }
  202. .set-center {
  203. margin-top: 20rpx;
  204. background-color: #fff;
  205. border-radius: 16rpx;
  206. padding: 0 20rpx;
  207. .security {
  208. display: flex;
  209. height: 102rpx;
  210. border-bottom: 2rpx solid rgba(151, 151, 151, 0.2);
  211. justify-content: space-between;
  212. align-items: center;
  213. }
  214. .switch {
  215. display: flex;
  216. justify-content: space-between;
  217. height: 104rpx;
  218. align-items: center;
  219. }
  220. }
  221. .set-bottom {
  222. border-radius: 16rpx;
  223. padding: 0 20rpx;
  224. background-color: #fff;
  225. margin-top: 20rpx;
  226. .text-1 {
  227. display: flex;
  228. justify-content: space-between;
  229. align-items: center;
  230. height: 102rpx;
  231. border-bottom: 2rpx solid rgba(151, 151, 151, 0.2);
  232. }
  233. .text-2 {
  234. display: flex;
  235. justify-content: space-between;
  236. align-items: center;
  237. height: 102rpx;
  238. }
  239. }
  240. .layout {
  241. border-radius: 16rpx;
  242. background-color: #fff;
  243. color: #f83224;
  244. font-size: 32rpx;
  245. height: 92rpx;
  246. margin-top: 20rpx;
  247. }
  248. .right-icon {
  249. width: 32rpx;
  250. height: 32rpx;
  251. }
  252. .text-right {
  253. display: flex;
  254. align-items: center;
  255. text {
  256. font-size: 30rpx;
  257. color: rgba(34, 34, 34, 0.5);
  258. }
  259. }
  260. }
  261. </style>