accountSetup.vue 4.4 KB

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