aboutUs.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <template>
  2. <view class="container">
  3. <view class="logoContent">
  4. <view class="logoBorder">
  5. <image class="logoImg" src="/static/logo.png"></image>
  6. </view>
  7. <view>{{$config('appName')}}</view>
  8. </view>
  9. <view class="textContent">
  10. <view>{{$config('company')}}专注于汽车服务行业,是一家以先进云端互联网技术驱动的公司,致力于通过saas云门店管理系统为汽车综修厂、社区店以及大量的中小门店赋能。以解决汽车维修、美容、保养等业务中发生的一系列问题。</view>
  11. <view>智能巡店设计了一套完善的降本增效方案,在引流获客、员工提成、营销活动、财务报表、数据分析等方面获得客户一致认可。</view>
  12. <view>将通过持续的科技成果转化为推动汽后市场发展提供动力,帮助更多服务终端、供应链企业、主机厂商、银行以及保险等汽车后市场参与方转型升级。</view>
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. </script>
  18. <style lang="less">
  19. page{
  20. background: #FFFFFF;
  21. }
  22. .container{
  23. font-size: 32rpx;
  24. padding:0 50rpx;
  25. text-align: center;
  26. color:#666;
  27. .logoContent{
  28. .logoBorder{
  29. width:200rpx;
  30. height:200rpx;
  31. margin:50rpx 0 15rpx 0;
  32. display: inline-block;
  33. position: relative;
  34. .logoImg{
  35. width:200rpx;
  36. height:200rpx;
  37. position: absolute;
  38. top:0;
  39. left:0;
  40. right:0;
  41. bottom:0;
  42. margin:auto;
  43. }
  44. }
  45. }
  46. .textContent{
  47. text-align: left;
  48. margin-top: 30rpx;
  49. font-size: 32rpx;
  50. .tetxTitle{
  51. margin-bottom: 10rpx;
  52. font-size: 32rpx;
  53. }
  54. > view{
  55. padding: 16upx 0;
  56. line-height: 50upx;
  57. text-indent: 60rpx;
  58. }
  59. }
  60. }
  61. </style>