|
|
@ -425,7 +425,11 @@ |
|
|
|
</el-col> |
|
|
|
<el-col :span="12"> |
|
|
|
<el-form-item label="招标项目类型" prop="bidType"> |
|
|
|
<el-select |
|
|
|
<el-input |
|
|
|
v-model="detailsForm.bidType" |
|
|
|
placeholder="请输入招标项目类型" |
|
|
|
/> |
|
|
|
<!-- <el-select |
|
|
|
v-model="detailsForm.bidType" |
|
|
|
placeholder="请选择招标项目类型" |
|
|
|
style="width: 100%" |
|
|
@ -436,15 +440,27 @@ |
|
|
|
:label="dict.dictLabel" |
|
|
|
:value="dict.dictValue" |
|
|
|
></el-option> |
|
|
|
</el-select> |
|
|
|
</el-select> --> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="12"> |
|
|
|
<el-form-item label="招标方式" prop="bidMethod"> |
|
|
|
<el-input |
|
|
|
<!-- <el-input |
|
|
|
v-model="detailsForm.bidMethod" |
|
|
|
placeholder="请输入招标方式" |
|
|
|
/> |
|
|
|
placeholder="请输入招标项目类型" |
|
|
|
/> --> |
|
|
|
<el-select |
|
|
|
v-model="detailsForm.bidMethod" |
|
|
|
placeholder="请选择招标项目类型" |
|
|
|
style="width: 100%" |
|
|
|
> |
|
|
|
<el-option |
|
|
|
v-for="dict in bidTypeOptions" |
|
|
|
:key="dict.dictValue" |
|
|
|
:label="dict.dictLabel" |
|
|
|
:value="dict.dictValue" |
|
|
|
></el-option> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="12"> |
|
|
@ -964,7 +980,7 @@ |
|
|
|
</el-descriptions-item> |
|
|
|
<el-descriptions-item> |
|
|
|
<template slot="label"> 招标方式 </template> |
|
|
|
{{ this.detailsMsg.bidMethod }} |
|
|
|
{{ bidMethodFormat(this.detailsMsg) }} |
|
|
|
</el-descriptions-item> |
|
|
|
<el-descriptions-item> |
|
|
|
<template slot="label"> 招标内容 </template> |
|
|
@ -1040,8 +1056,8 @@ export default { |
|
|
|
isConsolidatedBiddingOptions: [], |
|
|
|
// 是否依法必招项目字典 |
|
|
|
isMustProject: [], |
|
|
|
// 招标项目类型字典 |
|
|
|
bidType: [], |
|
|
|
// 招标方式字典 |
|
|
|
bidTypeOptions: [], |
|
|
|
// 查询参数 |
|
|
|
queryParams: { |
|
|
|
pageNum: 1, |
|
|
@ -1142,7 +1158,7 @@ export default { |
|
|
|
this.isMustProject = response.data; |
|
|
|
}); |
|
|
|
this.getDicts("Bid_type").then((response) => { |
|
|
|
this.bidType = response.data; |
|
|
|
this.bidTypeOptions = response.data; |
|
|
|
}); |
|
|
|
}, |
|
|
|
// 父组件 利用axios请求得到的值 传送到子组件,要监听,否则初始渲染时为空 |
|
|
@ -1175,6 +1191,9 @@ export default { |
|
|
|
this.bidProjectNameOptions = response.records; |
|
|
|
}); |
|
|
|
}, |
|
|
|
bidMethodFormat(row, column) { |
|
|
|
return this.selectDictLabel(this.bidTypeOptions, row.bidMethod); |
|
|
|
}, |
|
|
|
// 是否合并招标字典翻译 |
|
|
|
isConsolidatedBiddingFormat(row, column) { |
|
|
|
return this.selectDictLabel( |
|
|
|