|
|
@@ -11,7 +11,8 @@
|
|
|
<!--<label for="all"></label>-->
|
|
|
<!--</label>全选-->
|
|
|
<!--</th>-->
|
|
|
- <th width="615">产品信息</th>
|
|
|
+ <th width="307">数目/品牌</th>
|
|
|
+ <th width="307">型号/规格</th>
|
|
|
<th width="95">采购数量(PCS)</th>
|
|
|
<!--<th width="114">生产日期</th>-->
|
|
|
<th width="136"><i class="red-text">*</i>截止时间</th>
|
|
|
@@ -29,18 +30,9 @@
|
|
|
<td>
|
|
|
<div class="prod-items">
|
|
|
<div class="prod-item prod-item-large" :title="item.kind">
|
|
|
- <span class="pi-title">类目(产品名称):</span>
|
|
|
+ <span class="pi-title">类目:</span>
|
|
|
<div class="pi-content over-ell">{{item.kind || '-'}}</div>
|
|
|
</div>
|
|
|
- <div class="prod-item prod-item-large" :title="item.code">
|
|
|
- <span class="pi-title"><i class="red-text">*</i>型号:</span>
|
|
|
- <div class="pi-content over-ell" v-if="item.code && (!item.codeWord || item.codeWord.length == 0)" :title="item.code">{{item.code}}</div>
|
|
|
- <div class="pi-content red-text" v-if="!item.code">请完善信息</div>
|
|
|
- <div class="pi-content over-ell similar-select" v-if="item.codeWord && item.codeWord.length > 0" @click="setShowCodeWord(index, $event)">{{item.code}}</div>
|
|
|
- <ul v-show="item.showCodeWord">
|
|
|
- <li v-for="code in item.codeWord" @click="modifyItemByWord(index, code.code, 'code')" :title="code.code">{{code.code}}</li>
|
|
|
- </ul>
|
|
|
- </div>
|
|
|
<!--<div class="prod-item prod-item-small">
|
|
|
<span class="pi-title">单价预算:</span>
|
|
|
<div class="pi-content over-ell" v-if="item.unitPrice">{{(item.currency === 'RMB' ? '¥' : '$') + item.unitPrice}}</div>
|
|
|
@@ -55,6 +47,30 @@
|
|
|
<li v-for="brand in item.brandWord" @click="modifyItemByWord(index, brand.nameEn, 'brand')" :title="brand.nameEn">{{brand.nameEn}}</li>
|
|
|
</ul>
|
|
|
</div>
|
|
|
+ <!--<div class="prod-item prod-item-small" :title="item.encapsulation">
|
|
|
+ <span class="pi-title">封装:</span>
|
|
|
+ <div class="pi-content over-ell">
|
|
|
+ {{item.encapsulation || '-'}}
|
|
|
+ </div>
|
|
|
+ </div>-->
|
|
|
+ </div>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ <div class="prod-items">
|
|
|
+ <div class="prod-item prod-item-large" :title="item.code">
|
|
|
+ <span class="pi-title"><i class="red-text">*</i>型号:</span>
|
|
|
+ <div class="pi-content over-ell" v-if="item.code && (!item.codeWord || item.codeWord.length == 0)" :title="item.code">{{item.code}}</div>
|
|
|
+ <div class="pi-content red-text" v-if="!item.code">请完善信息</div>
|
|
|
+ <div class="pi-content over-ell similar-select" v-if="item.codeWord && item.codeWord.length > 0" @click="setShowCodeWord(index, $event)">{{item.code}}</div>
|
|
|
+ <ul v-show="item.showCodeWord">
|
|
|
+ <li v-for="code in item.codeWord" @click="modifyItemByWord(index, code.code, 'code')" :title="code.code">{{code.code}}</li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ <!--<div class="prod-item prod-item-small">
|
|
|
+ <span class="pi-title">单价预算:</span>
|
|
|
+ <div class="pi-content over-ell" v-if="item.unitPrice">{{(item.currency === 'RMB' ? '¥' : '$') + item.unitPrice}}</div>
|
|
|
+ <div class="pi-content over-ell" v-else="!item.unitPrice">-</div>
|
|
|
+ </div>-->
|
|
|
<div class="prod-item prod-item-large" :title="item.spec">
|
|
|
<span class="pi-title">规格:</span>
|
|
|
<div class="pi-content over-ell">{{item.spec || '-'}}</div>
|
|
|
@@ -1132,10 +1148,10 @@
|
|
|
}
|
|
|
&.prod-item-large {
|
|
|
.pi-content {
|
|
|
- width: 226px;
|
|
|
+ width: 265px;
|
|
|
}
|
|
|
.pi-title {
|
|
|
- width: 113px;
|
|
|
+ width: 60px;
|
|
|
}
|
|
|
}
|
|
|
&.prod-item-small {
|