测试问题修改4
This commit is contained in:
parent
5fa12dd165
commit
14b11e5538
|
|
@ -45,8 +45,8 @@
|
|||
</el-table-column>
|
||||
<el-table-column label="报价开始时间" align="center" prop="startTime" :show-overflow-tooltip="true" />
|
||||
<el-table-column label="报价结束时间" align="center" prop="endTime" :show-overflow-tooltip="true" />
|
||||
<el-table-column label="决标时间" align="center" prop="bidTime" :show-overflow-tooltip="true"/>
|
||||
<el-table-column label="决标总价(元)" align="center" prop="quoteAmount" :show-overflow-tooltip="true" width="120">
|
||||
<!-- <el-table-column label="决标时间" align="center" prop="bidTime" :show-overflow-tooltip="true"/> -->
|
||||
<el-table-column label="报价总额(元)" align="center" prop="quoteAmount" :show-overflow-tooltip="true" width="120">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ (scope.row.quoteAmount/100).toFixed(2) }}</span>
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -493,12 +493,17 @@ export default {
|
|||
let flag = false;
|
||||
if(row.alternativeSuppliers&&row.alternativeSuppliers.length>0){
|
||||
let index = row.alternativeSuppliers.findIndex(v=>v.supplierId==item.supplierId)
|
||||
if(index==-1){
|
||||
flag=false
|
||||
if(index==-1){
|
||||
if(item.status==1){
|
||||
flag=false
|
||||
}else{
|
||||
flag=true
|
||||
}
|
||||
}else{
|
||||
flag=true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return flag;
|
||||
},
|
||||
//首选选过的供应商,不能在备选里选
|
||||
|
|
@ -507,9 +512,13 @@ export default {
|
|||
let flag = false;
|
||||
if(row.supplierId&&row.supplierId!=""){
|
||||
if(item.supplierId==row.supplierId){
|
||||
flag=true
|
||||
if(item.status==1){
|
||||
flag=false
|
||||
}else{
|
||||
flag=true
|
||||
}
|
||||
}else{
|
||||
flag=false
|
||||
flag=true
|
||||
}
|
||||
}
|
||||
return flag;
|
||||
|
|
|
|||
Loading…
Reference in New Issue