guhongwei 4 år sedan
förälder
incheckning
14392eb28e

+ 2 - 2
public/static/liveIndex.html

@@ -72,7 +72,7 @@
   <div class="mubu_top"></div>
   <div class='mubu_title'>
     <span>中科在线(长春)</span>
-    <span>交易平台</span>
+    <span>直播大厅</span>
   </div>
 
 </body>
@@ -89,7 +89,7 @@
     return null;
   }
 function getTitle() {
-  document.getElementById('title').innerText= GetQueryString('title')+'直播大厅';
+  document.getElementById('title').innerText= GetQueryString('title');
 }
     
 </script>

+ 1 - 1
src/layout/adminCenter/menuInfo.vue

@@ -35,7 +35,7 @@
             <el-menu-item index="4">
               <template slot="title">
                 <i class="el-icon-notebook-1"></i>
-                <span>交易确定</span>
+                <span>交易备案</span>
               </template>
             </el-menu-item>
             <el-menu-item index="5">

+ 1 - 1
src/views/adminCenter/transaction/index.vue

@@ -2,7 +2,7 @@
   <div id="index">
     <el-row>
       <el-col :span="24">
-        <el-col :span="24" class="leftTop"> <span>|</span> <span>交易确定</span> </el-col>
+        <el-col :span="24" class="leftTop"> <span>|</span> <span>交易备案</span> </el-col>
         <el-col :span="24" class="info">
           <span v-if="view">
             <list :recruitInfo="recruitInfo" :total="total" @handleCurrentChange="handleCurrentChange" @shareBtn="shareBtn"></list>

+ 2 - 1
src/views/hallList/parts/list.vue

@@ -74,7 +74,8 @@ export default {
           for (const val of cre) {
             shi = val.name;
           }
-          let newTitle = sheng + shi + res.data.title;
+          // let newTitle = sheng + shi + res.data.title;
+          let newTitle = res.data.title;
           window.location.href = encodeURI(`${this.liveIndex}?id=${id}&title=${newTitle}`);
         } else {
           this.$router.push({ path: '/newlogin' });

+ 29 - 6
src/views/market/marketlists.vue

@@ -33,6 +33,21 @@
             <el-col class="infoRightList" :span="24" v-for="(item, index) in jishuList" :key="index">
               <p>
                 <span class="textOver" @click="clickjishu(item.id)">{{ item.name }}</span>
+                <span class="textOver">
+                  所属领域:{{
+                    `${item.field}` === `0`
+                      ? '先进制造'
+                      : `${item.field}` === `1`
+                      ? '新材料'
+                      : `${item.field}` === `2`
+                      ? '光电子'
+                      : `${item.field}` === `3`
+                      ? '信息技术'
+                      : `${item.field}` === `4`
+                      ? '文化和科技融合'
+                      : '暂无'
+                  }}
+                </span>
                 <span class="textOver">{{ item.meta && item.meta.createdAt ? new Date(item.meta.createdAt).toLocaleDateString() : '' || '' }}</span>
               </p>
             </el-col>
@@ -494,12 +509,18 @@ export default {
 }
 .infoRightList p span:first-child {
   display: inline-block;
-  width: 70%;
+  width: 60%;
   margin: 0 20px 0 10px;
 }
+.infoRightList p span:nth-child(2) {
+  display: inline-block;
+  width: 20%;
+  text-align: left;
+  font-size: 16px;
+}
 .infoRightList p span:last-child {
   display: inline-block;
-  width: 21%;
+  width: 16%;
   text-align: center;
   font-size: 16px;
 }
@@ -527,18 +548,20 @@ export default {
 // 技术
 .chanpinList {
   padding: 0 30px 0 10px;
-  margin: 0px 0 11px 0;
+  margin: 0px 0 20px 0;
   .name {
     font-size: 18px;
-    margin: 0 0 10px 0;
+    margin: 0 0 5px 0;
+    color: #22529a;
+    font-weight: bold;
   }
   .date {
     text-align: right;
     font-size: 18px;
-    margin: 0 0 10px 0;
+    margin: 0 0 5px 0;
   }
   .introduction {
-    font-size: 16px;
+    font-size: 14px;
     overflow: hidden;
     text-overflow: ellipsis;
     -webkit-line-clamp: 2;