Browse Source

修改

dev_kxc
xzt 1 year ago
parent
commit
908829028e
  1. 37
      jwtech-admin-page/src/views/project/bid/options/bidBasePage.vue

37
jwtech-admin-page/src/views/project/bid/options/bidBasePage.vue

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

Loading…
Cancel
Save