|
|
@ -15,7 +15,7 @@ |
|
|
|
<!-- 搜索条件 --> |
|
|
|
<el-form |
|
|
|
:model="queryParams" |
|
|
|
ref="queryForm" |
|
|
|
ref="proQueryParams" |
|
|
|
:inline="true" |
|
|
|
label-width="68px" |
|
|
|
> |
|
|
@ -386,22 +386,21 @@ export default { |
|
|
|
}, |
|
|
|
// 查询表单重置 |
|
|
|
resetQueryForm() { |
|
|
|
this.queryParams = { |
|
|
|
this.proQueryParams = { |
|
|
|
pageNum: 1, |
|
|
|
pageSize: 10, |
|
|
|
ids: null, |
|
|
|
data: { |
|
|
|
id: null, |
|
|
|
adcd: null, |
|
|
|
projectName: null, |
|
|
|
projectType: null, |
|
|
|
overview: null, |
|
|
|
compilingUnit: null, |
|
|
|
startYear: null, |
|
|
|
endYear: null, |
|
|
|
amount: null, |
|
|
|
compilingUnitNature: null, |
|
|
|
compilingUnitAddress: null, |
|
|
|
compilingUnitLegalPerson: null, |
|
|
|
projectReport: null, |
|
|
|
constructionNature: null, |
|
|
|
constructionLocation: null, |
|
|
|
projectUnitName: null, |
|
|
|
briefIntroduction: null, |
|
|
|
projectLandSituation: null, |
|
|
|
designEstimateReport: null, |
|
|
|
relatedAttachment: null, |
|
|
|
projectCode: null, |
|
|
|
proNo: null, |
|
|
|
createUid: null, |
|
|
|
createTime: null, |
|
|
@ -409,12 +408,7 @@ export default { |
|
|
|
updateTime: null, |
|
|
|
owerDept: null, |
|
|
|
}, |
|
|
|
// 模糊查询 |
|
|
|
cv: { |
|
|
|
type: null, |
|
|
|
name: null, |
|
|
|
value: null, |
|
|
|
}, |
|
|
|
cv: {}, |
|
|
|
// 排序方式 |
|
|
|
params: { |
|
|
|
// 按哪个字段排序 |
|
|
@ -423,7 +417,7 @@ export default { |
|
|
|
sort: "desc", |
|
|
|
}, |
|
|
|
}; |
|
|
|
this.resetForm("queryForm"); |
|
|
|
this.resetForm("proQueryParams"); |
|
|
|
}, |
|
|
|
/** 搜索按钮操作 */ |
|
|
|
handleQuery() { |
|
|
|