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