diff --git a/src/api/system/post/types.ts b/src/api/system/post/types.ts
index 1f43cef..45a0540 100644
--- a/src/api/system/post/types.ts
+++ b/src/api/system/post/types.ts
@@ -23,6 +23,7 @@ export interface PostForm {
export interface PostQuery extends PageQuery {
deptId: number | string;
+ belongDeptId: number | string;
postCode: string;
postName: string;
postCategory: string;
diff --git a/src/views/system/post/index.vue b/src/views/system/post/index.vue
index a5aff0c..690d929 100644
--- a/src/views/system/post/index.vue
+++ b/src/views/system/post/index.vue
@@ -33,6 +33,15 @@
+
+
+
@@ -72,8 +81,8 @@
-
-
+
+
@@ -106,13 +115,13 @@
-
+
@@ -229,7 +238,7 @@ const getTreeSelect = async () => {
/** 节点单击事件 */
const handleNodeClick = (data: DeptVO) => {
- queryParams.value.deptId = data.id;
+ queryParams.value.belongDeptId = data.id;
handleQuery();
};