setting.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. <template>
  2. <s-layout class="set-wrap" title="系统设置" :bgStyle="{ color: '#fff' }">
  3. <view class="header-box ss-flex-col ss-row-center ss-col-center">
  4. <image class="logo-img ss-m-b-46" src="@/static/zxlogo.png" mode="aspectFit"></image>
  5. <view class="name ss-m-b-24">{{ appInfo.name }}</view>
  6. </view>
  7. <view class="container-list">
  8. <uni-list :border="false">
  9. <uni-list-item title="当前版本" :rightText="appInfo.version" showArrow clickable :border="false"
  10. class="list-border" @tap="onCheckUpdate" />
  11. <uni-list-item title="本地缓存" :rightText="storageSize" showArrow :border="false" class="list-border" />
  12. <uni-list-item title="关于我们" showArrow clickable :border="false" class="list-border" @tap="
  13. sheep.$router.go('/pages/public/richtext', {
  14. title: '关于我们'
  15. })
  16. " />
  17. <!-- 为了过审 只有 iOS-App 有注销账号功能 -->
  18. <uni-list-item v-if="isLogin && sheep.$platform.os === 'ios' && sheep.$platform.name === 'App'"
  19. title="注销账号" rightText="" showArrow clickable :border="false" class="list-border"
  20. @click="onLogoff" />
  21. </uni-list>
  22. </view>
  23. <view class="set-footer ss-flex-col ss-row-center ss-col-center">
  24. <view class="agreement-box ss-flex ss-col-center ss-m-b-40">
  25. <view class="ss-flex ss-col-center ss-m-b-10">
  26. <view class="tcp-text" @tap="
  27. sheep.$router.go('/pages/public/richtext', {
  28. title: '用户协议'
  29. })
  30. ">
  31. 《用户协议》
  32. </view>
  33. <view class="agreement-text">与</view>
  34. <view class="tcp-text" @tap="
  35. sheep.$router.go('/pages/public/richtext', {
  36. title: '隐私协议'
  37. })
  38. ">
  39. 《隐私协议》
  40. </view>
  41. </view>
  42. </view>
  43. <!-- <view class="copyright-text ss-m-b-10">{{ appInfo.copyright }}</view> -->
  44. <!-- <view class="copyright-text">{{ appInfo.copytime }}</view> -->
  45. </view>
  46. <su-fixed bottom placeholder>
  47. <view class="ss-p-x-20 ss-p-b-40">
  48. <button class="loginout-btn ss-reset-button ui-BG-Main ui-Shadow-Main" @tap="onLogout" v-if="isLogin">
  49. 退出登录
  50. </button>
  51. </view>
  52. </su-fixed>
  53. </s-layout>
  54. </template>
  55. <script setup>
  56. import sheep from '@/sheep';
  57. import {
  58. computed,
  59. reactive
  60. } from 'vue';
  61. import AuthUtil from '@/sheep/api/member/auth';
  62. const appInfo = computed(() => sheep.$store('app').info);
  63. const isLogin = computed(() => sheep.$store('user').isLogin);
  64. const storageSize = uni.getStorageInfoSync().currentSize + 'Kb';
  65. const state = reactive({
  66. showModal: false,
  67. });
  68. function onCheckUpdate() {
  69. sheep.$platform.checkUpdate();
  70. // 小程序初始化时已检查更新
  71. // H5实时更新无需检查
  72. // App 1.跳转应用市场更新 2.手动热更新 3.整包更新
  73. }
  74. // 注销账号
  75. function onLogoff() {
  76. uni.showModal({
  77. title: '提示',
  78. content: '确认注销账号?',
  79. success: async function(res) {
  80. if (!res.confirm) {
  81. return;
  82. }
  83. const {
  84. code
  85. } = await AuthUtil.logout();
  86. if (code !== 0) {
  87. return;
  88. }
  89. sheep.$store('user').logout();
  90. sheep.$router.go('/pages/index/user');
  91. },
  92. });
  93. }
  94. // 退出账号
  95. function onLogout() {
  96. uni.showModal({
  97. title: '提示',
  98. content: '确认退出账号?',
  99. success: async function(res) {
  100. if (!res.confirm) {
  101. return;
  102. }
  103. const {
  104. code
  105. } = await AuthUtil.logout();
  106. if (code !== 0) {
  107. return;
  108. }
  109. sheep.$store('user').logout();
  110. sheep.$router.go('/pages/index/user');
  111. },
  112. });
  113. }
  114. </script>
  115. <style lang="scss" scoped>
  116. .container-list {
  117. width: 100%;
  118. }
  119. .set-title {
  120. margin: 0 30rpx;
  121. }
  122. .header-box {
  123. padding: 100rpx 0;
  124. .logo-img {
  125. width: 160rpx;
  126. height: 160rpx;
  127. border-radius: 50%;
  128. }
  129. .name {
  130. font-size: 42rpx;
  131. font-weight: 400;
  132. color: $dark-3;
  133. }
  134. .version {
  135. font-size: 32rpx;
  136. font-weight: 500;
  137. line-height: 32rpx;
  138. color: $gray-b;
  139. }
  140. }
  141. .set-footer {
  142. margin: 100rpx 0 0 0;
  143. .copyright-text {
  144. font-size: 22rpx;
  145. font-weight: 500;
  146. color: $gray-c;
  147. line-height: 30rpx;
  148. }
  149. .agreement-box {
  150. font-size: 26rpx;
  151. font-weight: 500;
  152. .tcp-text {
  153. color: var(--ui-BG-Main);
  154. }
  155. .agreement-text {
  156. color: $dark-9;
  157. }
  158. }
  159. }
  160. .loginout-btn {
  161. width: 100%;
  162. height: 80rpx;
  163. border-radius: 40rpx;
  164. font-size: 30rpx;
  165. }
  166. .list-border {
  167. font-size: 28rpx;
  168. font-weight: 400;
  169. color: #333333;
  170. border-bottom: 2rpx solid #eeeeee;
  171. }
  172. :deep(.uni-list-item__content-title) {
  173. font-size: 28rpx;
  174. font-weight: 500;
  175. color: #333;
  176. }
  177. :deep(.uni-list-item__extra-text) {
  178. color: #bbbbbb;
  179. font-size: 28rpx;
  180. }
  181. </style>