setting.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  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. </script>
  95. <style lang="scss" scoped>
  96. .container-list {
  97. width: 100%;
  98. }
  99. .set-title {
  100. margin: 0 30rpx;
  101. }
  102. .header-box {
  103. padding: 100rpx 0;
  104. .logo-img {
  105. width: 160rpx;
  106. height: 160rpx;
  107. border-radius: 50%;
  108. }
  109. .name {
  110. font-size: 42rpx;
  111. font-weight: 400;
  112. color: $dark-3;
  113. }
  114. .version {
  115. font-size: 32rpx;
  116. font-weight: 500;
  117. line-height: 32rpx;
  118. color: $gray-b;
  119. }
  120. }
  121. .set-footer {
  122. margin: 100rpx 0 0 0;
  123. .copyright-text {
  124. font-size: 22rpx;
  125. font-weight: 500;
  126. color: $gray-c;
  127. line-height: 30rpx;
  128. }
  129. .agreement-box {
  130. font-size: 26rpx;
  131. font-weight: 500;
  132. .tcp-text {
  133. color: var(--ui-BG-Main);
  134. }
  135. .agreement-text {
  136. color: $dark-9;
  137. }
  138. }
  139. }
  140. .loginout-btn {
  141. width: 100%;
  142. height: 80rpx;
  143. border-radius: 40rpx;
  144. font-size: 30rpx;
  145. }
  146. .list-border {
  147. font-size: 28rpx;
  148. font-weight: 400;
  149. color: #333333;
  150. border-bottom: 2rpx solid #eeeeee;
  151. }
  152. :deep(.uni-list-item__content-title) {
  153. font-size: 28rpx;
  154. font-weight: 500;
  155. color: #333;
  156. }
  157. :deep(.uni-list-item__extra-text) {
  158. color: #bbbbbb;
  159. font-size: 28rpx;
  160. }
  161. </style>