1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <template>
- <view class="conter">
- <view class="box">
- <!-- <image src="../../static/img/about.png" class="image" mode=""></image> -->
- <view class="image">
- <image src="../../static/img/logo.png" mode=""></image>
- </view>
- <view class="title margin-t-20">V1.0.0</view>
- </view>
- <view class="main">
- <text>
- 艺绘,是集一站式、仓储式及市场批发销售的生活用品供应商,公司拥有专业的电子商务团队、物流配送团队及完善的售后服务,公司为了能更好的服务众多客户,在2021年经过多方位考量,扩大营业面积提升购物体验,本着便捷,优惠,高效的六字方针持续为新老客户提供更优质的产品和后续服务。
- </text>
- </view>
- <view class="tip">
- 艺绘(浙江)数字科技有限公司
- <br />
- 版权所有
- </view>
- <view class="text-info flex-center">
- <navigator url="/pages/public/agreement">
- 《用户协议》
- </navigator>
- <navigator url="/pages/public/privacy">
- 《隐私协议》
- </navigator>
- </view>
- </view>
- </template>
- <script></script>
- <style lang="scss">
- .conter,
- page {
- background: #f1f1f1;
- height: 100%;
- }
- .box {
- width: 100%;
- text-align: center;
- .image {
- width: 162rpx;
- height: 162rpx;
- margin: 0 auto;
- margin-top: 88rpx;
- image {
- width: 100%;
- height: 100%;
- }
- }
- .title {
- font-size: 30rpx;
- font-family: PingFangSC;
- font-weight: 500;
- color: #666666;
- }
- }
- .main {
- background-color: #ffffff;
- padding: 20rpx 50rpx;
- margin-top: 70rpx;
- font-size: 30rpx;
- font-family: PingFangSC;
- font-weight: 500;
- color: #000000;
- line-height: 54rpx;
- }
- .tip {
- margin-top: 100rpx;
- text-align: center;
- color: #666666;
- }
- </style>
|