Pārlūkot izejas kodu

我的模块 关于我们修改

liude 1 gadu atpakaļ
vecāks
revīzija
2e04baac04
1 mainītis faili ar 67 papildinājumiem un 58 dzēšanām
  1. 67 58
      src/pages/client/clientUser/mine/setting/aboutMine.vue

+ 67 - 58
src/pages/client/clientUser/mine/setting/aboutMine.vue

@@ -28,83 +28,92 @@
     <view class="title">公司历程</view>
     <view class="item-box">
       <view class="progress-box">
-        <img class="img" src="@/static/logo.png" alt="" />
-        <text class="progress-text">
+        <image class="img" src="@/static/logo.png" mode="aspectFill"></image>
+        <view class="progress-text">
           <p>2023.1月 团队开始组建</p>
           <p>2023.3月 项目开始开发</p>
           <p>2024.1月 项目完成开发</p>
           <p>2024.2月 正式进入运营阶段</p>
           <p>2025.12月 开始准备IPO相关资料</p>
           <p>2026.1月 成功在纳斯达克上市</p>
-        </text>
+        </view>
       </view>
     </view>
   </view>
 </template>
 
 <script>
-export default {
-  data() {
-    return {
-      text: '车旅程科技有限公司成立于2023年1月,是一家从事汽车后市场服务的移动互联网公司。公司搭建的养车一站式养车用车服务平台,从B端市场入局,通过整合上下游服务及资源,重新构建汽车后市场服务生态链,为保险、银行及大型集团提供综合汽车生活服务及增值服务解决方案。',
-      text1:
-        '平台通过整合优质服务商,并对服务商实施严格的质量监控,现已在全国范围为合作方提供全面的服务。用户通过车旅程养车平台即可一站式享受方便快捷的各类汽车及生活服务。公司秉承“做有温度的汽车服务”的管理理念, 不断探索和创新与机构客户的合作模式。',
-    };
-  },
-};
+  export default {
+    data() {
+      return {
+        text: '车旅程科技有限公司成立于2023年1月,是一家从事汽车后市场服务的移动互联网公司。公司搭建的养车一站式养车用车服务平台,从B端市场入局,通过整合上下游服务及资源,重新构建汽车后市场服务生态链,为保险、银行及大型集团提供综合汽车生活服务及增值服务解决方案。',
+        text1: '平台通过整合优质服务商,并对服务商实施严格的质量监控,现已在全国范围为合作方提供全面的服务。用户通过车旅程养车平台即可一站式享受方便快捷的各类汽车及生活服务。公司秉承“做有温度的汽车服务”的管理理念, 不断探索和创新与机构客户的合作模式。',
+      };
+    },
+  };
 </script>
 
 <style lang="scss" scoped>
-.container {
-  padding: 40rpx;
-  background-color: #f3f4f6;
-  .title {
-    font-size: 42rpx;
-    font-weight: bold;
-    color: #000;
-    margin: 20rpx 0;
-  }
-  .item-box {
-    padding: 20rpx;
-    border-radius: 20rpx;
-    background-color: #fff;
-    line-height: 40rpx;
-    .item {
-      display: flex;
-      align-items: center;
-      margin-top: 10rpx;
-      font-size: 28rpx;
-      color: #424c5b;
-      .item-l {
-        .img {
-          width: 50rpx;
-          height: auto;
-        }
-      }
-      .item-r {
-        margin-left: 20rpx;
-      }
+  .container {
+    padding: 40rpx;
+    background-color: #f3f4f6;
+    height: calc(100vh - 80rpx);
+
+    .title {
+      font-size: 42rpx;
+      font-weight: bold;
+      color: #000;
+      margin: 20rpx 0;
     }
 
-    .progress-box {
-      display: flex;
-      justify-content: center;
-      align-items: center;
-      .img {
-        width: 50%;
-        height: auto;
-        margin-bottom: 20rpx;
-      }
-      .progress-text {
-        margin-left: 15rpx;
-        font-size: 25rpx;
+    .item-box {
+      padding: 20rpx;
+      border-radius: 20rpx;
+      background-color: #fff;
+      line-height: 40rpx;
+
+      .item {
+        display: flex;
+        align-items: center;
+        margin-top: 10rpx;
+        font-size: 28rpx;
         color: #424c5b;
+
+        .item-l {
+          .img {
+            width: 50rpx;
+            height: auto;
+          }
+        }
+
+        .item-r {
+          margin-left: 20rpx;
+        }
+      }
+
+      .progress-box {
+        display: flex;
+        justify-content: space-around;
+        align-items: center;
+        width: 100%;
+
+        .img {
+          width: 30%;
+          height: 240rpx;
+          margin-bottom: 20rpx;
+          border-radius:20rpx;
+        }
+
+        .progress-text {
+          font-size: 25rpx;
+          color: #424c5b;
+        }
       }
     }
   }
-}
-.item-p {
-  position: relative;
-  left: 42px;
-}
+
+  .item-p {
+    position: relative;
+    left: 42px;
+  }
 </style>