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