This commit is contained in:
BianLzhaoMin 2025-11-15 17:46:15 +08:00
parent ae56e3cabc
commit e6cda55f1f
1 changed files with 4 additions and 2 deletions

View File

@ -20,7 +20,7 @@
clearable clearable
placeholder="请输入" placeholder="请输入"
class="search-input" class="search-input"
v-model="queryParams.searchValue" v-model="queryParams.keyWord"
@keyup.enter.native="onHandleSearch" @keyup.enter.native="onHandleSearch"
> >
<i <i
@ -255,7 +255,7 @@ export default {
queryParams: { queryParams: {
pageNum: 1, pageNum: 1,
pageSize: 10, pageSize: 10,
searchValue: '', keyWord: '',
parentId: '', parentId: '',
type: '', type: '',
labelIds: '', labelIds: '',
@ -337,6 +337,8 @@ export default {
this.queryParams.pageNum = 1 this.queryParams.pageNum = 1
this.queryParams.parentId = newNode.id this.queryParams.parentId = newNode.id
this.queryParams.type = newNode.type this.queryParams.type = newNode.type
this.queryParams.keyWord = ''
this.queryParams.labelIds = ''
// ID // ID
// ID // ID
this.getTableList() this.getTableList()