about.vue 1.5 KB

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