|
@@ -73,6 +73,7 @@
|
|
|
<!-- <span @click="toChat(item)" style="display:none">对接</span> -->
|
|
|
<el-col :span="24">
|
|
|
<el-col :span="18" class="coopermode">
|
|
|
+ 合作方式:
|
|
|
{{
|
|
|
item.coopermode == '0'
|
|
|
? '技术转让'
|
|
@@ -87,8 +88,12 @@
|
|
|
: '暂无'
|
|
|
}}</el-col
|
|
|
>
|
|
|
- <el-col :span="6" class="price" v-if="item.price">{{ item.price }}</el-col>
|
|
|
- <el-col :span="6" class="price" v-else>{{ '面议' }}</el-col>
|
|
|
+ <el-col :span="6" class="price" v-if="item.price"
|
|
|
+ >价格:{{ item.price }}/{{
|
|
|
+ item.priceunit === '0' ? '公斤' : item.priceunit === '1' ? '套' : item.priceunit === '2' ? '件' : '' || '暂无'
|
|
|
+ }}</el-col
|
|
|
+ >
|
|
|
+ <el-col :span="6" class="price" v-else>价格:{{ '面议' }}</el-col>
|
|
|
</el-col>
|
|
|
</p>
|
|
|
</el-col>
|