set.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <!-- 设置 -->
  2. <template>
  3. <view class="set-wrap">
  4. <!-- logo -->
  5. <view class="logo-box u-flex-col u-row-center u-col-center" v-if="initShop.name">
  6. <image class="logo-img" :src="initShop.logo" mode="aspectFit"></image>
  7. <view class="app-name u-m-t-50">{{ initShop.name }}</view>
  8. </view>
  9. <!-- cell -->
  10. <view class="set-box">
  11. <view class="cell-item u-flex u-col-center u-row-between u-p-x-30 u-p-y-20">
  12. <view class="cell-title">占用缓存</view>
  13. <view class="cell-right u-flex u-col-center">
  14. <view class="cell-content">{{ storageSize }}</view>
  15. <text class="u-iconfont uicon-arrow-right u-m-l-10" style="color: #999"></text>
  16. </view>
  17. </view>
  18. <view class="cell-item u-flex u-col-center u-row-between u-p-x-30 u-p-y-20">
  19. <view class="cell-title">当前版本</view>
  20. <view class="cell-right u-flex u-col-center">
  21. <view class="cell-content">{{ initShop.version }}</view>
  22. <text class="u-iconfont uicon-arrow-right u-m-l-10" style="color: #999"></text>
  23. </view>
  24. </view>
  25. <view class="cell-item u-flex u-col-center u-row-between u-p-x-30 u-p-y-20" @tap="$Router.push('/pages/public/feedback')">
  26. <view class="cell-title">意见反馈</view>
  27. <view class="cell-right u-flex u-col-center"><text class="u-iconfont uicon-arrow-right u-m-l-10" style="color: #999"></text></view>
  28. </view>
  29. <view class="cell-item u-flex u-col-center u-row-between u-p-x-30 u-p-y-20" @tap="$Router.push(`/pages/public/richtext?id=${initShop.about_us}`)">
  30. <view class="cell-title">关于我们</view>
  31. <view class="cell-right u-flex u-col-center"><text class="u-iconfont uicon-arrow-right u-m-l-10" style="color: #999"></text></view>
  32. </view>
  33. <view class="cell-item u-flex u-col-center u-row-between u-p-x-30 u-p-y-20" @tap="$Router.push(`/pages/public/richtext?id=${initShop.privacy_protocol}`)">
  34. <view class="cell-title">隐私协议</view>
  35. <view class="cell-right u-flex u-col-center"><text class="u-iconfont uicon-arrow-right u-m-l-10" style="color: #999"></text></view>
  36. </view>
  37. </view>
  38. <!-- copyright -->
  39. <view class="copyright-box u-flex-col u-row-center u-col-center u-p-t-80 u-p-b-50" v-if="initShop.copyright">
  40. <view class="copyright-text">{{ initShop.copyright[0] }}</view>
  41. <view class="copyright-text">{{ initShop.copyright[1] }}</view>
  42. </view>
  43. <!-- 登录提示 -->
  44. <shopro-auth-modal></shopro-auth-modal>
  45. </view>
  46. </template>
  47. <script>
  48. import { mapState, mapActions, mapGetters } from 'vuex';
  49. export default {
  50. components: {},
  51. data() {
  52. return {
  53. storageSize: uni.getStorageInfoSync().currentSize + 'Kb'
  54. };
  55. },
  56. computed: {
  57. ...mapGetters(['initShop'])
  58. },
  59. methods: {}
  60. };
  61. </script>
  62. <style lang="scss">
  63. .set-box {
  64. background-color: #fff;
  65. .cell-item {
  66. border-bottom: 1px solid #f5f5f5;
  67. .cell-title {
  68. font-size: 28rpx;
  69. color: #333;
  70. }
  71. .cell-content {
  72. color: #999;
  73. }
  74. }
  75. }
  76. .logo-box {
  77. padding: 110rpx 0;
  78. .app-name {
  79. font-size: 36rpx;
  80. font-weight: 600;
  81. color: #333333;
  82. }
  83. }
  84. .copyright-box {
  85. .copyright-text {
  86. font-size: 22rpx;
  87. font-weight: 500;
  88. color: #c4c4c4;
  89. }
  90. }
  91. </style>