测试问题修改4

This commit is contained in:
zzyuan 2025-09-08 18:22:47 +08:00
parent 5fa12dd165
commit 14b11e5538
2 changed files with 16 additions and 7 deletions

View File

@ -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>

View File

@ -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;