guhongwei il y a 4 ans
Parent
commit
34d6b2960d
2 fichiers modifiés avec 21 ajouts et 7 suppressions
  1. 1 1
      src/views/hall/direct.vue
  2. 20 6
      src/views/market/detail/techDetail.vue

+ 1 - 1
src/views/hall/direct.vue

@@ -536,7 +536,7 @@ export default {
       this.$set(this.statNum, `tyjb`, arr.data.length);
       // 洽谈合作
       let qthe = await this.tquery({ status: 0, dockid: this.id });
-      this.$set(this.statNum, `qthz`, arr.data.length);
+      this.$set(this.statNum, `qthz`, qthe.length);
       // 达成意向
       let dcyx = await this.tquery({ status: 1, dockid: this.id });
       for (const val of dcyx.data) {

+ 20 - 6
src/views/market/detail/techDetail.vue

@@ -12,6 +12,9 @@
           </el-col>
           <el-col :span="7" v-else class="achieveImage">
             <el-image :src="achievezb" style="height:305px;"></el-image>
+            <el-col :span="24" class="company textOver">
+              {{ detailInfo.company }}
+            </el-col>
             <el-col :span="24" class="aName">
               {{ detailInfo.name }}
             </el-col>
@@ -67,7 +70,7 @@
               <el-col :span="8" class="otherInfo textOver">
                 投资预算
               </el-col>
-              <el-col :span="16" class="otherInfo textOver"> {{ detailInfo.budget || '暂无' }}万元 </el-col>
+              <el-col :span="16" class="otherInfo textOver"> {{ detailInfo.budget || '暂无' }} </el-col>
             </el-col>
             <el-col :span="12">
               <el-col :span="8" class="otherInfo textOver">
@@ -75,14 +78,14 @@
               </el-col>
               <el-col :span="16" class="otherInfo textOver"> {{ detailInfo.degreeurgency || '暂无' }} </el-col>
             </el-col>
-            <el-col :span="12">
+            <!-- <el-col :span="12">
               <el-col :span="8" class="otherInfo textOver">
                 合作方式
               </el-col>
               <el-col :span="16" class="otherInfo textOver">
                 {{ detailInfo.cooperation ? detailInfo.cooperation : '暂无' }}
               </el-col>
-            </el-col>
+            </el-col> -->
             <!-- <el-col :span="24">
               <el-col :span="4" class="otherInfo textOver">
                 机构代码
@@ -97,11 +100,11 @@
                 {{ detailInfo.contacts || '暂无' }}
               </el-col>
             </el-col>
-            <el-col :span="12">
-              <el-col :span="8" class="otherInfo textOver">
+            <el-col :span="24">
+              <el-col :span="4" class="otherInfo textOver">
                 电子邮箱
               </el-col>
-              <el-col :span="16" class="otherInfo textOver">
+              <el-col :span="20" class="otherInfo textOver">
                 {{ detailInfo.email || '暂无' }}
               </el-col>
             </el-col>
@@ -323,6 +326,17 @@ export default {
         white-space: nowrap;
       }
     }
+    .company {
+      position: absolute;
+      top: 12px;
+      left: 30px;
+      width: 86%;
+      color: #ec6c2d;
+      -webkit-text-stroke: 1px #f18d2c;
+      font-style: oblique;
+      -webkit-text-fill-color: #ec6c2d;
+      letter-spacing: 3px;
+    }
   }
 }
 </style>