diff --git a/apps/web-antd/src/views/system/post/index.vue b/apps/web-antd/src/views/system/post/index.vue index da25a4cba..1de00d71a 100644 --- a/apps/web-antd/src/views/system/post/index.vue +++ b/apps/web-antd/src/views/system/post/index.vue @@ -127,6 +127,11 @@ async function handleExport() { const fileName = buildExportFileName('岗位数据'); exportBlob({ data: formValues, fileName }); } + +function handleDeptSelect(keys: string[]) { + selectDeptId.value = keys; + tableApi.reload(); +}