1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <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/logo.png" mode=""></image> -->
- <view class="image">MP</view>
- <view class="edition">v 1.0.0</view>
- </view>
- <view class="about-action">
- <u-cell-group :border="false">
- <u-cell title="隐私保护声明" :isLink="true" :url="'/pages/about/conceal'"></u-cell>
- <u-cell title="用户使用协议" :isLink="true" :url="'/pages/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 {
- height: 100vh;
- background-color: #FFFFFF;
- &-logo {
- flex-direction: column;
- .image {
- width: 164rpx;
- height: 164rpx;
- line-height: 164rpx;
- color: #FFFFFF;
- font-size: 40rpx;
- border-radius: 10rpx;
- background-color: $uni-bg-color;
- text-align: center;
- margin-top: 88rpx;
- }
-
- .edition{
- line-height: 40rpx;
- margin-top: 18rpx;
- }
- }
-
- &-action{
- padding: 20rpx 60rpx;
- }
- }
- </style>
|