12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <template>
- <view>
- <!-- #ifdef MP-ALIPAY -->
- <u-navbar :placeholder="true" bgColor="#fff" :autoBack="true" :border="true" title="关于我们" leftIconSize="0"></u-navbar>
- <!-- #endif -->
- <!-- #ifndef MP-ALIPAY -->
- <u-navbar :placeholder="true" bgColor="#fff" :autoBack="true" :border="true" title="关于我们"></u-navbar>
- <!-- #endif -->
-
- <view class="about">
- <view class="flex about-logo">
- <image src="../../static/public/logo.png" mode="scaleToFill"></image>
- <!-- #ifndef MP-ALIPAY -->
- <view class="edition">v 1.0.12</view>
- <!-- #endif -->
- <!-- #ifdef MP-ALIPAY -->
- <view class="edition">v 2.2.6</view>
- <!-- #endif -->
- </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>
- ::v-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>
|