index.vue 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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.0.0</view>
  8. </view>
  9. <view class="about-action">
  10. <u-cell-group :border="false">
  11. <u-cell title="隐私保护声明" :isLink="true"></u-cell>
  12. <u-cell title="用户使用协议" :isLink="true">
  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. height: 100vh;
  35. background-color: #FFFFFF;
  36. &-logo {
  37. flex-direction: column;
  38. image {
  39. width: 164rpx;
  40. height: 164rpx;
  41. border-radius: 10rpx;
  42. margin-top: 88rpx;
  43. }
  44. .edition{
  45. line-height: 40rpx;
  46. margin-top: 18rpx;
  47. }
  48. }
  49. &-action{
  50. padding: 20rpx 60rpx;
  51. }
  52. }
  53. </style>