|
@@ -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;
|