index.vue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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="image">MP</view>
  8. <view class="edition">v 1.0.0</view>
  9. </view>
  10. <view class="about-action">
  11. <u-cell-group :border="false">
  12. <u-cell title="隐私保护声明" :isLink="true" :url="'/pages/about/conceal'"></u-cell>
  13. <u-cell title="用户使用协议" :isLink="true" :url="'/pages/about/protect'">
  14. </u-cell>
  15. </u-cell-group>
  16. </view>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. data() {
  23. return {
  24. };
  25. }
  26. }
  27. </script>
  28. <style lang="scss" scoped>
  29. /deep/ .u-cell__body {
  30. padding: 20rpx 0;
  31. }
  32. </style>
  33. <style lang="scss" scoped>
  34. .about {
  35. height: 100vh;
  36. background-color: #FFFFFF;
  37. &-logo {
  38. flex-direction: column;
  39. .image {
  40. width: 164rpx;
  41. height: 164rpx;
  42. line-height: 164rpx;
  43. color: #FFFFFF;
  44. font-size: 40rpx;
  45. border-radius: 10rpx;
  46. background-color: $uni-bg-color;
  47. text-align: center;
  48. margin-top: 88rpx;
  49. }
  50. .edition{
  51. line-height: 40rpx;
  52. margin-top: 18rpx;
  53. }
  54. }
  55. &-action{
  56. padding: 20rpx 60rpx;
  57. }
  58. }
  59. </style>