123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <template>
- <view>
- <u-navbar :placeholder="true" bgColor="#fff" :autoBack="true" :border="true" title="关于我们"></u-navbar>
- <view class="about">
- <view class="flex about-logo">
- <image src="../../static/public/logo.png" mode=""></image>
- <view class="edition">v 2.0.4</view>
- </view>
- <view class="about-action">
- <u-cell-group :border="false">
- <u-cell title="隐私保护声明" :isLink="true" :url="'/packageOther/about/conceal'"></u-cell>
- <u-cell title="用户使用协议" :isLink="true" :url="'/packageOther/about/protect'">
- </u-cell>
- </u-cell-group>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- };
- }
- }
- </script>
- <style lang="scss" scoped>
- /deep/ .u-cell__body {
- padding: 20rpx 0;
- }
- </style>
- <style lang="scss" scoped>
- .about {
- min-height: calc(100vh - 44px - var(--status-bar-height));
- background-color: #FFFFFF;
- &-logo {
- flex-direction: column;
- image {
- width: 164rpx;
- height: 164rpx;
- line-height: 164rpx;
- border-radius: 10rpx;
- margin-top: 88rpx;
- }
-
- .edition{
- line-height: 40rpx;
- margin-top: 18rpx;
- }
- }
-
- &-action{
- padding: 20rpx 34rpx;
- }
- }
- </style>
|