1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <template>
- <view class="conter">
- <view class="box">
- <!-- <image src="../../static/img/about.png" class="image" mode=""></image> -->
- <view class="image">
- <image src="../../static/img/log.png" mode=""></image>
- </view>
- <view class="title">
- V1.1.1.0
- </view>
- </view>
- <view class="main">
- <text>六牛科技,2014年创立于浙江台州 ,公司以网站建设、微信公众号、微信商城以及O2O商城为核心业务 专注于创意设计和传播应用 ,探索并实现商业价值最大化 ,为所有谋求长远发展的企业机构贡献全力。
- 浙江六牛科技有限公司注重专业探索,摒弃虚浮夸张,在更深远的认知中,将不断修正服务导向,完善制作品格,以探求精品塑造与理念升华,勇做推动行业发展的中坚力量</text>
- </view>
- <view class="tip">
- 浙江六牛科技有限公司<br>版权所有
- </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>
|