mirror of
http://112.124.100.131/ebiz-ai/ebiz-ai-knowledge-manage.git
synced 2025-12-09 10:56:50 +08:00
修复点击查询后清空规则类型问题
This commit is contained in:
@@ -356,9 +356,12 @@ export default {
|
||||
}
|
||||
},
|
||||
// 获取规则列表数据
|
||||
getList() {
|
||||
getList(queryParams) {
|
||||
this.loading = true
|
||||
const params = Object.assign({}, this.queryParams)
|
||||
const params = Object.assign(
|
||||
{},
|
||||
queryParams ? queryParams : this.queryParams
|
||||
)
|
||||
|
||||
getRulePage(params)
|
||||
.then(response => {
|
||||
@@ -444,8 +447,8 @@ export default {
|
||||
}
|
||||
|
||||
// 使用转换后的参数进行查询
|
||||
this.queryParams = queryParams
|
||||
this.getList()
|
||||
// this.queryParams = queryParams
|
||||
this.getList(queryParams)
|
||||
},
|
||||
// 重置按钮点击事件
|
||||
resetQuery() {
|
||||
|
||||
Reference in New Issue
Block a user