|
|
@@ -3,6 +3,9 @@
|
|
|
<el-card class="tjm_card_style_custom" shadow="never">
|
|
|
<div class="tjm_card_select">
|
|
|
<el-form class="tjm_card_select_left" :model="params" inline label-width="80px" label-position="left">
|
|
|
+ <el-form-item label="政策编号">
|
|
|
+ <el-input v-model="params.businessNo" clearable placeholder="请输入政策编号"></el-input>
|
|
|
+ </el-form-item>
|
|
|
<el-form-item label="项目名称">
|
|
|
<el-input v-model="params.name" clearable placeholder="请输入项目名称"></el-input>
|
|
|
</el-form-item>
|
|
|
@@ -133,9 +136,7 @@ export default {
|
|
|
for (const key in this.params) {
|
|
|
if (key == "page") this.params[key] = 1;
|
|
|
else if (key == "size") this.params[key] = 10;
|
|
|
- else {
|
|
|
- if (key != "status" && key != "docNo") this.params[key] = null;
|
|
|
- }
|
|
|
+ else if (key == "status" || key != "docNo") this.params[key] = null;
|
|
|
}
|
|
|
this.reloadTable();
|
|
|
},
|