setting.vue 4.6 KB

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