index.vue 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <template>
  2. <view>
  3. <u-navbar :placeholder="true" bgColor="#fff" :autoBack="true" :border="true" title="关于我们"></u-navbar>
  4. <view class="about">
  5. <view class="flex about-logo">
  6. <image src="../../static/logo.png" mode=""></image>
  7. <view class="edition">v 1.1.6</view>
  8. </view>
  9. <view class="about-action">
  10. <u-cell-group :border="false">
  11. <u-cell title="隐私保护声明" :isLink="true" :url="'/packageOther/about/conceal'"></u-cell>
  12. <u-cell title="用户使用协议" :isLink="true" :url="'/packageOther/about/protect'">
  13. </u-cell>
  14. </u-cell-group>
  15. </view>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. export default {
  21. data() {
  22. return {
  23. };
  24. }
  25. }
  26. </script>
  27. <style lang="scss" scoped>
  28. /deep/ .u-cell__body {
  29. padding: 20rpx 0;
  30. }
  31. </style>
  32. <style lang="scss" scoped>
  33. .about {
  34. min-height: calc(100vh - 44px - var(--status-bar-height));
  35. background-color: #FFFFFF;
  36. &-logo {
  37. flex-direction: column;
  38. image {
  39. width: 164rpx;
  40. height: 164rpx;
  41. line-height: 164rpx;
  42. border-radius: 10rpx;
  43. margin-top: 88rpx;
  44. }
  45. .edition{
  46. line-height: 40rpx;
  47. margin-top: 18rpx;
  48. }
  49. }
  50. &-action{
  51. padding: 20rpx 34rpx;
  52. }
  53. }
  54. </style>