zy-react-library 1.1.44 → 1.1.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,28 +1,15 @@
|
|
|
1
1
|
import type { FC } from "react";
|
|
2
2
|
import type { BasicLeftTreeProps } from "../../Basic";
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* 请求参数
|
|
6
|
-
*/
|
|
7
|
-
export interface Params {
|
|
8
|
-
/** 企业id */
|
|
9
|
-
eqCorpinfoId?: string;
|
|
10
|
-
/** 父级部门id */
|
|
11
|
-
eqParentId?: string;
|
|
12
|
-
/** 企业类型 */
|
|
13
|
-
inType?: number[];
|
|
14
|
-
/** 企业类型 */
|
|
15
|
-
enterpriseType?: number[] | number;
|
|
16
|
-
}
|
|
3
|
+
import type { DepartmentSelectTreeProps } from "../../../SelectTree/Department/Gwj";
|
|
17
4
|
|
|
18
5
|
/**
|
|
19
6
|
* 组件属性
|
|
20
7
|
*/
|
|
21
8
|
export interface DepartmentLeftTreeProps extends Omit<BasicLeftTreeProps, "treeData" | "nameKey" | "idKey" | "childrenKey"> {
|
|
22
9
|
/** 请求参数 */
|
|
23
|
-
params?:
|
|
24
|
-
/**
|
|
25
|
-
searchType?: "
|
|
10
|
+
params?: DepartmentSelectTreeProps["params"];
|
|
11
|
+
/** 查询的企业类型 */
|
|
12
|
+
searchType?: DepartmentSelectTreeProps["searchType"];
|
|
26
13
|
}
|
|
27
14
|
|
|
28
15
|
/**
|
|
@@ -19,8 +19,10 @@ export interface Params {
|
|
|
19
19
|
export interface ExtraParams {
|
|
20
20
|
/** 返回值是否存在主账号,1 不返回主账号,默认有主账号 */
|
|
21
21
|
noMain?: 1 | "";
|
|
22
|
-
/** 入职状态 */
|
|
23
|
-
eqEmploymentFlag?:
|
|
22
|
+
/** 入职状态 0-离职, 1-在职, 2-信息变更中, 3-未入职, 4-实习生, 5-实习结束, 6-退休, 7-劳务派遣, 8-劳务派遣结束, 11-入职待审核, 10-离职待审核 */
|
|
23
|
+
eqEmploymentFlag?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 11 | 10;
|
|
24
|
+
/** 是否流动人员 1-流动,0-固定人员 */
|
|
25
|
+
flowFlag?: 1 | 0;
|
|
24
26
|
}
|
|
25
27
|
|
|
26
28
|
/**
|