accountSetup.vue 5.1 KB

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