|
@@ -16,18 +16,24 @@
|
|
|
{{ directInfo.name }}
|
|
|
</p>
|
|
|
<p>
|
|
|
- <span
|
|
|
- >产品类型:{{
|
|
|
- directInfo.totaltype === '0' ? '技术' : directInfo.totaltype === '1' ? '产品' : directInfo.totaltype === '2' ? '服务' : '暂无'
|
|
|
- }}</span
|
|
|
- >
|
|
|
- <span>收费标准:{{ directInfo.price || '暂无' }}/{{ directInfo.priceunit || '暂无' }}</span>
|
|
|
- </p>
|
|
|
- <p>
|
|
|
<span>
|
|
|
- 交易方式:{{ directInfo.business === '0' ? '公用' : directInfo.business === '1' ? '转让' : directInfo.business === '2' ? '竞价' : '暂无' }}
|
|
|
+ 产品类型:{{ directInfo.totaltype === '0' ? '技术' : directInfo.totaltype === '1' ? '产品' : directInfo.totaltype === '2' ? '服务' : '暂无' }}
|
|
|
+ </span>
|
|
|
+ <span>
|
|
|
+ 所属领域:{{
|
|
|
+ `${directInfo.field}` === `0`
|
|
|
+ ? '先进制造'
|
|
|
+ : `${directInfo.field}` === `1`
|
|
|
+ ? '新材料'
|
|
|
+ : `${directInfo.field}` === `2`
|
|
|
+ ? '光电子'
|
|
|
+ : `${directInfo.field}` === `3`
|
|
|
+ ? '信息技术'
|
|
|
+ : `${directInfo.field}` === `4`
|
|
|
+ ? '文化和科技融合'
|
|
|
+ : '暂无'
|
|
|
+ }}
|
|
|
</span>
|
|
|
- <span>研发阶段:{{ directInfo.phase == 1 ? '阶段成果' : directInfo.phase == 2 ? '最终成果' : '暂无' }}</span>
|
|
|
</p>
|
|
|
<p>
|
|
|
<span>联系人:{{ directInfo.contact_user || '暂无' }}</span>
|
|
@@ -35,10 +41,6 @@
|
|
|
</p>
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="oneDown">
|
|
|
- <div>
|
|
|
- <p>应用领域:</p>
|
|
|
- <p>{{ directInfo.field || '暂无' }}</p>
|
|
|
- </div>
|
|
|
<div>
|
|
|
<!-- <p><span>产品参数:</span><span @click="argsBtn(directInfo.product_args)">查看详情</span></p> -->
|
|
|
</div>
|
|
@@ -122,10 +124,10 @@ export default {
|
|
|
font-weight: bold;
|
|
|
padding: 20px 0;
|
|
|
}
|
|
|
- p:nth-child(2) span:last-child {
|
|
|
- color: red;
|
|
|
- font-weight: bold;
|
|
|
- }
|
|
|
+ // p:nth-child(2) span:last-child {
|
|
|
+ // color: red;
|
|
|
+ // font-weight: bold;
|
|
|
+ // }
|
|
|
}
|
|
|
.oneDown {
|
|
|
border-top: 1px dashed #ccc;
|