sooyie-task 0.0.1
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/README.md +51 -0
- package/dist/_plugin-vue_export-helper-CHgC5LLL.mjs +9 -0
- package/dist/add-7_dK5ok_.mjs +261 -0
- package/dist/add-C2devcsq.mjs +439 -0
- package/dist/edit-CE42VR9Z.mjs +237 -0
- package/dist/edit-CRQkMd15.mjs +452 -0
- package/dist/el-message-Bod6C9wB.mjs +1252 -0
- package/dist/index-BYV5ylFn.mjs +29 -0
- package/dist/index-B_hFZVhb-C3Oi__-I.mjs +1851 -0
- package/dist/index-CEvxhWYT.mjs +104 -0
- package/dist/index-CK1KRDsU.mjs +335 -0
- package/dist/index-C_NGsTkK.mjs +412 -0
- package/dist/index-CewoF68r.mjs +105 -0
- package/dist/index-DIHsBjkh.mjs +4 -0
- package/dist/index-DaJ5KrbS.mjs +125 -0
- package/dist/index-DvawPwK3.mjs +10483 -0
- package/dist/index-rm9IgDWo.mjs +377 -0
- package/dist/index.mjs +2807 -0
- package/dist/index.vue_vue_type_script_setup_true_lang-DRYjMxBU.mjs +141 -0
- package/dist/info-Dls9Zhvf.mjs +1990 -0
- package/dist/report-CJWipPH_.mjs +564 -0
- package/dist/report-info-B0NXFFzR.mjs +313 -0
- package/dist/style.css +1 -0
- package/dts/src/App.vue.d.ts +2 -0
- package/dts/src/api/dict.d.ts +13 -0
- package/dts/src/api/index.d.ts +16 -0
- package/dts/src/api/task/report-files/index.d.ts +9 -0
- package/dts/src/api/task/report-files/types.d.ts +26 -0
- package/dts/src/api/task/task-define/index.d.ts +17 -0
- package/dts/src/api/task/task-define/types.d.ts +141 -0
- package/dts/src/api/task/task-define-rel/index.d.ts +10 -0
- package/dts/src/api/task/task-define-rel/types.d.ts +25 -0
- package/dts/src/api/task/task-inspect-matterst-record/index.d.ts +9 -0
- package/dts/src/api/task/task-inspect-matterst-record/types.d.ts +65 -0
- package/dts/src/api/task/task-inst/index.d.ts +12 -0
- package/dts/src/api/task/task-inst/types.d.ts +137 -0
- package/dts/src/api/task/task-record/index.d.ts +20 -0
- package/dts/src/api/task/task-record/types.d.ts +62 -0
- package/dts/src/api/task/task-task/index.d.ts +9 -0
- package/dts/src/api/task/task-task/types.d.ts +57 -0
- package/dts/src/api/task/task_my_assigned/index.d.ts +9 -0
- package/dts/src/api/task/task_my_assigned/types.d.ts +56 -0
- package/dts/src/components/singleImageUpload/index.vue.d.ts +45 -0
- package/dts/src/constant.d.ts +56 -0
- package/dts/src/index.d.ts +5 -0
- package/dts/src/lang/index.d.ts +1 -0
- package/dts/src/lang/task/en.d.ts +81 -0
- package/dts/src/lang/task/zh-cn.d.ts +122 -0
- package/dts/src/main.d.ts +5 -0
- package/dts/src/permission.d.ts +1 -0
- package/dts/src/router/index.d.ts +10 -0
- package/dts/src/utils/momentPlugin.d.ts +5 -0
- package/dts/src/views/task/task-define/add.vue.d.ts +11 -0
- package/dts/src/views/task/task-define/edit.vue.d.ts +2 -0
- package/dts/src/views/task/task-define/index.vue.d.ts +2 -0
- package/dts/src/views/task/task-define-rel/add.vue.d.ts +11 -0
- package/dts/src/views/task/task-define-rel/index.vue.d.ts +2 -0
- package/dts/src/views/task/task-inst/edit.vue.d.ts +26 -0
- package/dts/src/views/task/task-inst/index.vue.d.ts +2 -0
- package/dts/src/views/task/task-inst/info.vue.d.ts +2 -0
- package/dts/src/views/task/task-inst/report-info.vue.d.ts +33 -0
- package/dts/src/views/task/task-inst/report.vue.d.ts +26 -0
- package/dts/src/views/task/task-task/index.vue.d.ts +2 -0
- package/package.json +62 -0
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
taskAssigned: {
|
|
3
|
+
name: string;
|
|
4
|
+
taskAssignedId: string;
|
|
5
|
+
tenantId: string;
|
|
6
|
+
taskDefineId: string;
|
|
7
|
+
userId: string;
|
|
8
|
+
taskName: string;
|
|
9
|
+
shortName: string;
|
|
10
|
+
sort: string;
|
|
11
|
+
note: string;
|
|
12
|
+
reward: string;
|
|
13
|
+
bcmFinishCount: string;
|
|
14
|
+
bcmTotalCount: string;
|
|
15
|
+
finishCount: string;
|
|
16
|
+
totalCount: string;
|
|
17
|
+
customerTagId: string;
|
|
18
|
+
startDate: string;
|
|
19
|
+
endDate: string;
|
|
20
|
+
status: string;
|
|
21
|
+
};
|
|
22
|
+
taskDefine: {
|
|
23
|
+
name: string;
|
|
24
|
+
taskDefineId: string;
|
|
25
|
+
tenantId: string;
|
|
26
|
+
taskTitle: string;
|
|
27
|
+
taskTitleRequired: string;
|
|
28
|
+
taskSort: string;
|
|
29
|
+
taskSortRequired: string;
|
|
30
|
+
userSort: string;
|
|
31
|
+
deptGroup: string;
|
|
32
|
+
endDate: string;
|
|
33
|
+
endDateRequired: string;
|
|
34
|
+
note: string;
|
|
35
|
+
noteRequired: string;
|
|
36
|
+
reward: string;
|
|
37
|
+
status: string;
|
|
38
|
+
taskPeriod: string;
|
|
39
|
+
taskPeriodRequired: string;
|
|
40
|
+
startDate: string;
|
|
41
|
+
startDateRequired: string;
|
|
42
|
+
taskCount: string;
|
|
43
|
+
taskCountRequired: string;
|
|
44
|
+
customerTagId: string;
|
|
45
|
+
festivalDays: string;
|
|
46
|
+
memorialDays: string;
|
|
47
|
+
jobName: string;
|
|
48
|
+
overdueStatus: string;
|
|
49
|
+
actionId: string;
|
|
50
|
+
actionIdRequired: string;
|
|
51
|
+
createBy: string;
|
|
52
|
+
createTime: string;
|
|
53
|
+
files: string;
|
|
54
|
+
startDateLaterThanEndDate: string;
|
|
55
|
+
endDateEarlierThanStartDate: string;
|
|
56
|
+
customerId: string;
|
|
57
|
+
customerIdRequired: string;
|
|
58
|
+
userId: string;
|
|
59
|
+
userIdRequired: string;
|
|
60
|
+
index: string;
|
|
61
|
+
};
|
|
62
|
+
taskInst: {
|
|
63
|
+
name: string;
|
|
64
|
+
taskInstId: string;
|
|
65
|
+
tenantId: string;
|
|
66
|
+
taskDefineId: string;
|
|
67
|
+
taskAssignedId: string;
|
|
68
|
+
taskName: string;
|
|
69
|
+
sort: string;
|
|
70
|
+
reward: string;
|
|
71
|
+
finishCount: string;
|
|
72
|
+
totalCount: string;
|
|
73
|
+
taskCount: string;
|
|
74
|
+
taskPeriod: string;
|
|
75
|
+
customerTagId: string;
|
|
76
|
+
customerCount: string;
|
|
77
|
+
customerFestivalType: string;
|
|
78
|
+
customerFestivalDate: string;
|
|
79
|
+
annivCustomerId: string;
|
|
80
|
+
startDate: string;
|
|
81
|
+
endDate: string;
|
|
82
|
+
status: string;
|
|
83
|
+
statusRequired: string;
|
|
84
|
+
overdueStatus: string;
|
|
85
|
+
actionId: string;
|
|
86
|
+
taskDate: string;
|
|
87
|
+
taskDateRequired: string;
|
|
88
|
+
readDate: string;
|
|
89
|
+
readStatus: string;
|
|
90
|
+
keyword: string;
|
|
91
|
+
keywordRequired: string;
|
|
92
|
+
percent: string;
|
|
93
|
+
finishDate: string;
|
|
94
|
+
userId: string;
|
|
95
|
+
orgName: string;
|
|
96
|
+
file: string;
|
|
97
|
+
customerId: string;
|
|
98
|
+
customerIdRequired: string;
|
|
99
|
+
createTime: string;
|
|
100
|
+
note: string;
|
|
101
|
+
noteRequired: string;
|
|
102
|
+
report: string;
|
|
103
|
+
reportNormal: string;
|
|
104
|
+
itsmIdRequired: string;
|
|
105
|
+
reportLog: string;
|
|
106
|
+
Logfile: string;
|
|
107
|
+
reportHardware: string;
|
|
108
|
+
reportExpert: string;
|
|
109
|
+
department: string;
|
|
110
|
+
itsmId: string;
|
|
111
|
+
reportTime: string;
|
|
112
|
+
createBy: string;
|
|
113
|
+
};
|
|
114
|
+
taskRecord: {
|
|
115
|
+
name: string;
|
|
116
|
+
taskRecordId: string;
|
|
117
|
+
tenantId: string;
|
|
118
|
+
taskInstId: string;
|
|
119
|
+
note: string;
|
|
120
|
+
};
|
|
121
|
+
};
|
|
122
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import "nprogress/nprogress.css";
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { type RouteRecordRaw } from "vue-router";
|
|
2
|
+
export declare const taskEdit: () => Promise<typeof import("@/views/task/task-define/edit.vue")>;
|
|
3
|
+
export declare const taskDetail: () => Promise<typeof import("@/views/task/task-inst/info.vue")>;
|
|
4
|
+
export declare const taskRoutes: Array<RouteRecordRaw>;
|
|
5
|
+
export declare const constantRoutes: RouteRecordRaw[];
|
|
6
|
+
/**
|
|
7
|
+
* 创建路由
|
|
8
|
+
*/
|
|
9
|
+
declare const router: import("vue-router").Router;
|
|
10
|
+
export default router;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
type __VLS_PublicProps = {
|
|
2
|
+
modelValue?: boolean;
|
|
3
|
+
};
|
|
4
|
+
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
5
|
+
refresh: (...args: any[]) => void;
|
|
6
|
+
"update:modelValue": (value: boolean | undefined) => void;
|
|
7
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
8
|
+
onRefresh?: ((...args: any[]) => any) | undefined;
|
|
9
|
+
"onUpdate:modelValue"?: ((value: boolean | undefined) => any) | undefined;
|
|
10
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
11
|
+
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,11 @@
|
|
|
1
|
+
type __VLS_PublicProps = {
|
|
2
|
+
modelValue?: boolean;
|
|
3
|
+
};
|
|
4
|
+
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
5
|
+
refresh: (...args: any[]) => void;
|
|
6
|
+
"update:modelValue": (value: boolean | undefined) => void;
|
|
7
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
8
|
+
onRefresh?: ((...args: any[]) => any) | undefined;
|
|
9
|
+
"onUpdate:modelValue"?: ((value: boolean | undefined) => any) | undefined;
|
|
10
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
11
|
+
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,26 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
entityKey: {
|
|
3
|
+
type: ObjectConstructor;
|
|
4
|
+
default: () => void;
|
|
5
|
+
};
|
|
6
|
+
modelValue: {
|
|
7
|
+
type: import("vue").PropType<boolean>;
|
|
8
|
+
};
|
|
9
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
|
+
refresh: (...args: any[]) => void;
|
|
11
|
+
"update:modelValue": (value: boolean | undefined) => void;
|
|
12
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
13
|
+
entityKey: {
|
|
14
|
+
type: ObjectConstructor;
|
|
15
|
+
default: () => void;
|
|
16
|
+
};
|
|
17
|
+
modelValue: {
|
|
18
|
+
type: import("vue").PropType<boolean>;
|
|
19
|
+
};
|
|
20
|
+
}>> & Readonly<{
|
|
21
|
+
onRefresh?: ((...args: any[]) => any) | undefined;
|
|
22
|
+
"onUpdate:modelValue"?: ((value: boolean | undefined) => any) | undefined;
|
|
23
|
+
}>, {
|
|
24
|
+
entityKey: Record<string, any>;
|
|
25
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
26
|
+
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,33 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
govOrgId: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
reportsInfoEntityKey: {
|
|
7
|
+
type: ObjectConstructor;
|
|
8
|
+
default: () => void;
|
|
9
|
+
};
|
|
10
|
+
modelValue: {
|
|
11
|
+
type: import("vue").PropType<boolean>;
|
|
12
|
+
};
|
|
13
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
|
+
"update:modelValue": (value: boolean | undefined) => any;
|
|
15
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
16
|
+
govOrgId: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
reportsInfoEntityKey: {
|
|
21
|
+
type: ObjectConstructor;
|
|
22
|
+
default: () => void;
|
|
23
|
+
};
|
|
24
|
+
modelValue: {
|
|
25
|
+
type: import("vue").PropType<boolean>;
|
|
26
|
+
};
|
|
27
|
+
}>> & Readonly<{
|
|
28
|
+
"onUpdate:modelValue"?: ((value: boolean | undefined) => any) | undefined;
|
|
29
|
+
}>, {
|
|
30
|
+
govOrgId: string;
|
|
31
|
+
reportsInfoEntityKey: Record<string, any>;
|
|
32
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
33
|
+
export default _default;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
entityKey: {
|
|
3
|
+
type: ObjectConstructor;
|
|
4
|
+
default: () => void;
|
|
5
|
+
};
|
|
6
|
+
modelValue: {
|
|
7
|
+
type: import("vue").PropType<boolean>;
|
|
8
|
+
};
|
|
9
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
|
+
refresh: (...args: any[]) => void;
|
|
11
|
+
"update:modelValue": (value: boolean | undefined) => void;
|
|
12
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
13
|
+
entityKey: {
|
|
14
|
+
type: ObjectConstructor;
|
|
15
|
+
default: () => void;
|
|
16
|
+
};
|
|
17
|
+
modelValue: {
|
|
18
|
+
type: import("vue").PropType<boolean>;
|
|
19
|
+
};
|
|
20
|
+
}>> & Readonly<{
|
|
21
|
+
onRefresh?: ((...args: any[]) => any) | undefined;
|
|
22
|
+
"onUpdate:modelValue"?: ((value: boolean | undefined) => any) | undefined;
|
|
23
|
+
}>, {
|
|
24
|
+
entityKey: Record<string, any>;
|
|
25
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
26
|
+
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
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "sooyie-task",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"private": false,
|
|
5
|
+
"module": "dist/index.mjs",
|
|
6
|
+
"types": "dts/src/index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist",
|
|
9
|
+
"dts/src"
|
|
10
|
+
],
|
|
11
|
+
"peerDependencies": {
|
|
12
|
+
"axios": "^1.9.0",
|
|
13
|
+
"element-plus": "^2.9.10",
|
|
14
|
+
"pinia": "^2.3.1",
|
|
15
|
+
"vue": "^3.5.13",
|
|
16
|
+
"vue-i18n": "^9.14.4",
|
|
17
|
+
"vue-router": "^4.5.1",
|
|
18
|
+
"jmash-core": "^0.1.13",
|
|
19
|
+
"jmash-dict": "^0.1.4",
|
|
20
|
+
"jmash-rbac": "^0.1.21",
|
|
21
|
+
"xyvcard-reports": "^0.0.6",
|
|
22
|
+
"xyvcard-itsmsys": "^0.0.20",
|
|
23
|
+
"xyvcard-itsm": "^0.0.30"
|
|
24
|
+
},
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"@eslint/js": "^9.14.0",
|
|
27
|
+
"@tsconfig/node20": "^20.1.2",
|
|
28
|
+
"@types/node": "^20.11.10",
|
|
29
|
+
"@vitejs/plugin-vue": "^5.0.3",
|
|
30
|
+
"@vue/tsconfig": "^0.5.1",
|
|
31
|
+
"eslint": "^9.14.0",
|
|
32
|
+
"eslint-plugin-vue": "^9.30.0",
|
|
33
|
+
"globals": "^15.12.0",
|
|
34
|
+
"npm-run-all2": "^6.1.1",
|
|
35
|
+
"prettier": "^3.0.3",
|
|
36
|
+
"sass": "^1.72.0",
|
|
37
|
+
"typescript": "~5.3.0",
|
|
38
|
+
"typescript-eslint": "^8.13.0",
|
|
39
|
+
"unplugin-auto-import": "^0.17.5",
|
|
40
|
+
"unplugin-vue-components": "^0.26.0",
|
|
41
|
+
"vite": "^5.0.11",
|
|
42
|
+
"vue-tsc": "^2.1.10"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@element-plus/icons-vue": "^2.3.1",
|
|
46
|
+
"file-saver": "^2.0.5",
|
|
47
|
+
"nprogress": "^0.2.0",
|
|
48
|
+
"moment": "^2.30.1",
|
|
49
|
+
"@vueuse/core": "^10.9.0",
|
|
50
|
+
"qs": "^6.14.0"
|
|
51
|
+
},
|
|
52
|
+
"scripts": {
|
|
53
|
+
"dev": "vite --host",
|
|
54
|
+
"build": "vite build && pnpm build:dts",
|
|
55
|
+
"build:dts": "vue-tsc --declaration --emitDeclarationOnly",
|
|
56
|
+
"preview": "vite preview",
|
|
57
|
+
"build-only": "vite build",
|
|
58
|
+
"type-check": "vue-tsc --build --force",
|
|
59
|
+
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
|
|
60
|
+
"format": "prettier --write src/"
|
|
61
|
+
}
|
|
62
|
+
}
|