about.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <template>
  2. <view class="aboutUs-content">
  3. <view class="aboutUs-content-info">
  4. <u-image src="/static/log-s.png" width="144" height="144" class="logo"></u-image>
  5. <view class="content-title">关于修配易码通</view>
  6. <view class="content-version">Version 1.0.0</view>
  7. </view>
  8. <view>陕西山海高科信息技术有限公司专注于汽车服务行业,是一家以先进云端互联网技术驱动的公司,致力于通过saas云门店管理系统为汽车综修厂、社区店以及大量的中小门店赋能。以解决汽车维修、美容、保养等业务中发生的一系列问题。</view>
  9. <view>修配易码通设计了一套完善的降本增效方案,在引流获客、员工提成、营销活动、财务报表、数据分析等方面获得客户一致认可。</view>
  10. <view>陕西山海高科信息技术有限公司将通过持续的科技成果转化为推动汽后市场发展提供动力,帮助更多服务终端、供应链企业、主机厂商、银行以及保险等汽车后市场参与方转型升级。</view>
  11. </view>
  12. </template>
  13. <script>
  14. </script>
  15. <style lang="less">
  16. .aboutUs-content{
  17. width: 100%;
  18. height: 100vh;
  19. padding: 0 60upx;
  20. > view{
  21. margin-bottom: 30upx;
  22. line-height: 50upx;
  23. }
  24. .aboutUs-content-info{
  25. text-align: center;
  26. .logo{
  27. display: inline-block;
  28. margin: 100upx auto 60upx;
  29. // text-align: center;
  30. }
  31. .content-title{
  32. font-size: 38upx;
  33. // text-align: center;
  34. }
  35. .content-version{
  36. // text-align: center;
  37. font-size: 32upx;
  38. color:#666E75;
  39. margin: 10upx 0 80upx;
  40. }
  41. }
  42. .content-text{
  43. color:#666E75;
  44. // font-size: 28upx;
  45. margin-bottom: 50upx;
  46. text-indent:2em
  47. }
  48. // .last-text{
  49. // margin-bottom: 0;
  50. // }
  51. }
  52. </style>