|
@@ -10,6 +10,7 @@
|
|
|
<div class="btns">
|
|
|
<el-button type="primary" size="small" plain @click="addParamsHandler">新增</el-button>
|
|
|
<el-button type="primary" size="small" @click="advancedQueryHandler(false)">查询</el-button>
|
|
|
+ <el-button type="primary" size="small" @click="advancedQueryClear()">清空查询</el-button>
|
|
|
</div>
|
|
|
<el-form ref="paramsForm" class="query-params" :model="paramsForm" :rules="paramsForm.validateRules" :inline="true">
|
|
|
<el-table :data="paramsForm.params" height="370" border stripe>
|
|
@@ -445,6 +446,13 @@ export default {
|
|
|
error.message && this.$message.error(error.message)
|
|
|
}
|
|
|
},
|
|
|
+ advancedQueryClear () {
|
|
|
+ this.paramsForm.params = []
|
|
|
+ const queryString = []
|
|
|
+ this.queryString = queryString
|
|
|
+ this.sendColData()
|
|
|
+ this.dialogHide()
|
|
|
+ },
|
|
|
deleteParam (index) {
|
|
|
this.paramsTableCols[3].inputType.splice(index, 1)
|
|
|
this.paramsForm.params.splice(index, 1)
|