xyvcard-itsmsys 0.0.2 → 0.0.3
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/edit-BeMy_aOl.mjs +548 -0
- package/dist/edit-BhXrnHr7.mjs +520 -0
- package/dist/edit-BsLAy2-H.mjs +276 -0
- package/dist/edit-D7n1rZY2.mjs +240 -0
- package/dist/edit-l4-w6Psd.mjs +520 -0
- package/dist/index-B02UvpyC.mjs +334 -0
- package/dist/index-BRupqW34.mjs +96 -0
- package/dist/index-Bw3EuEs9.mjs +345 -0
- package/dist/index-COPul57Z.mjs +84 -0
- package/dist/index-CRlIL96y.mjs +334 -0
- package/dist/index-CUjT3FVb.mjs +351 -0
- package/dist/index-Cskg0LGf.mjs +341 -0
- package/dist/{index-B-FkgFqA.mjs → index-DOXuGEyW.mjs} +6 -6
- package/dist/index.mjs +236 -42
- package/dist/info-7Rre3Mm0.mjs +198 -0
- package/dist/info-CYKiOMB6.mjs +198 -0
- package/dist/info-Dub2j7gN.mjs +198 -0
- package/dist/info-O3dKVGmT.mjs +10 -0
- package/dist/invoiceEdit-C5dQG8ZJ.mjs +253 -0
- package/dist/invoiceEdit-Chsj8_aC.mjs +253 -0
- package/dist/invoiceEdit-DuSCNiDz.mjs +253 -0
- package/dist/style.css +1 -1
- package/dts/src/api/dict.d.ts +6 -1
- package/dts/src/api/index.d.ts +5 -1
- package/dts/src/api/itsm-sys-org/index.d.ts +1 -0
- package/dts/src/api/itsm-sys-org/types.d.ts +13 -5
- package/dts/src/api/itsm-sys-user-ext/index.d.ts +14 -0
- package/dts/src/api/itsm-sys-user-ext/types.d.ts +76 -0
- package/dts/src/constant.d.ts +4 -0
- package/dts/src/index.d.ts +2 -0
- package/dts/src/lang/itsmsys/zh-cn.d.ts +65 -4
- package/dts/src/router/index.d.ts +5 -0
- package/dts/src/views/itsmsys/itsm-sys-gov/edit.vue.d.ts +1 -21
- package/dts/src/views/itsmsys/itsm-sys-gov/info.vue.d.ts +2 -0
- package/dts/src/views/itsmsys/itsm-sys-gov/invoiceEdit.vue.d.ts +31 -0
- package/dts/src/views/itsmsys/itsm-sys-out/edit.vue.d.ts +2 -0
- package/dts/src/views/itsmsys/itsm-sys-out/index.vue.d.ts +2 -0
- package/dts/src/views/itsmsys/itsm-sys-out/info.vue.d.ts +2 -0
- package/dts/src/views/itsmsys/itsm-sys-out/invoiceEdit.vue.d.ts +31 -0
- package/dts/src/views/itsmsys-user/itsm-sys-user-man/edit.vue.d.ts +22 -0
- package/dts/src/views/itsmsys-user/itsm-sys-user-man/index.vue.d.ts +2 -0
- package/dts/src/views/itsmsys-user/itsm-sys-user-man/info.vue.d.ts +2 -0
- package/dts/src/views/itsmsys-user/itsm-sys-user-ops/edit.vue.d.ts +22 -0
- package/dts/src/views/itsmsys-user/itsm-sys-user-ops/index.vue.d.ts +2 -0
- package/package.json +2 -2
- package/dist/edit-BKMLirl4.mjs +0 -602
- package/dist/edit-ccGk5679.mjs +0 -610
- package/dist/index-BGwm5W6z.mjs +0 -343
- package/dist/index-CSDhKMEP.mjs +0 -332
- package/dist/info-CSOdbuvm.mjs +0 -192
- package/dist/invoiceEdit-D9zxwIoM.mjs +0 -288
package/dts/src/api/dict.d.ts
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
|
-
import { type Entry } from "jmash-core";
|
|
1
|
+
import { BizLayDict, type Entry, type LayEntry } from "jmash-core";
|
|
2
|
+
import type { SysOrgModel } from "./itsm-sys-org/types";
|
|
2
3
|
export declare class CustomBizDict {
|
|
3
4
|
values: import("vue").Reactive<Entry[]>;
|
|
4
5
|
query: any;
|
|
5
6
|
constructor(results: any, query: any);
|
|
6
7
|
getValue(key: string): string;
|
|
7
8
|
}
|
|
9
|
+
export declare class ParentIdBizDict extends BizLayDict {
|
|
10
|
+
useValues(): Promise<LayEntry[]>;
|
|
11
|
+
convertToLayEntryArray(dictLayEntries: SysOrgModel[]): LayEntry[];
|
|
12
|
+
}
|
package/dts/src/api/index.d.ts
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import { EnumDict } from "jmash-core";
|
|
2
|
-
import { CustomBizDict } from "./dict";
|
|
2
|
+
import { CustomBizDict, ParentIdBizDict } from "./dict";
|
|
3
3
|
export declare class Dict {
|
|
4
4
|
static readonly hasStatusDict: CustomBizDict;
|
|
5
5
|
static readonly invoiceTypeDictEnum: EnumDict;
|
|
6
|
+
static readonly parentIdBizDict: ParentIdBizDict;
|
|
7
|
+
static readonly jobStatusDictEnum: EnumDict;
|
|
8
|
+
static readonly engineeJobModeDictEnum: EnumDict;
|
|
9
|
+
static readonly genderDict: EnumDict;
|
|
6
10
|
}
|
|
@@ -10,6 +10,7 @@ declare class SysOrgApiImpl implements SysOrgApi {
|
|
|
10
10
|
enable(key: SysOrgKey, enable: boolean): AxiosPromise<boolean>;
|
|
11
11
|
delete(query: SysOrgKey): AxiosPromise<SysOrgModel>;
|
|
12
12
|
batchDelete(keys: SysOrgKey[]): AxiosPromise<number>;
|
|
13
|
+
move(key: SysOrgKey, up: boolean): AxiosPromise<boolean>;
|
|
13
14
|
}
|
|
14
15
|
declare const sysOrgApi: SysOrgApiImpl;
|
|
15
16
|
export { sysOrgApi };
|
|
@@ -2,17 +2,18 @@ import type { EntityApi, EntityReq, EntityModel, EntityList, EntityPage, EntityT
|
|
|
2
2
|
export interface SysOrgApi extends EntityApi {
|
|
3
3
|
}
|
|
4
4
|
export interface SysOrgReq extends EntityReq {
|
|
5
|
-
|
|
5
|
+
orgName?: string;
|
|
6
6
|
contactPerson?: string;
|
|
7
7
|
status?: boolean;
|
|
8
8
|
hasStatus?: boolean;
|
|
9
9
|
orgType?: string;
|
|
10
10
|
hasOrgType?: boolean;
|
|
11
|
+
depth?: string;
|
|
12
|
+
hasDepth?: boolean;
|
|
11
13
|
}
|
|
12
14
|
export interface SysOrgModel extends EntityModel {
|
|
13
15
|
orgId?: string;
|
|
14
16
|
orgName?: string;
|
|
15
|
-
shortName?: string;
|
|
16
17
|
orgType?: string;
|
|
17
18
|
address?: string;
|
|
18
19
|
geoLongitude?: string;
|
|
@@ -23,7 +24,9 @@ export interface SysOrgModel extends EntityModel {
|
|
|
23
24
|
contactPersonMobileIns?: string;
|
|
24
25
|
contactPersonMobileEncrypt?: boolean;
|
|
25
26
|
contactPersonTel?: string;
|
|
26
|
-
status?:
|
|
27
|
+
status?: string;
|
|
28
|
+
parentId?: string;
|
|
29
|
+
children?: SysOrgModel[];
|
|
27
30
|
}
|
|
28
31
|
export interface SysOrgList extends EntityList {
|
|
29
32
|
results: Array<SysOrgModel>;
|
|
@@ -47,7 +50,6 @@ export interface SysOrgKeyList extends EntityKeyList {
|
|
|
47
50
|
export interface SysOrgCreateReq extends EntityCreateReq {
|
|
48
51
|
orgId?: string;
|
|
49
52
|
orgName?: string;
|
|
50
|
-
shortName?: string;
|
|
51
53
|
orgType?: string;
|
|
52
54
|
address?: string;
|
|
53
55
|
geoLongitude?: string;
|
|
@@ -57,11 +59,11 @@ export interface SysOrgCreateReq extends EntityCreateReq {
|
|
|
57
59
|
contactPersonMobile?: string;
|
|
58
60
|
contactPersonTel?: string;
|
|
59
61
|
status?: boolean;
|
|
62
|
+
parentId?: string;
|
|
60
63
|
}
|
|
61
64
|
export interface SysOrgUpdateReq extends EntityUpdateReq {
|
|
62
65
|
orgId?: string;
|
|
63
66
|
orgName?: string;
|
|
64
|
-
shortName?: string;
|
|
65
67
|
orgType?: string;
|
|
66
68
|
address?: string;
|
|
67
69
|
geoLongitude?: string;
|
|
@@ -71,6 +73,7 @@ export interface SysOrgUpdateReq extends EntityUpdateReq {
|
|
|
71
73
|
contactPersonMobile?: string;
|
|
72
74
|
contactPersonTel?: string;
|
|
73
75
|
status?: boolean;
|
|
76
|
+
parentId?: string;
|
|
74
77
|
}
|
|
75
78
|
export type SysOrgFormReq = SysOrgCreateReq | SysOrgUpdateReq;
|
|
76
79
|
export interface SysOrgEnableKey {
|
|
@@ -78,3 +81,8 @@ export interface SysOrgEnableKey {
|
|
|
78
81
|
orgId?: string;
|
|
79
82
|
enable?: boolean;
|
|
80
83
|
}
|
|
84
|
+
export interface SysOrgMoveKey {
|
|
85
|
+
tenant?: string;
|
|
86
|
+
orgId?: string;
|
|
87
|
+
up?: boolean;
|
|
88
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { AxiosPromise } from "axios";
|
|
2
|
+
import type { SysUserExtApi, SysUserExtReq, SysUserExtModel, SysUserExtPage, SysUserExtList, SysUserExtKey, SysUserExtCreateReq, SysUserExtUpdateReq } from "./types";
|
|
3
|
+
declare class SysUserExtApiImpl implements SysUserExtApi {
|
|
4
|
+
getKey(model: SysUserExtModel): SysUserExtKey;
|
|
5
|
+
findPage(query?: SysUserExtReq): AxiosPromise<SysUserExtPage>;
|
|
6
|
+
findList(query?: SysUserExtReq): AxiosPromise<SysUserExtList>;
|
|
7
|
+
findById(query: SysUserExtKey): AxiosPromise<SysUserExtModel>;
|
|
8
|
+
create(data: SysUserExtCreateReq): AxiosPromise<SysUserExtModel>;
|
|
9
|
+
update(data: SysUserExtUpdateReq): AxiosPromise<SysUserExtModel>;
|
|
10
|
+
delete(query: SysUserExtKey): AxiosPromise<SysUserExtModel>;
|
|
11
|
+
batchDelete(keys: SysUserExtKey[]): AxiosPromise<number>;
|
|
12
|
+
}
|
|
13
|
+
declare const sysUserExtApi: SysUserExtApiImpl;
|
|
14
|
+
export { sysUserExtApi };
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import type { EntityApi, EntityReq, EntityModel, EntityList, EntityPage, EntityTotal, EntityKey, EntityKeyList, EntityCreateReq, EntityUpdateReq } from "jmash-core";
|
|
2
|
+
export interface SysUserExtApi extends EntityApi {
|
|
3
|
+
}
|
|
4
|
+
export interface SysUserExtReq extends EntityReq {
|
|
5
|
+
userType?: string;
|
|
6
|
+
hasUserType?: boolean;
|
|
7
|
+
jobStatus?: string;
|
|
8
|
+
engineeJobMode?: string;
|
|
9
|
+
realName?: string;
|
|
10
|
+
}
|
|
11
|
+
export interface SysUserExtModel extends EntityModel {
|
|
12
|
+
userId?: string;
|
|
13
|
+
realName?: string;
|
|
14
|
+
gender?: string;
|
|
15
|
+
mobilePhone?: string;
|
|
16
|
+
mobilePhoneIns?: string;
|
|
17
|
+
email?: string;
|
|
18
|
+
emailIns?: string;
|
|
19
|
+
deptId?: string;
|
|
20
|
+
jobId?: string;
|
|
21
|
+
userType?: string;
|
|
22
|
+
jobStatus?: string;
|
|
23
|
+
engineeType?: string;
|
|
24
|
+
engineeSpecialty?: string;
|
|
25
|
+
engineeJobMode?: string;
|
|
26
|
+
}
|
|
27
|
+
export interface SysUserExtList extends EntityList {
|
|
28
|
+
results: Array<SysUserExtModel>;
|
|
29
|
+
}
|
|
30
|
+
export interface SysUserExtPage extends EntityPage {
|
|
31
|
+
results: Array<SysUserExtModel>;
|
|
32
|
+
subTotalDto: SysUserExtModelTotal;
|
|
33
|
+
totalDto: SysUserExtModelTotal;
|
|
34
|
+
}
|
|
35
|
+
export interface SysUserExtModelTotal extends EntityTotal {
|
|
36
|
+
totalSize: number;
|
|
37
|
+
}
|
|
38
|
+
export interface SysUserExtKey extends EntityKey {
|
|
39
|
+
tenant?: string;
|
|
40
|
+
userId?: string;
|
|
41
|
+
}
|
|
42
|
+
export interface SysUserExtKeyList extends EntityKeyList {
|
|
43
|
+
tenant?: string;
|
|
44
|
+
userId?: Array<string>;
|
|
45
|
+
}
|
|
46
|
+
export interface SysUserExtCreateReq extends EntityCreateReq {
|
|
47
|
+
userId?: string;
|
|
48
|
+
realName?: string;
|
|
49
|
+
gender?: string;
|
|
50
|
+
mobilePhone?: string;
|
|
51
|
+
mobilePhoneIns?: string;
|
|
52
|
+
email?: string;
|
|
53
|
+
emailIns?: string;
|
|
54
|
+
deptId?: string;
|
|
55
|
+
jobId?: string;
|
|
56
|
+
userType?: string;
|
|
57
|
+
jobStatus?: string;
|
|
58
|
+
engineeType?: string;
|
|
59
|
+
engineeSpecialty?: string;
|
|
60
|
+
}
|
|
61
|
+
export interface SysUserExtUpdateReq extends EntityUpdateReq {
|
|
62
|
+
userId?: string;
|
|
63
|
+
realName?: string;
|
|
64
|
+
gender?: string;
|
|
65
|
+
mobilePhone?: string;
|
|
66
|
+
mobilePhoneIns?: string;
|
|
67
|
+
email?: string;
|
|
68
|
+
emailIns?: string;
|
|
69
|
+
deptId?: string;
|
|
70
|
+
jobId?: string;
|
|
71
|
+
userType?: string;
|
|
72
|
+
jobStatus?: string;
|
|
73
|
+
engineeType?: string;
|
|
74
|
+
engineeSpecialty?: string;
|
|
75
|
+
}
|
|
76
|
+
export type SysUserExtFormReq = SysUserExtCreateReq | SysUserExtUpdateReq;
|
package/dts/src/constant.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export declare class Constant {
|
|
2
|
+
static readonly MODULE_RBAC = "rbac";
|
|
2
3
|
static readonly MODULE_ITSMSYS = "itsmsys";
|
|
3
4
|
static readonly HAS_STATUS: globalThis.Ref<{
|
|
4
5
|
key: boolean;
|
|
@@ -11,4 +12,7 @@ export declare class Constant {
|
|
|
11
12
|
value: string;
|
|
12
13
|
}[]>;
|
|
13
14
|
static readonly ENUM_INVOICE_TYPE = "xyvcard.itsmsys.protobuf.InvoiceType";
|
|
15
|
+
static readonly ENUM_JOB_ATATUS = "xyvcard.itsmsys.protobuf.SysUserJobStatus";
|
|
16
|
+
static readonly ENUM_ENGINEE_JOB_MODE = "xyvcard.itsmsys.protobuf.SysUserJobMode";
|
|
17
|
+
static readonly ENUM_GENDER = "jmash.protobuf.Gender";
|
|
14
18
|
}
|
package/dts/src/index.d.ts
CHANGED
|
@@ -3,6 +3,8 @@ import "./styles/index.scss";
|
|
|
3
3
|
import "element-plus/dist/index.css";
|
|
4
4
|
export { sysOrgApi } from "@/api/itsm-sys-org/index";
|
|
5
5
|
export type { SysOrgReq, SysOrgModel } from "@/api/itsm-sys-org/types";
|
|
6
|
+
export { sysUserExtApi } from "@/api/itsm-sys-user-ext/index";
|
|
7
|
+
export type { SysUserExtReq, SysUserExtModel, } from "@/api/itsm-sys-user-ext/types";
|
|
6
8
|
declare const itsmsys: {
|
|
7
9
|
install(app: App): void;
|
|
8
10
|
};
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
sysOrg: {
|
|
3
|
-
shortName: string;
|
|
4
|
-
shortNameRequired: string;
|
|
5
3
|
contactPerson: string;
|
|
6
4
|
contactPersonRequired: string;
|
|
7
5
|
status: string;
|
|
@@ -36,8 +34,9 @@ declare const _default: {
|
|
|
36
34
|
backNumberLengthRequired: string;
|
|
37
35
|
};
|
|
38
36
|
sysGov: {
|
|
39
|
-
|
|
40
|
-
|
|
37
|
+
parentId: string;
|
|
38
|
+
parentIdRequired: string;
|
|
39
|
+
orderBy: string;
|
|
41
40
|
contactPerson: string;
|
|
42
41
|
contactPersonRequired: string;
|
|
43
42
|
status: string;
|
|
@@ -58,5 +57,67 @@ declare const _default: {
|
|
|
58
57
|
contactPersonTelRequired: string;
|
|
59
58
|
contactPersonTelRequireds: string;
|
|
60
59
|
};
|
|
60
|
+
sysOut: {
|
|
61
|
+
contactPerson: string;
|
|
62
|
+
contactPersonRequired: string;
|
|
63
|
+
status: string;
|
|
64
|
+
statusRequired: string;
|
|
65
|
+
orgName: string;
|
|
66
|
+
orgNameRequired: string;
|
|
67
|
+
address: string;
|
|
68
|
+
addressRequired: string;
|
|
69
|
+
geoLongitude: string;
|
|
70
|
+
geoLatitude: string;
|
|
71
|
+
contactPersonPosi: string;
|
|
72
|
+
contactPersonPosiRequired: string;
|
|
73
|
+
contactPersonMobile: string;
|
|
74
|
+
contactPersonMobileRequired: string;
|
|
75
|
+
contactPersonMobileRequireds: string;
|
|
76
|
+
contactPersonTel: string;
|
|
77
|
+
contactPersonTels: string;
|
|
78
|
+
contactPersonTelRequired: string;
|
|
79
|
+
contactPersonTelRequireds: string;
|
|
80
|
+
};
|
|
81
|
+
sysUserMan: {
|
|
82
|
+
realName: string;
|
|
83
|
+
realNameRequired: string;
|
|
84
|
+
mobilePhone: string;
|
|
85
|
+
mobilePhoneRequired: string;
|
|
86
|
+
mobilePhoneRequireds: string;
|
|
87
|
+
email: string;
|
|
88
|
+
emailRequired: string;
|
|
89
|
+
emailRequireds: string;
|
|
90
|
+
gender: string;
|
|
91
|
+
genderRequired: string;
|
|
92
|
+
jobStatus: string;
|
|
93
|
+
jobStatusRequired: string;
|
|
94
|
+
deptId: string;
|
|
95
|
+
deptIdRequired: string;
|
|
96
|
+
jobId: string;
|
|
97
|
+
jobIdRequired: string;
|
|
98
|
+
};
|
|
99
|
+
sysUserOps: {
|
|
100
|
+
realName: string;
|
|
101
|
+
realNameRequired: string;
|
|
102
|
+
engineeType: string;
|
|
103
|
+
engineeTypeRequired: string;
|
|
104
|
+
jobStatus: string;
|
|
105
|
+
jobStatusRequired: string;
|
|
106
|
+
engineeJobMode: string;
|
|
107
|
+
engineeJobModeRequired: string;
|
|
108
|
+
mobilePhone: string;
|
|
109
|
+
mobilePhoneRequired: string;
|
|
110
|
+
mobilePhoneRequireds: string;
|
|
111
|
+
email: string;
|
|
112
|
+
emailRequired: string;
|
|
113
|
+
emailRequireds: string;
|
|
114
|
+
gender: string;
|
|
115
|
+
genderRequired: string;
|
|
116
|
+
position: string;
|
|
117
|
+
positionRequired: string;
|
|
118
|
+
group: string;
|
|
119
|
+
groupRequired: string;
|
|
120
|
+
engineeSpecialty: string;
|
|
121
|
+
};
|
|
61
122
|
};
|
|
62
123
|
export default _default;
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import type { RouteRecordRaw } from "vue-router";
|
|
2
2
|
export declare const editInfoPage: () => Promise<typeof import("@/views/itsmsys/itsm-sys-org/edit.vue")>;
|
|
3
3
|
export declare const orgInfoPage: () => Promise<typeof import("@/views/itsmsys/itsm-sys-org/info.vue")>;
|
|
4
|
+
export declare const editGovInfoPage: () => Promise<typeof import("@/views/itsmsys/itsm-sys-gov/edit.vue")>;
|
|
5
|
+
export declare const govInfoPage: () => Promise<typeof import("@/views/itsmsys/itsm-sys-gov/info.vue")>;
|
|
6
|
+
export declare const editOutInfoPage: () => Promise<typeof import("@/views/itsmsys/itsm-sys-out/edit.vue")>;
|
|
7
|
+
export declare const outInfoPage: () => Promise<typeof import("@/views/itsmsys/itsm-sys-out/info.vue")>;
|
|
8
|
+
export declare const userManInfoPage: () => Promise<typeof import("@/views/itsmsys-user/itsm-sys-user-man/info.vue")>;
|
|
4
9
|
declare const constantRoutes: RouteRecordRaw[];
|
|
5
10
|
export default constantRoutes;
|
|
@@ -1,22 +1,2 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import type { SysGovKey } from "@/api/itsm-sys-gov/types";
|
|
3
|
-
declare const _default: import("vue").DefineComponent<globalThis.ExtractPropTypes<{
|
|
4
|
-
modelValue: PropType<boolean>;
|
|
5
|
-
entityKey: {
|
|
6
|
-
type: PropType<SysGovKey>;
|
|
7
|
-
default: () => void;
|
|
8
|
-
};
|
|
9
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
|
-
refresh: (...args: any[]) => void;
|
|
11
|
-
}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
12
|
-
modelValue: PropType<boolean>;
|
|
13
|
-
entityKey: {
|
|
14
|
-
type: PropType<SysGovKey>;
|
|
15
|
-
default: () => void;
|
|
16
|
-
};
|
|
17
|
-
}>> & Readonly<{
|
|
18
|
-
onRefresh?: ((...args: any[]) => any) | undefined;
|
|
19
|
-
}>, {
|
|
20
|
-
entityKey: SysGovKey;
|
|
21
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
22
2
|
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { type PropType } from "vue";
|
|
2
|
+
import type { SysOrgInvoiceKey } from "@/api/itsm-sys-org-invoice/types";
|
|
3
|
+
declare const _default: import("vue").DefineComponent<globalThis.ExtractPropTypes<{
|
|
4
|
+
modelValue: PropType<boolean>;
|
|
5
|
+
orgKey: {
|
|
6
|
+
type: StringConstructor;
|
|
7
|
+
default: () => string;
|
|
8
|
+
};
|
|
9
|
+
invoiceKey: {
|
|
10
|
+
type: PropType<SysOrgInvoiceKey>;
|
|
11
|
+
default: () => void;
|
|
12
|
+
};
|
|
13
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
|
+
refresh: (...args: any[]) => void;
|
|
15
|
+
}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
16
|
+
modelValue: PropType<boolean>;
|
|
17
|
+
orgKey: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: () => string;
|
|
20
|
+
};
|
|
21
|
+
invoiceKey: {
|
|
22
|
+
type: PropType<SysOrgInvoiceKey>;
|
|
23
|
+
default: () => void;
|
|
24
|
+
};
|
|
25
|
+
}>> & Readonly<{
|
|
26
|
+
onRefresh?: ((...args: any[]) => any) | undefined;
|
|
27
|
+
}>, {
|
|
28
|
+
orgKey: string;
|
|
29
|
+
invoiceKey: SysOrgInvoiceKey;
|
|
30
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
31
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { type PropType } from "vue";
|
|
2
|
+
import type { SysOrgInvoiceKey } from "@/api/itsm-sys-org-invoice/types";
|
|
3
|
+
declare const _default: import("vue").DefineComponent<globalThis.ExtractPropTypes<{
|
|
4
|
+
modelValue: PropType<boolean>;
|
|
5
|
+
orgKey: {
|
|
6
|
+
type: StringConstructor;
|
|
7
|
+
default: () => string;
|
|
8
|
+
};
|
|
9
|
+
invoiceKey: {
|
|
10
|
+
type: PropType<SysOrgInvoiceKey>;
|
|
11
|
+
default: () => void;
|
|
12
|
+
};
|
|
13
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
|
+
refresh: (...args: any[]) => void;
|
|
15
|
+
}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
16
|
+
modelValue: PropType<boolean>;
|
|
17
|
+
orgKey: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: () => string;
|
|
20
|
+
};
|
|
21
|
+
invoiceKey: {
|
|
22
|
+
type: PropType<SysOrgInvoiceKey>;
|
|
23
|
+
default: () => void;
|
|
24
|
+
};
|
|
25
|
+
}>> & Readonly<{
|
|
26
|
+
onRefresh?: ((...args: any[]) => any) | undefined;
|
|
27
|
+
}>, {
|
|
28
|
+
orgKey: string;
|
|
29
|
+
invoiceKey: SysOrgInvoiceKey;
|
|
30
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
31
|
+
export default _default;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { type PropType } from "vue";
|
|
2
|
+
import type { SysUserExtKey } from "@/api/itsm-sys-user-ext/types";
|
|
3
|
+
declare const _default: import("vue").DefineComponent<globalThis.ExtractPropTypes<{
|
|
4
|
+
modelValue: PropType<boolean>;
|
|
5
|
+
entityKey: {
|
|
6
|
+
type: PropType<SysUserExtKey>;
|
|
7
|
+
default: () => void;
|
|
8
|
+
};
|
|
9
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
|
+
refresh: (...args: any[]) => void;
|
|
11
|
+
}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
12
|
+
modelValue: PropType<boolean>;
|
|
13
|
+
entityKey: {
|
|
14
|
+
type: PropType<SysUserExtKey>;
|
|
15
|
+
default: () => void;
|
|
16
|
+
};
|
|
17
|
+
}>> & Readonly<{
|
|
18
|
+
onRefresh?: ((...args: any[]) => any) | undefined;
|
|
19
|
+
}>, {
|
|
20
|
+
entityKey: SysUserExtKey;
|
|
21
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
22
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { type PropType } from "vue";
|
|
2
|
+
import type { SysUserExtKey } from "@/api/itsm-sys-user-ext/types";
|
|
3
|
+
declare const _default: import("vue").DefineComponent<globalThis.ExtractPropTypes<{
|
|
4
|
+
modelValue: PropType<boolean>;
|
|
5
|
+
entityKey: {
|
|
6
|
+
type: PropType<SysUserExtKey>;
|
|
7
|
+
default: () => void;
|
|
8
|
+
};
|
|
9
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
|
+
refresh: (...args: any[]) => void;
|
|
11
|
+
}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
|
|
12
|
+
modelValue: PropType<boolean>;
|
|
13
|
+
entityKey: {
|
|
14
|
+
type: PropType<SysUserExtKey>;
|
|
15
|
+
default: () => void;
|
|
16
|
+
};
|
|
17
|
+
}>> & Readonly<{
|
|
18
|
+
onRefresh?: ((...args: any[]) => any) | undefined;
|
|
19
|
+
}>, {
|
|
20
|
+
entityKey: SysUserExtKey;
|
|
21
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
22
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xyvcard-itsmsys",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"module": "dist/index.mjs",
|
|
6
6
|
"types": "dts/src/index.d.ts",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"element-plus": "^2.8.7",
|
|
14
14
|
"jmash-core": "^0.0.102",
|
|
15
15
|
"jmash-dict": "^0.0.44",
|
|
16
|
-
"jmash-rbac": "^0.0.
|
|
16
|
+
"jmash-rbac": "^0.0.38",
|
|
17
17
|
"pinia": "^2.2.4",
|
|
18
18
|
"vue": "^3.5.11",
|
|
19
19
|
"vue-i18n": "^9.14.1",
|