update 查询提示信息

This commit is contained in:
2022-08-29 09:36:42 +08:00
parent 96cea7cc0d
commit 349870ce5d
14 changed files with 30 additions and 171 deletions

View File

@@ -2,7 +2,7 @@
<div class="mod-config">
<el-form :inline="true" :model="dataForm" @keyup.enter.native="getDataList()">
<el-form-item>
<el-input v-model="dataForm.key" placeholder="参数名" clearable></el-input>
<el-input v-model="dataForm.name" placeholder="报表名称" clearable></el-input>
</el-form-item>
<el-form-item>
<el-button @click="getDataList()">查询</el-button>
@@ -89,7 +89,7 @@ export default {
addOrUpdateConfigs,
tableConfigs: [],
dataForm: {
key: ''
name: ''
},
dataList: [],
pageIndex: 1,
@@ -179,7 +179,7 @@ export default {
const queries = {
page: this.pageIndex,
limit: this.pageSize,
key: this.dataForm.key
name: this.dataForm.name
}
if (this.$route.query.category) {
queries['category'] = this.$route.query.category