From 9d71b6a6bebc26b23dafb6c429fcec26e9664b6f Mon Sep 17 00:00:00 2001 From: LiuJiaNan <15703339975@163.com> Date: Tue, 4 Nov 2025 08:39:32 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96LeftTree=E3=80=81SelectTree?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/LeftTree/Department/Gwj/index.d.ts | 10 +++++++++- components/SelectTree/Department/Gwj/index.d.ts | 3 ++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/components/LeftTree/Department/Gwj/index.d.ts b/components/LeftTree/Department/Gwj/index.d.ts index 177ff53..88f9605 100644 --- a/components/LeftTree/Department/Gwj/index.d.ts +++ b/components/LeftTree/Department/Gwj/index.d.ts @@ -1,12 +1,20 @@ import type { FC } from "react"; import type { BasicLeftTreeProps } from "../../Basic"; +export interface Params { + /** 企业id */ + eqCorpInfoId?: string; + /** 父级部门id */ + eqParentId?: string; + [key: string]: any; +} + /** * 组件属性 */ export interface DepartmentLeftTreeProps extends Omit { /** 请求参数 */ - params?: Record; + params?: Params; } /** diff --git a/components/SelectTree/Department/Gwj/index.d.ts b/components/SelectTree/Department/Gwj/index.d.ts index 3cebc2d..9575f7d 100644 --- a/components/SelectTree/Department/Gwj/index.d.ts +++ b/components/SelectTree/Department/Gwj/index.d.ts @@ -1,12 +1,13 @@ import type { FC } from "react"; import type { BasicSelectTreeProps } from "../../Basic"; +import { Params } from "../../../LeftTree/Department/Gwj"; /** * 组件属性 */ export interface DepartmentSelectTreeProps extends Omit { /** 请求参数 */ - params?: Record; + params?: Params; } /**