浏览代码

完成查企业主页 企业详情 找服务页面 参加电话会议

Jing-Jiu 4 年之前
父节点
当前提交
4e57fd6916
共有 2 个文件被更改,包括 14 次插入8 次删除
  1. 1 1
      pages.json
  2. 13 7
      pages/enterprise/index.vue

+ 1 - 1
pages.json

@@ -135,7 +135,7 @@
 		{
 			"path": "pages/enterprise/enterprise_detail",
 			"style": {
-				"navigationBarTitleText": "企业",
+				"navigationBarTitleText": "企业详情",
 				"navigationBarBackgroundColor": "#02A7F0",
 				"navigationBarTextStyle":"white"
 			}

+ 13 - 7
pages/enterprise/index.vue

@@ -5,7 +5,12 @@
       <input type="text" placeholder="请输入关键词搜索" />
     </view>
     <div class="companys">
-      <div class="company" v-for="(company, index) in companyList" :key="index" @tap="toDetail(index)">
+      <div
+        class="company"
+        v-for="(company, index) in companyList"
+        :key="index"
+        @tap="toDetail(index)"
+      >
         <div class="title">
           <div class="logo">
             <img :src="company.logo" alt="" />
@@ -110,8 +115,13 @@ export default {
           }
         }
       }
+      .line {
+        width: 3rpx;
+        height: 70rpx;
+        background: rgb(175, 186, 197);
+      }
       .info {
-        font-size: 25rpx;
+        font-size: 19rpx;
         font-weight: 100;
         display: flex;
         text-align: center;
@@ -119,11 +129,6 @@ export default {
         align-items: center;
         padding: 0 2%;
         margin-top: 2%;
-        .line {
-          width: 2rpx;
-          height: 70rpx;
-          background: rgb(175, 186, 197);
-        }
         .div {
           margin-top: 2%;
           .name {
@@ -131,6 +136,7 @@ export default {
           }
           .info_t {
             margin-bottom: 10rpx;
+            font-size: 25rpx;
           }
         }
       }