about.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <template>
  2. <view class="conter">
  3. <view class="box">
  4. <!-- <image src="../../static/img/about.png" class="image" mode=""></image> -->
  5. <view class="image">
  6. </view>
  7. <view class="title">
  8. V1.1.1.0
  9. </view>
  10. </view>
  11. <view class="main">
  12. <text>六牛科技,2014年创立于浙江台州 ,公司以网站建设、微信公众号、微信商城以及O2O商城为核心业务 专注于创意设计和传播应用 ,探索并实现商业价值最大化 ,为所有谋求长远发展的企业机构贡献全力。
  13. 浙江六牛科技有限公司注重专业探索,摒弃虚浮夸张,在更深远的认知中,将不断修正服务导向,完善制作品格,以探求精品塑造与理念升华,勇做推动行业发展的中坚力量</text>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. </script>
  19. <style lang="scss">
  20. .conter,page {
  21. background: #FFFFFF;
  22. height: 100%;
  23. }
  24. .box {
  25. width: 100%;
  26. text-align: center;
  27. .image {
  28. width: 162rpx;
  29. height: 162rpx;
  30. margin: 0 auto;
  31. margin-top: 88rpx;
  32. }
  33. .title{
  34. font-size: 30rpx;
  35. font-family: PingFangSC;
  36. font-weight: 500;
  37. color: #666666;
  38. }
  39. }
  40. .main {
  41. padding: 0 50rpx;
  42. margin-top: 70rpx;
  43. font-size: 30rpx;
  44. font-family: PingFangSC;
  45. font-weight: 500;
  46. color: #666666;
  47. line-height: 54rpx;
  48. }
  49. </style>