12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <template>
- <view class="conter">
- <view class="box">
- <!-- <image src="../../static/img/about.png" class="image" mode=""></image> -->
- <view class="image">
-
- </view>
- <view class="title">
- V1.1.1.0
- </view>
- </view>
- <view class="main">
- <text>六牛科技,2014年创立于浙江台州 ,公司以网站建设、微信公众号、微信商城以及O2O商城为核心业务 专注于创意设计和传播应用 ,探索并实现商业价值最大化 ,为所有谋求长远发展的企业机构贡献全力。
- 浙江六牛科技有限公司注重专业探索,摒弃虚浮夸张,在更深远的认知中,将不断修正服务导向,完善制作品格,以探求精品塑造与理念升华,勇做推动行业发展的中坚力量</text>
- </view>
- </view>
- </template>
- <script>
- </script>
- <style lang="scss">
- .conter,page {
- background: #FFFFFF;
- height: 100%;
- }
- .box {
- width: 100%;
- text-align: center;
- .image {
- width: 162rpx;
- height: 162rpx;
- margin: 0 auto;
- margin-top: 88rpx;
- }
- .title{
- font-size: 30rpx;
- font-family: PingFangSC;
- font-weight: 500;
- color: #666666;
- }
- }
- .main {
- padding: 0 50rpx;
- margin-top: 70rpx;
- font-size: 30rpx;
- font-family: PingFangSC;
- font-weight: 500;
- color: #666666;
- line-height: 54rpx;
- }
- </style>
|