adtec-core-package 2.6.4 → 2.6.5
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/package.json
CHANGED
|
@@ -6,73 +6,78 @@
|
|
|
6
6
|
<div ref="taskFlexRef">
|
|
7
7
|
<el-flex align="center" justify="flex-end">
|
|
8
8
|
<slot name="left"></slot>
|
|
9
|
-
<el-button
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
9
|
+
<el-button
|
|
10
|
+
:loading="butLoading || taskLoading"
|
|
11
|
+
v-if="params?.cancelBtnText !== ''"
|
|
12
|
+
@click="params?.cancelFunction"
|
|
13
|
+
>{{ params?.cancelBtnText ?? '取消' }}
|
|
13
14
|
</el-button>
|
|
14
|
-
<el-button
|
|
15
|
-
|
|
15
|
+
<el-button
|
|
16
|
+
v-if="showProcessBtn && task?.procInsId"
|
|
17
|
+
type="info"
|
|
18
|
+
:loading="butLoading || taskLoading"
|
|
19
|
+
@click="processShow = true"
|
|
20
|
+
>
|
|
16
21
|
流程详情
|
|
17
22
|
</el-button>
|
|
18
23
|
<template v-if="isAssignee">
|
|
19
|
-
<el-button
|
|
24
|
+
<el-button
|
|
25
|
+
type="primary"
|
|
26
|
+
:loading="butLoading || taskLoading"
|
|
27
|
+
@click="openDialog('assignee')"
|
|
28
|
+
>指定执行人
|
|
20
29
|
</el-button>
|
|
21
30
|
</template>
|
|
22
31
|
<template v-if="!isAssignee && task?.taskId && task?.operations && showOperationsBtn">
|
|
23
|
-
<el-button
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
32
|
+
<el-button
|
|
33
|
+
:loading="butLoading || taskLoading"
|
|
34
|
+
v-if="params?.saveBtnText"
|
|
35
|
+
type="primary"
|
|
36
|
+
@click="params?.saveFunction"
|
|
37
|
+
>{{ params?.saveBtnText }}
|
|
27
38
|
</el-button>
|
|
28
39
|
<el-button
|
|
29
40
|
v-if="task?.operations.indexOf('addMulti') > -1"
|
|
30
41
|
type="warning"
|
|
31
42
|
:loading="butLoading || taskLoading"
|
|
32
43
|
@click="openDialog('addMulti')"
|
|
33
|
-
|
|
34
|
-
</el-button
|
|
35
|
-
>
|
|
44
|
+
>加签
|
|
45
|
+
</el-button>
|
|
36
46
|
<el-button
|
|
37
47
|
v-if="task?.operations.indexOf('minusMulti') > -1"
|
|
38
48
|
type="danger"
|
|
39
49
|
:loading="butLoading || taskLoading"
|
|
40
50
|
@click="openDialog('minusMulti')"
|
|
41
|
-
|
|
42
|
-
</el-button
|
|
43
|
-
>
|
|
51
|
+
>减签
|
|
52
|
+
</el-button>
|
|
44
53
|
<el-button
|
|
45
54
|
:loading="butLoading || taskLoading"
|
|
46
55
|
v-if="task?.operations.indexOf('refuse') > -1 && params?.refuseBtnText !== ''"
|
|
47
56
|
type="danger"
|
|
48
57
|
@click="openDialog('refuse')"
|
|
49
|
-
|
|
50
|
-
</el-button
|
|
51
|
-
>
|
|
58
|
+
>{{ params?.refuseBtnText ?? '终止' }}
|
|
59
|
+
</el-button>
|
|
52
60
|
<el-button
|
|
53
61
|
:loading="butLoading || taskLoading"
|
|
54
62
|
v-if="task?.operations.indexOf('transfer') > -1 && params?.transferBtnText !== ''"
|
|
55
63
|
type="warning"
|
|
56
64
|
@click="openDialog('transfer')"
|
|
57
|
-
|
|
58
|
-
</el-button
|
|
59
|
-
>
|
|
65
|
+
>{{ params?.transferBtnText ?? '转办' }}
|
|
66
|
+
</el-button>
|
|
60
67
|
<el-button
|
|
61
68
|
:loading="butLoading || taskLoading"
|
|
62
69
|
v-if="task?.operations.indexOf('back') > -1 && params?.backBtnText !== ''"
|
|
63
70
|
type="danger"
|
|
64
71
|
@click="openDialog('back')"
|
|
65
|
-
|
|
66
|
-
</el-button
|
|
67
|
-
>
|
|
72
|
+
>{{ params?.backBtnText ?? '退回' }}
|
|
73
|
+
</el-button>
|
|
68
74
|
<el-button
|
|
69
75
|
:loading="butLoading || taskLoading"
|
|
70
76
|
v-if="task?.operations.indexOf('complete') > -1 && params?.completeBtnText !== ''"
|
|
71
77
|
type="primary"
|
|
72
78
|
@click="openDialog('complete')"
|
|
73
|
-
|
|
74
|
-
</el-button
|
|
75
|
-
>
|
|
79
|
+
>{{ params?.completeBtnText ?? '同意' }}
|
|
80
|
+
</el-button>
|
|
76
81
|
</template>
|
|
77
82
|
<slot name="right"></slot>
|
|
78
83
|
<select-assignee-dialog
|
|
@@ -89,9 +94,7 @@
|
|
|
89
94
|
@success="operSuccess"
|
|
90
95
|
></check-dialog>
|
|
91
96
|
<add-or-minus-multi-dialog ref="addOrMinusMultiRef"></add-or-minus-multi-dialog>
|
|
92
|
-
<
|
|
93
|
-
<process-detail-dialog v-model="processShow" :task="task"></process-detail-dialog>
|
|
94
|
-
</Teleport>
|
|
97
|
+
<process-detail-dialog v-model="processShow" :task="task"></process-detail-dialog>
|
|
95
98
|
</el-flex>
|
|
96
99
|
</div>
|
|
97
100
|
</template>
|
|
@@ -162,7 +165,7 @@ const openDialog = async (type: string) => {
|
|
|
162
165
|
userId: userInfoStore().getUserInfo.id,
|
|
163
166
|
comment: '同意。',
|
|
164
167
|
procInsId: task.value.procInsId,
|
|
165
|
-
procDefKey: task.value.procDefKey
|
|
168
|
+
procDefKey: task.value.procDefKey,
|
|
166
169
|
})
|
|
167
170
|
if (res === false) return
|
|
168
171
|
if (res?.readonly) {
|
|
@@ -203,7 +206,7 @@ const operSuccess = (taskVo: IWfTaskVo) => {
|
|
|
203
206
|
// 向上定义递归查找函数
|
|
204
207
|
const findParentWithClass = (
|
|
205
208
|
element: HTMLElement | null,
|
|
206
|
-
targetClass: string
|
|
209
|
+
targetClass: string,
|
|
207
210
|
): HTMLElement | null => {
|
|
208
211
|
if (!element) {
|
|
209
212
|
return null
|