This commit is contained in:
yaojian
2025-12-25 11:20:10 +08:00
parent afa85da991
commit 87ed5eac9c
7 changed files with 865 additions and 2 deletions

View File

@@ -109,7 +109,7 @@ const queryRef = ref();
const state: BasicTableProps = reactive<BasicTableProps>({
pageList: pageList, // H
queryForm: {
parentId: -1,
parentId: '-1',
menuName: '',
},
isPage: false,
@@ -149,7 +149,7 @@ const deleteMenuDisabled = (row: any) => {
// 搜索事件
const query = () => {
state.dataList = [];
state.queryForm.parentId = undefined;
state.queryForm.parentId = '-1';
getDataList();
};