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"><image src="../../static/img/logo.png" mode=""></image></view>
  6. <view class="title">V1.3.9</view>
  7. </view>
  8. <view class="main">
  9. <text>
  10. 宁德市谦沐商务有限公司,2022年创立于福建宁德 ,公司以网站建设核心业务 专注于创意设计和传播应用 ,探索并实现商业价值最大化,为所有谋求长远发展的企业机构贡献全力。
  11. 宁德市谦沐商务有限公司注重专业探索,摒弃虚浮夸张,在更深远的认知中,将不断修正服务导向,完善制作品格,以探求精品塑造与理念升华,勇做推动行业发展的中坚力量
  12. </text>
  13. </view>
  14. <view class="tip">
  15. 宁德市谦沐商务有限公司
  16. <br />
  17. 版权所有
  18. </view>
  19. </view>
  20. </template>
  21. <script></script>
  22. <style lang="scss">
  23. .conter,
  24. 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>