set-up.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. <!-- 设置 -->
  2. <template>
  3. <view class="wrap">
  4. <view class="module">
  5. <view class="row-between other-height" @tap="personalInformation">
  6. <view class="left-sidebar">
  7. <image :src="info.headimg" class="user-img" mode="aspectFill"></image>
  8. <view class="user-name">
  9. {{info.name}}
  10. </view>
  11. </view>
  12. <view class="right-sidebar">
  13. <image src="../../../static/back-icon2.png" class="back-icon" mode="widthFix"></image>
  14. </view>
  15. </view>
  16. <view class="row-between" @tap="myAddress">
  17. <text class="label">我的收货地址</text>
  18. <view class="right-sidebar">
  19. <image src="../../../static/back-icon2.png" class="back-icon" mode="widthFix"></image>
  20. </view>
  21. </view>
  22. </view>
  23. <view class="module">
  24. <view class="row-between" @tap="accountsAndSecurity">
  25. <text class="label">账户与安全</text>
  26. <view class="right-sidebar">
  27. <image src="../../../static/back-icon2.png" class="back-icon" mode="widthFix"></image>
  28. </view>
  29. </view>
  30. <view class="row-between" @tap="privacySetting">
  31. <text class="label">隐私政策</text>
  32. <view class="right-sidebar">
  33. <image src="../../../static/back-icon2.png" class="back-icon" mode="widthFix"></image>
  34. </view>
  35. </view>
  36. <view class="row-between" @tap="aboutUs">
  37. <text class="label">关于我们</text>
  38. <view class="right-sidebar">
  39. <image src="../../../static/back-icon2.png" class="back-icon" mode="widthFix"></image>
  40. </view>
  41. </view>
  42. <view class="row-between">
  43. <text class="label">客服电话</text>
  44. <view class="right-sidebar">
  45. 4005665205
  46. </view>
  47. </view>
  48. <view class="row-between" @tap="clearCache">
  49. <text class="label">清除缓存</text>
  50. <view class="right-sidebar">
  51. 13.0M
  52. </view>
  53. </view>
  54. <view class="row-between" @tap="check">
  55. <text class="label">检查更新</text>
  56. <view class="right-sidebar">
  57. 当前版本1.01
  58. <image src="../../../static/back-icon2.png" class="back-icon" mode="widthFix"></image>
  59. </view>
  60. </view>
  61. </view>
  62. <view class="btn-box">
  63. <button type="default" @tap="logout">退出当前账号</button>
  64. </view>
  65. </view>
  66. </template>
  67. <script>
  68. export default {
  69. data() {
  70. return {
  71. info: {},
  72. }
  73. },
  74. onLoad() {
  75. this.info = uni.getStorageSync('USER_INFO') || {};
  76. },
  77. methods: {
  78. //退出当前账号确认-弹窗
  79. logout() {
  80. uni.showModal({
  81. title: '提示',
  82. content: '确定要退出当前账号吗?',
  83. confirmColor: '#F2501A',
  84. success: function(res) {
  85. if (res.confirm) {
  86. uni.removeStorageSync('session_key');
  87. uni.removeStorageSync('USER_INFO');
  88. uni.reLaunch({
  89. url: '/pages/index/index',
  90. })
  91. } else if (res.cancel) {
  92. console.log('用户点击取消');
  93. }
  94. }
  95. });
  96. },
  97. //清理缓存-弹窗
  98. clearCache() {
  99. uni.showModal({
  100. title: '提示',
  101. content: '确定清理缓存吗??',
  102. confirmColor: '#F2501A',
  103. success: function(res) {
  104. if (res.confirm) {
  105. uni.showLoading({
  106. title: '清理中'
  107. });
  108. setTimeout(function() {
  109. uni.hideLoading();
  110. uni.showToast({
  111. title: '已清理緩存147.74m',
  112. icon: 'none',
  113. duration: 2000
  114. });
  115. }, 1500);
  116. console.log('用户点击确定');
  117. } else if (res.cancel) {
  118. console.log('用户点击取消');
  119. }
  120. }
  121. });
  122. },
  123. //检查更新
  124. check() {
  125. uni.showToast({
  126. title: '已是最新版本',
  127. icon: 'none',
  128. duration: 2000
  129. });
  130. },
  131. // 跳转我的收货地址
  132. myAddress() {
  133. uni.navigateTo({
  134. url: '../my-address/my-address'
  135. })
  136. },
  137. // 跳转账户与安全
  138. accountsAndSecurity() {
  139. uni.navigateTo({
  140. url: '../accounts-and-security/accounts-and-security'
  141. })
  142. },
  143. // 跳转关于我们
  144. aboutUs() {
  145. uni.navigateTo({
  146. url: '../about-us/about-us'
  147. })
  148. },
  149. // 跳转隐私政策
  150. privacySetting() {
  151. uni.navigateTo({
  152. url: '../privacy-setting/privacy-setting'
  153. })
  154. },
  155. // 跳转个人资料
  156. personalInformation() {
  157. uni.navigateTo({
  158. url: '../personal-information/personal-information'
  159. })
  160. },
  161. }
  162. }
  163. </script>
  164. <style scoped lang="scss">
  165. @import "./set-up.css";
  166. </style>