sun-biz 0.0.4-beta.1 → 0.0.4-beta.10
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.
- package/dist/components/biz-select/index.d.ts +2 -0
- package/dist/components/biz-select/tag-select/api.d.ts +28 -0
- package/dist/components/biz-select/user-select/api.d.ts +109 -0
- package/dist/components/index.d.ts +1 -1
- package/dist/components/index.js +1181 -175
- package/dist/components/invoice/api/index.d.ts +14 -0
- package/dist/components/invoice/constant.d.ts +7 -0
- package/dist/components/patient-access/api.d.ts +10 -1
- package/dist/components/print/constant.d.ts +13 -0
- package/dist/components/static/css/index.css +3 -3
- package/dist/hooks/index.js +6 -5
- package/dist/hooks/use-data-change-detector/index.d.ts +2 -1
- package/dist/hooks/use-fetch-dataset/use-fetch-time.d.ts +6 -0
- package/dist/index.d.ts +24 -23
- package/dist/index.js +1442 -430
- package/dist/static/css/index.css +3 -3
- package/package.json +2 -2
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
export { default as DictSelect } from './dict-select/index.vue';
|
|
2
2
|
export { default as FlagSelect } from './flag-select/index.vue';
|
|
3
3
|
export { default as HospitalSelect } from './hospital-select/index.vue';
|
|
4
|
+
export { default as TagSelect } from './tag-select/index.vue';
|
|
5
|
+
export { default as UserSelect } from './tag-select/index.vue';
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 标签详情
|
|
3
|
+
*/
|
|
4
|
+
interface TagInfo {
|
|
5
|
+
tagId: string;
|
|
6
|
+
tagNameDisplay: string;
|
|
7
|
+
sort: number;
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* 标签分组详情
|
|
11
|
+
*/
|
|
12
|
+
export interface TagGroupInfo {
|
|
13
|
+
tagGroupId: string;
|
|
14
|
+
tagGroupNameDisplay: string;
|
|
15
|
+
enabledFlag: number;
|
|
16
|
+
tagList: TagInfo[];
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* [1-10473-1]根据条件查询标签分组V1(含标签)
|
|
20
|
+
* @param params
|
|
21
|
+
* @returns
|
|
22
|
+
*/
|
|
23
|
+
export declare const queryTagGroupByExampleV1: (params: {
|
|
24
|
+
bizIdTypeCode: string;
|
|
25
|
+
enabledFlag?: number;
|
|
26
|
+
bizId?: string;
|
|
27
|
+
}) => Promise<[import("@sun-toolkit/request").SunApiResultData<null> | undefined, import("@sun-toolkit/request").SunApiResultData<TagGroupInfo[]> | undefined]>;
|
|
28
|
+
export {};
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 入参
|
|
3
|
+
*/
|
|
4
|
+
export type UserQueryParams = {
|
|
5
|
+
personId?: string;
|
|
6
|
+
enabledFlag?: number;
|
|
7
|
+
keyWord?: string;
|
|
8
|
+
userNo?: string;
|
|
9
|
+
hospitalId?: string;
|
|
10
|
+
userJobCodes?: string[];
|
|
11
|
+
bizUnitId?: string;
|
|
12
|
+
userId?: string;
|
|
13
|
+
userTypeCode?: string;
|
|
14
|
+
appReleaseVersionCode?: string;
|
|
15
|
+
pageNumber: number;
|
|
16
|
+
pageSize: number;
|
|
17
|
+
};
|
|
18
|
+
/**
|
|
19
|
+
* 出参
|
|
20
|
+
*/
|
|
21
|
+
export type UserItem = {
|
|
22
|
+
userId: string;
|
|
23
|
+
userNo: string;
|
|
24
|
+
userName: string;
|
|
25
|
+
user2ndName?: string;
|
|
26
|
+
userExtName?: string;
|
|
27
|
+
userNameDisPlay: string;
|
|
28
|
+
loginFlag: number;
|
|
29
|
+
adminFlag: number;
|
|
30
|
+
lockedFlag: number;
|
|
31
|
+
userTypeCode: string;
|
|
32
|
+
userTypeDesc: string;
|
|
33
|
+
enabledFlag: number;
|
|
34
|
+
spellNo?: string;
|
|
35
|
+
wbNo?: string;
|
|
36
|
+
paySumTypeCode: string;
|
|
37
|
+
paySumTypeDesc: string;
|
|
38
|
+
paySumBelongUserId: string;
|
|
39
|
+
paySumBelongUserName: string;
|
|
40
|
+
invoiceAgentUserId: string;
|
|
41
|
+
invoiceAgentUserName: string;
|
|
42
|
+
lastLoginAt?: string;
|
|
43
|
+
loginIp?: string;
|
|
44
|
+
loginMac?: string;
|
|
45
|
+
loginTypeCode?: string;
|
|
46
|
+
loginTypeDesc?: string;
|
|
47
|
+
personId?: string;
|
|
48
|
+
titleCode?: string;
|
|
49
|
+
titleDesc?: string;
|
|
50
|
+
personSimpleDesc?: string;
|
|
51
|
+
person2ndSimpleDesc?: string;
|
|
52
|
+
personExtSimpleDesc?: string;
|
|
53
|
+
simpleDescDisplay?: string;
|
|
54
|
+
userJobCode: string;
|
|
55
|
+
userJobDesc: string;
|
|
56
|
+
genderCode?: string;
|
|
57
|
+
genderDesc?: string;
|
|
58
|
+
appReleaseVersionCode?: string;
|
|
59
|
+
appReleaseVersionDesc?: string;
|
|
60
|
+
perCertificateList: {
|
|
61
|
+
perCertificateId: string;
|
|
62
|
+
certificateTypeCode: string;
|
|
63
|
+
certificateTypeDesc: string;
|
|
64
|
+
certificateNo: string;
|
|
65
|
+
}[];
|
|
66
|
+
perContactList?: {
|
|
67
|
+
perContactId: string;
|
|
68
|
+
contactTypeCode: string;
|
|
69
|
+
contactTypeDesc: string;
|
|
70
|
+
contactNo: string;
|
|
71
|
+
}[];
|
|
72
|
+
loginOrgLocationList?: {
|
|
73
|
+
userXOrgLocationId: string;
|
|
74
|
+
orgLocationId: string;
|
|
75
|
+
orgLocationName: string;
|
|
76
|
+
sort: number;
|
|
77
|
+
orgId: string;
|
|
78
|
+
orgName: string;
|
|
79
|
+
orgTypeCode: string;
|
|
80
|
+
orgTypeDesc: string;
|
|
81
|
+
}[];
|
|
82
|
+
userRoleList?: {
|
|
83
|
+
userRoleId: string;
|
|
84
|
+
hospitalId: string;
|
|
85
|
+
hospitalName: string;
|
|
86
|
+
roleId: string;
|
|
87
|
+
roleName: string;
|
|
88
|
+
tenantId: string;
|
|
89
|
+
tenantName: string;
|
|
90
|
+
}[];
|
|
91
|
+
bizUnitList?: {
|
|
92
|
+
bizUnitId: string;
|
|
93
|
+
bizUnitName: string;
|
|
94
|
+
orgTypeCode: string;
|
|
95
|
+
orgTypeDesc: string;
|
|
96
|
+
hospitalId: string;
|
|
97
|
+
hospitalName: string;
|
|
98
|
+
}[];
|
|
99
|
+
};
|
|
100
|
+
export type UserSelection = Partial<UserItem> & {
|
|
101
|
+
label?: string;
|
|
102
|
+
value?: string;
|
|
103
|
+
};
|
|
104
|
+
/**
|
|
105
|
+
* [1-10013-1]根据条件查询用户列表
|
|
106
|
+
* @param params
|
|
107
|
+
* @returns
|
|
108
|
+
*/
|
|
109
|
+
export declare const queryUserList: (params: UserQueryParams) => Promise<[import("@sun-toolkit/request").SunApiResultData<null> | undefined, import("@sun-toolkit/request").SunApiPageData<UserItem> | undefined]>;
|
|
@@ -9,5 +9,5 @@ export { ProDialog } from './pro-dialog/index.ts';
|
|
|
9
9
|
export { AccessInfo } from './access-info/index.ts';
|
|
10
10
|
export { FormDesignRender } from './form-design-render/index.ts';
|
|
11
11
|
export { CopyTextWithTooltip } from './copy-text-with-tooltip/index.ts';
|
|
12
|
-
export { DictSelect, FlagSelect, HospitalSelect } from './biz-select/index.ts';
|
|
12
|
+
export { DictSelect, FlagSelect, HospitalSelect, TagSelect, } from './biz-select/index.ts';
|
|
13
13
|
export { DmlButton } from './dml-button/index.ts';
|