about.vue 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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/logo.png" mode=""></image>
  7. </view>
  8. <view class="title margin-t-20">V1.0.0</view>
  9. </view>
  10. <view class="main">
  11. <text>
  12. 艺绘,是集一站式、仓储式及市场批发销售的生活用品供应商,公司拥有专业的电子商务团队、物流配送团队及完善的售后服务,公司为了能更好的服务众多客户,在2021年经过多方位考量,扩大营业面积提升购物体验,本着便捷,优惠,高效的六字方针持续为新老客户提供更优质的产品和后续服务。
  13. </text>
  14. </view>
  15. <view class="tip">
  16. 艺绘(浙江)数字科技有限公司
  17. <br />
  18. 版权所有
  19. </view>
  20. <view class="text-info flex-center">
  21. <navigator url="/pages/public/agreement">
  22. 《用户协议》
  23. </navigator>
  24. <navigator url="/pages/public/privacy">
  25. 《隐私协议》
  26. </navigator>
  27. </view>
  28. </view>
  29. </template>
  30. <script></script>
  31. <style lang="scss">
  32. .conter,
  33. page {
  34. background: #f1f1f1;
  35. height: 100%;
  36. }
  37. .box {
  38. width: 100%;
  39. text-align: center;
  40. .image {
  41. width: 162rpx;
  42. height: 162rpx;
  43. margin: 0 auto;
  44. margin-top: 88rpx;
  45. image {
  46. width: 100%;
  47. height: 100%;
  48. }
  49. }
  50. .title {
  51. font-size: 30rpx;
  52. font-family: PingFangSC;
  53. font-weight: 500;
  54. color: #666666;
  55. }
  56. }
  57. .main {
  58. background-color: #ffffff;
  59. padding: 20rpx 50rpx;
  60. margin-top: 70rpx;
  61. font-size: 30rpx;
  62. font-family: PingFangSC;
  63. font-weight: 500;
  64. color: #000000;
  65. line-height: 54rpx;
  66. }
  67. .tip {
  68. margin-top: 100rpx;
  69. text-align: center;
  70. color: #666666;
  71. }
  72. </style>