set.vue 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <template>
  2. <s-layout class="set-wrap" title="编辑资料">
  3. <view class="header-box ss-flex-col ss-row-center ss-col-center">
  4. <image
  5. class="logo-img ss-m-b-40"
  6. src="/static/img/shop/tabbar/find2.png"
  7. mode="aspectFit"
  8. ></image>
  9. <view class="name ss-m-b-24">SHEEP商城</view>
  10. <view class="version">V1.3.0</view>
  11. </view>
  12. <uni-list :border="true">
  13. <uni-list-item title="清除缓存" rightText="2M" showArrow></uni-list-item>
  14. <uni-list-item title="当前版本" rightText="V1.3.1" showArrow></uni-list-item>
  15. <uni-list-item title="意见反馈" showArrow></uni-list-item>
  16. <uni-list-item title="关于我们" showArrow></uni-list-item>
  17. </uni-list>
  18. <view class="set-footer ss-flex-col ss-row-center ss-col-center">
  19. <view class="agreement-box ss-flex ss-col-center ss-m-b-30">
  20. <view class="ss-flex ss-col-center ss-m-b-10">
  21. <view class="tcp-text">《用户协议》</view>
  22. <view class="agreement-text">与</view>
  23. <view class="tcp-text">《隐私协议》</view>
  24. </view>
  25. </view>
  26. <view class="copyright-text ss-m-b-10">******版权所有</view>
  27. <view class="copyright-text">Copyright© 2018-2022</view>
  28. </view>
  29. </s-layout>
  30. </template>
  31. <script setup></script>
  32. <style lang="scss" scoped>
  33. .set-title {
  34. margin: 0 30rpx;
  35. }
  36. .header-box {
  37. padding: 100rpx 0;
  38. .logo-img {
  39. width: 160rpx;
  40. height: 160rpx;
  41. }
  42. .name {
  43. font-size: 42rpx;
  44. line-height: 42rpx;
  45. font-weight: bold;
  46. color: $dark-3;
  47. }
  48. .version {
  49. font-size: 32rpx;
  50. font-weight: 500;
  51. line-height: 32rpx;
  52. color: $gray-b;
  53. }
  54. }
  55. .set-footer {
  56. margin: 200rpx 0;
  57. .copyright-text {
  58. font-size: 22rpx;
  59. font-weight: 500;
  60. color: $gray-c;
  61. line-height: 30rpx;
  62. }
  63. .agreement-box {
  64. margin: 80rpx auto 0;
  65. .tcp-text {
  66. color: var(--ui-BG-Main);
  67. }
  68. .agreement-text {
  69. font-size: 26rpx;
  70. font-weight: 500;
  71. color: $dark-9;
  72. }
  73. }
  74. }
  75. </style>