aboutMine.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <template>
  2. <view class="container">
  3. <view class="title">公司简介</view>
  4. <view class="item-box">
  5. <u--text size="13" :text="text"></u--text>
  6. <u--text style="margin-top: 15rpx" size="13" :text="text1"></u--text>
  7. </view>
  8. <view class="title">联系我们</view>
  9. <view class="item-box">
  10. <view class="item">
  11. <view class="item-r">
  12. <p>电话:028-1314520</p>
  13. <p class="item-p">13739464447</p>
  14. </view>
  15. </view>
  16. <view class="item">
  17. <view class="item-r">
  18. <p>邮箱:xiangpei@chelvc.com</p>
  19. <p class="item-p">2027758656@qq.com</p>
  20. </view>
  21. </view>
  22. <view class="item">
  23. <view class="item-r">地址:四川省成都市双流区商都路520号201室</view>
  24. </view>
  25. </view>
  26. <view class="title">公司历程</view>
  27. <view class="item-box">
  28. <view class="progress-box">
  29. <image class="img" src="@/static/logo.png" mode="aspectFill"></image>
  30. <view class="progress-text">
  31. <p>2023.1月 团队开始组建</p>
  32. <p>2023.3月 项目开始开发</p>
  33. <p>2024.1月 项目完成开发</p>
  34. <p>2024.2月 正式进入运营阶段</p>
  35. <p>2025.12月 开始准备IPO相关资料</p>
  36. <p>2026.1月 成功在纳斯达克上市</p>
  37. </view>
  38. </view>
  39. </view>
  40. </view>
  41. </template>
  42. <script>
  43. export default {
  44. data() {
  45. return {
  46. text: '车旅程科技有限公司成立于2023年1月,是一家从事汽车后市场服务的移动互联网公司。公司搭建的养车一站式养车用车服务平台,从B端市场入局,通过整合上下游服务及资源,重新构建汽车后市场服务生态链,为保险、银行及大型集团提供综合汽车生活服务及增值服务解决方案。',
  47. text1: '平台通过整合优质服务商,并对服务商实施严格的质量监控,现已在全国范围为合作方提供全面的服务。用户通过车旅程养车平台即可一站式享受方便快捷的各类汽车及生活服务。公司秉承“做有温度的汽车服务”的管理理念, 不断探索和创新与机构客户的合作模式。',
  48. };
  49. },
  50. };
  51. </script>
  52. <style lang="scss" scoped>
  53. .container {
  54. padding: 40rpx;
  55. background-color: #f3f4f6;
  56. height: calc(100vh - 80rpx);
  57. .title {
  58. font-size: 42rpx;
  59. font-weight: bold;
  60. color: #000;
  61. margin: 20rpx 0;
  62. }
  63. .item-box {
  64. padding: 20rpx;
  65. border-radius: 20rpx;
  66. background-color: #fff;
  67. line-height: 40rpx;
  68. .item {
  69. display: flex;
  70. align-items: center;
  71. margin-top: 10rpx;
  72. font-size: 28rpx;
  73. color: #424c5b;
  74. .item-l {
  75. .img {
  76. width: 50rpx;
  77. height: auto;
  78. }
  79. }
  80. .item-r {
  81. margin-left: 20rpx;
  82. }
  83. }
  84. .progress-box {
  85. display: flex;
  86. justify-content: space-around;
  87. align-items: center;
  88. width: 100%;
  89. .img {
  90. width: 30%;
  91. height: 240rpx;
  92. margin-bottom: 20rpx;
  93. border-radius:20rpx;
  94. }
  95. .progress-text {
  96. font-size: 25rpx;
  97. color: #424c5b;
  98. }
  99. }
  100. }
  101. }
  102. .item-p {
  103. position: relative;
  104. left: 42px;
  105. }
  106. </style>