eoss-ui 0.7.58 → 0.7.59
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/lib/eoss-ui.common.js +278 -144
- package/lib/flow.js +201 -81
- package/lib/index.js +1 -1
- package/lib/main.js +39 -41
- package/lib/selector-panel.js +27 -11
- package/lib/theme-chalk/flow.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/package.json +1 -1
- package/packages/flow/src/component/Circulate.vue +3 -0
- package/packages/flow/src/component/CommonOpinions.vue +1 -0
- package/packages/flow/src/component/CustomPreset.vue +2 -0
- package/packages/flow/src/component/FreeCirculation.vue +3 -0
- package/packages/flow/src/component/Preset.vue +2 -0
- package/packages/flow/src/component/taskUnionExamine.vue +3 -0
- package/packages/flow/src/freeStartFlow.vue +7 -0
- package/packages/flow/src/main.vue +29 -3
- package/packages/flow/src/processForm.vue +5 -0
- package/packages/flow/src/reset.vue +5 -0
- package/packages/flow/src/selectUser.vue +5 -0
- package/packages/flow/src/startTaskRead.vue +2 -0
- package/packages/main/src/simplicity/index.vue +30 -29
- package/packages/selector-panel/src/main.vue +6 -0
- package/packages/selector-panel/src/selection.vue +6 -2
- package/packages/theme-chalk/lib/flow.css +1 -1
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/src/flow.scss +2 -2
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
:nextUser="infoList.nextCurrentOrgObj"
|
|
17
17
|
:multiple="newMultiple"
|
|
18
18
|
mix
|
|
19
|
+
:showTooltip="showTooltip"
|
|
19
20
|
@change="changeSelectUser($event, 'nextCurrentOrgObj')"
|
|
20
21
|
:types="['employee', 'persongroup']"
|
|
21
22
|
:params="params"
|
|
@@ -24,6 +25,7 @@
|
|
|
24
25
|
<el-form-item prop="nextOtherOrgObj" label="外单位">
|
|
25
26
|
<SelectUser
|
|
26
27
|
:nextUser="infoList.nextOtherOrgObj"
|
|
28
|
+
:showTooltip="showTooltip"
|
|
27
29
|
:multiple="newMultiple"
|
|
28
30
|
:where="{ filid: 'other',roleid :selectorParams.roleid }"
|
|
29
31
|
@change="changeSelectUser($event, 'nextOtherOrgObj')"
|
|
@@ -105,6 +107,7 @@ export default {
|
|
|
105
107
|
},
|
|
106
108
|
props: {
|
|
107
109
|
pendingId: { type: String, default: '' },
|
|
110
|
+
showTooltip: { type: Boolean, default: true },
|
|
108
111
|
processDefinitionId: { type: String, default: '' },
|
|
109
112
|
businessId: { type: String, default: '' },
|
|
110
113
|
type: { type: String, default: '' },
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
<SelectUser
|
|
23
23
|
ref="selectUser"
|
|
24
24
|
:showUser="true"
|
|
25
|
+
:showTooltip="showTooltip"
|
|
25
26
|
:nextUser="item.nextUser"
|
|
26
27
|
:radioList="item.radioList"
|
|
27
28
|
:multiple="item.multiple"
|
|
@@ -64,6 +65,7 @@ export default {
|
|
|
64
65
|
type: String,
|
|
65
66
|
default: ''
|
|
66
67
|
},
|
|
68
|
+
showTooltip: { type: Boolean, default: true },
|
|
67
69
|
customPresetHintMessage: {
|
|
68
70
|
type: String,
|
|
69
71
|
default: ''
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
:nextUser="nextCurrentOrgObjSelect"
|
|
13
13
|
multiple
|
|
14
14
|
mix
|
|
15
|
+
:showTooltip="showTooltip"
|
|
15
16
|
:disableds="currentOrgDisabledObjId"
|
|
16
17
|
@change="disposeAppUnit($event, 'nextCurrentOrgObjSelect')"
|
|
17
18
|
:types="currentOrgSelectorTabs"
|
|
@@ -23,6 +24,7 @@
|
|
|
23
24
|
:nextUser="nextOtherOrgObjSelect"
|
|
24
25
|
multiple
|
|
25
26
|
mix
|
|
27
|
+
:showTooltip="showTooltip"
|
|
26
28
|
:disableds="otherOrgDisabledObjId"
|
|
27
29
|
:where="{ filid: 'other',roleid :selectorParams.roleid }"
|
|
28
30
|
|
|
@@ -53,6 +55,7 @@ export default {
|
|
|
53
55
|
type: String,
|
|
54
56
|
default: 'left'
|
|
55
57
|
},
|
|
58
|
+
showTooltip: { type: Boolean, default: true },
|
|
56
59
|
selectorParams: { type: Object, default: () => {return {}} },
|
|
57
60
|
params: {
|
|
58
61
|
type: Object,
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
<SelectUser
|
|
20
20
|
ref="selectUser"
|
|
21
21
|
:showUser="true"
|
|
22
|
+
:showTooltip="showTooltip"
|
|
22
23
|
:nextUser="item.nextUser"
|
|
23
24
|
:radioList="item.radioList"
|
|
24
25
|
:multiple="item.multiple"
|
|
@@ -90,6 +91,7 @@ export default {
|
|
|
90
91
|
deep: true,
|
|
91
92
|
immediate: true
|
|
92
93
|
},
|
|
94
|
+
showTooltip: { type: Boolean, default: true },
|
|
93
95
|
parserActive: {
|
|
94
96
|
handler(val) {
|
|
95
97
|
if (val === '1') {
|
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
"
|
|
36
36
|
:multiple="newMultiple"
|
|
37
37
|
:selectorTags="4"
|
|
38
|
+
:showTooltip="showTooltip"
|
|
38
39
|
:mix="currentMix"
|
|
39
40
|
:isUnionSeal="type == 'unionSeal'"
|
|
40
41
|
:selectUserList="unionSealData || []"
|
|
@@ -69,6 +70,7 @@
|
|
|
69
70
|
<SelectUser
|
|
70
71
|
:nextUser="infoList.nextOtherOrgObj"
|
|
71
72
|
:where="{ filid: 'other', roleid: selectorParams.roleid }"
|
|
73
|
+
:showTooltip="showTooltip"
|
|
72
74
|
:multiple="newMultiple"
|
|
73
75
|
@change="changeSelectUser($event, 'nextOtherOrgObj')"
|
|
74
76
|
:mix="otherMix"
|
|
@@ -199,6 +201,7 @@ export default {
|
|
|
199
201
|
},
|
|
200
202
|
props: {
|
|
201
203
|
pendingId: { type: String, default: '' },
|
|
204
|
+
showTooltip: { type: Boolean, default: true },
|
|
202
205
|
type: { type: String, default: '' },
|
|
203
206
|
defaultOpinion: { type: String, default: '' },
|
|
204
207
|
oldOption: { type: String, default: '' },
|
|
@@ -122,6 +122,7 @@
|
|
|
122
122
|
<SelectUser
|
|
123
123
|
:nextUser="nextNode.addSignUserId"
|
|
124
124
|
:multiple="true"
|
|
125
|
+
:showTooltip="showTooltip"
|
|
125
126
|
title="增加办理人"
|
|
126
127
|
@change="changeSelectUser($event, 'addSignUserId', true)"
|
|
127
128
|
/>
|
|
@@ -259,6 +260,7 @@
|
|
|
259
260
|
"
|
|
260
261
|
:radioList="radioList"
|
|
261
262
|
:multiple="multiple"
|
|
263
|
+
:showTooltip="showTooltip"
|
|
262
264
|
:isCustomUser="!isShowNextUser ? 1 : isCustomUser"
|
|
263
265
|
:isCurrentNodeForbiddenChangeCandidate="
|
|
264
266
|
isCurrentNodeForbiddenChangeCandidate
|
|
@@ -288,6 +290,7 @@
|
|
|
288
290
|
:nextUser="nextCurrentOrgObjSelect"
|
|
289
291
|
multiple
|
|
290
292
|
mix
|
|
293
|
+
:showTooltip="showTooltip"
|
|
291
294
|
:disableds="currentOrgDisabledObjId"
|
|
292
295
|
@change="disposeAppUnit($event, 'nextCurrentOrgObjSelect')"
|
|
293
296
|
:types="['department', 'employee']"
|
|
@@ -304,6 +307,7 @@
|
|
|
304
307
|
multiple
|
|
305
308
|
mix
|
|
306
309
|
:where="{ filid: 'other',roleid:selectorParams.roleid }"
|
|
310
|
+
:showTooltip="showTooltip"
|
|
307
311
|
:disableds="otherOrgDisabledObjId"
|
|
308
312
|
@change="disposeAppUnit($event, 'nextOtherOrgObjSelect')"
|
|
309
313
|
:types="['enterprise']"
|
|
@@ -344,6 +348,7 @@
|
|
|
344
348
|
:nextUser="nextNode.nextReadUserId"
|
|
345
349
|
:multiple="true"
|
|
346
350
|
:selectUserList="selectReadUserList"
|
|
351
|
+
:showTooltip="showTooltip"
|
|
347
352
|
:options="userOptions"
|
|
348
353
|
title="分阅用户"
|
|
349
354
|
:mix="true"
|
|
@@ -364,6 +369,7 @@
|
|
|
364
369
|
:multiple="true"
|
|
365
370
|
:selectUserList="selectPresetUserList"
|
|
366
371
|
:options="presetOptions"
|
|
372
|
+
:showTooltip="showTooltip"
|
|
367
373
|
:radioList="presetReadUserId"
|
|
368
374
|
:presetEdit="1"
|
|
369
375
|
title="分阅用户"
|
|
@@ -799,6 +805,7 @@ export default {
|
|
|
799
805
|
},
|
|
800
806
|
props: {
|
|
801
807
|
isStartFlow: { type: Boolean, default: false },
|
|
808
|
+
showTooltip: { type: Boolean, default: true },
|
|
802
809
|
startFlowBusinessId: { type: String, default: '' },
|
|
803
810
|
pendingId: { type: String, default: '' },
|
|
804
811
|
useScene: { type: String, default: '' },
|
|
@@ -84,6 +84,7 @@
|
|
|
84
84
|
style="margin-top: 10px"
|
|
85
85
|
:businessId="businessIds"
|
|
86
86
|
:label-position="formLabelPosition"
|
|
87
|
+
:showTooltip="showTooltip"
|
|
87
88
|
ref="circulate"
|
|
88
89
|
:selectorParams="selectorParams"
|
|
89
90
|
:pending-id="pendingId"
|
|
@@ -111,6 +112,7 @@
|
|
|
111
112
|
v-else-if="typeCode == 'read'"
|
|
112
113
|
:pending-id="pendingId"
|
|
113
114
|
:opinion="value"
|
|
115
|
+
:showTooltip="showTooltip"
|
|
114
116
|
type="create"
|
|
115
117
|
:simpleTips="simpleTips"
|
|
116
118
|
:key="StartTaskReadKey"
|
|
@@ -129,6 +131,7 @@
|
|
|
129
131
|
:appId="resetAppId"
|
|
130
132
|
:params="param"
|
|
131
133
|
:showOther="showOther"
|
|
134
|
+
:showTooltip="showTooltip"
|
|
132
135
|
:selectorParams="selectorParams"
|
|
133
136
|
:formLabelPosition="formLabelPosition"
|
|
134
137
|
:simpleTips="simpleTips"
|
|
@@ -136,6 +139,7 @@
|
|
|
136
139
|
<Supervise
|
|
137
140
|
:businessId="businessId"
|
|
138
141
|
:appId="resetAppId"
|
|
142
|
+
:showTooltip="showTooltip"
|
|
139
143
|
:simpleTips="simpleTips"
|
|
140
144
|
@cancel="closeProcess($event)"
|
|
141
145
|
v-else-if="typeCode == 'supervise'"
|
|
@@ -211,6 +215,7 @@
|
|
|
211
215
|
:nextUser="nextCurrentOrgObjSelect"
|
|
212
216
|
multiple
|
|
213
217
|
mix
|
|
218
|
+
:showTooltip="showTooltip"
|
|
214
219
|
:disableds="currentOrgDisabledObjId"
|
|
215
220
|
@change="disposeAppUnit($event, 'nextCurrentOrgObjSelect')"
|
|
216
221
|
:types="currentOrgSelectorTabs"
|
|
@@ -224,6 +229,7 @@
|
|
|
224
229
|
<SelectUser
|
|
225
230
|
:nextUser="nextOtherOrgObjSelect"
|
|
226
231
|
multiple
|
|
232
|
+
:showTooltip="showTooltip"
|
|
227
233
|
mix
|
|
228
234
|
:disableds="otherOrgDisabledObjId"
|
|
229
235
|
:where="{ filid: 'other' }"
|
|
@@ -321,6 +327,7 @@
|
|
|
321
327
|
:nextUser="nextNode.addSignUserId"
|
|
322
328
|
:multiple="true"
|
|
323
329
|
title="增加办理人"
|
|
330
|
+
:showTooltip="showTooltip"
|
|
324
331
|
@change="changeSelectUser($event, 'addSignUserId', true)"
|
|
325
332
|
/>
|
|
326
333
|
</el-form-item>
|
|
@@ -467,6 +474,7 @@
|
|
|
467
474
|
:radioList="radioList"
|
|
468
475
|
:multiple="multiple"
|
|
469
476
|
:isCustomUser="!isShowNextUser ? 1 : isCustomUser"
|
|
477
|
+
:showTooltip="showTooltip"
|
|
470
478
|
:isCurrentNodeForbiddenChangeCandidate="
|
|
471
479
|
isCurrentNodeForbiddenChangeCandidate
|
|
472
480
|
"
|
|
@@ -498,6 +506,7 @@
|
|
|
498
506
|
mix
|
|
499
507
|
:disableds="currentOrgDisabledObjId"
|
|
500
508
|
@change="disposeAppUnit($event, 'nextCurrentOrgObjSelect')"
|
|
509
|
+
:showTooltip="showTooltip"
|
|
501
510
|
:types="currentOrgSelectorTabs"
|
|
502
511
|
:params="currentOrgSelectorParams"
|
|
503
512
|
/>
|
|
@@ -510,6 +519,7 @@
|
|
|
510
519
|
<SelectUser
|
|
511
520
|
:nextUser="nextOtherOrgObjSelect"
|
|
512
521
|
multiple
|
|
522
|
+
:showTooltip="showTooltip"
|
|
513
523
|
mix
|
|
514
524
|
:where="{ filid: 'other' }"
|
|
515
525
|
:disableds="otherOrgDisabledObjId"
|
|
@@ -552,6 +562,7 @@
|
|
|
552
562
|
:multiple="true"
|
|
553
563
|
:selectUserList="selectReadUserList"
|
|
554
564
|
:options="userOptions"
|
|
565
|
+
:showTooltip="showTooltip"
|
|
555
566
|
title="分阅用户"
|
|
556
567
|
:mix="true"
|
|
557
568
|
:types="types"
|
|
@@ -570,6 +581,7 @@
|
|
|
570
581
|
:nextUser="nextNode.presetReadUserId"
|
|
571
582
|
:multiple="true"
|
|
572
583
|
:selectUserList="selectPresetUserList"
|
|
584
|
+
:showTooltip="showTooltip"
|
|
573
585
|
:options="presetOptions"
|
|
574
586
|
:radioList="presetReadUserId"
|
|
575
587
|
:presetEdit="1"
|
|
@@ -663,6 +675,7 @@
|
|
|
663
675
|
"
|
|
664
676
|
@changeActiveNames="(val) => (activeNames = val)"
|
|
665
677
|
@loadingEnd="customLoading('end')"
|
|
678
|
+
:showTooltip="showTooltip"
|
|
666
679
|
@loadingStart="customLoading('start')"
|
|
667
680
|
:nextNode="nextNode.nextNodeId"
|
|
668
681
|
:customPresetHintMessage="customPresetHintMessage"
|
|
@@ -679,6 +692,7 @@
|
|
|
679
692
|
@loadingEnd="customLoading('end')"
|
|
680
693
|
@loadingStart="customLoading('start')"
|
|
681
694
|
:nodeId="nextNode.nextNodeId"
|
|
695
|
+
:showTooltip="showTooltip"
|
|
682
696
|
:businessId="businessIds"
|
|
683
697
|
:customPresetHintMessage="customPresetHintMessage"
|
|
684
698
|
:processDefinitionId="nodeInfo.nextNode"
|
|
@@ -696,6 +710,7 @@
|
|
|
696
710
|
ref="processFormIndex"
|
|
697
711
|
:id="freeStartFlowParams.startFlowBusinessId || businessIds"
|
|
698
712
|
:simpleTips="simpleTips"
|
|
713
|
+
:showTooltip="showTooltip"
|
|
699
714
|
:is-free-start-flow="
|
|
700
715
|
freeStartFlowParams.useScene === 'multiInsMidwayWithSubmitScene'
|
|
701
716
|
"
|
|
@@ -722,6 +737,7 @@
|
|
|
722
737
|
directCreateCircularReadWhenFlowStarted
|
|
723
738
|
"
|
|
724
739
|
ref="flowCirculate"
|
|
740
|
+
:showTooltip="showTooltip"
|
|
725
741
|
:label-position="formLabelPosition"
|
|
726
742
|
:businessId="businessId"
|
|
727
743
|
:startFlowPageEmbeddedIntoStartFlowIndex="
|
|
@@ -973,6 +989,7 @@
|
|
|
973
989
|
<circulate
|
|
974
990
|
:businessId="businessId"
|
|
975
991
|
:processDefinitionId="nodeInfo.nextNode"
|
|
992
|
+
:showTooltip="showTooltip"
|
|
976
993
|
:simpleTips="simpleTips"
|
|
977
994
|
:selectorParams="selectorParams"
|
|
978
995
|
:oldOption="value"
|
|
@@ -993,6 +1010,7 @@
|
|
|
993
1010
|
<ProcessForm
|
|
994
1011
|
:id="freeStartFlowParams.startFlowBusinessId || businessIds"
|
|
995
1012
|
:pending-id="pendingId"
|
|
1013
|
+
:showTooltip="showTooltip"
|
|
996
1014
|
:simpleTips="simpleTips"
|
|
997
1015
|
:is-free-start-flow="
|
|
998
1016
|
freeStartFlowParams.useScene === 'multiInsMidwayWithSubmitScene'
|
|
@@ -1035,6 +1053,7 @@
|
|
|
1035
1053
|
<ProcessReject
|
|
1036
1054
|
:pending-id="pendingId"
|
|
1037
1055
|
:option="value"
|
|
1056
|
+
:showTooltip="showTooltip"
|
|
1038
1057
|
:simpleTips="simpleTips"
|
|
1039
1058
|
:show-reject="showReject"
|
|
1040
1059
|
:news-info="nextNode.notificationMsg"
|
|
@@ -1055,6 +1074,7 @@
|
|
|
1055
1074
|
:pending-id="pendingId"
|
|
1056
1075
|
:opinion="value"
|
|
1057
1076
|
:type="taskReadType"
|
|
1077
|
+
:showTooltip="showTooltip"
|
|
1058
1078
|
:selectorConfig="selectorConfig"
|
|
1059
1079
|
:simpleTips="simpleTips"
|
|
1060
1080
|
:subParams="subParams"
|
|
@@ -1091,6 +1111,7 @@
|
|
|
1091
1111
|
@cancel="closeProcess($event, 'showSendMsg')"
|
|
1092
1112
|
:simpleTips="simpleTips"
|
|
1093
1113
|
:pendingId="pendingId"
|
|
1114
|
+
:showTooltip="showTooltip"
|
|
1094
1115
|
:newsList="newsList"
|
|
1095
1116
|
/>
|
|
1096
1117
|
</es-dialog>
|
|
@@ -1107,6 +1128,7 @@
|
|
|
1107
1128
|
<TaskUnionExamine
|
|
1108
1129
|
@cancel="closeProcess($event, 'showTaskUnionExamine')"
|
|
1109
1130
|
:simpleTips="simpleTips"
|
|
1131
|
+
:showTooltip="showTooltip"
|
|
1110
1132
|
:pendingId="pendingId"
|
|
1111
1133
|
:defaultOpinion="nodeDefaultSubmitOpinion"
|
|
1112
1134
|
:oldOption="value"
|
|
@@ -1205,6 +1227,7 @@ export default {
|
|
|
1205
1227
|
},
|
|
1206
1228
|
props: {
|
|
1207
1229
|
showShrink: { type: Boolean, default: true },
|
|
1230
|
+
showTooltip: { type: Boolean, default: true },
|
|
1208
1231
|
isStartFlow: { type: Boolean, default: false },
|
|
1209
1232
|
businessId: { type: String, default: '' },
|
|
1210
1233
|
pendingId: { type: String, default: '' },
|
|
@@ -3054,10 +3077,13 @@ export default {
|
|
|
3054
3077
|
filid:
|
|
3055
3078
|
foreignOrgparams[i] == 'my'
|
|
3056
3079
|
? choiceOrgId
|
|
3057
|
-
: foreignOrgparams[i],
|
|
3058
|
-
nofilid: foreignOrgparams[i] == 'other' ? 1 : 0,
|
|
3059
|
-
roleid:this.circularReadParamsMap.circularReadOrgRoleCode || this.foreignOrgSelectorParams.roleid
|
|
3080
|
+
: foreignOrgparams[i] == 'nofilidorg' || foreignOrgparams[i] == 'nofiliddept' ? '' : foreignOrgparams[i],
|
|
3081
|
+
nofilid:foreignOrgparams[i] == 'nofilidorg'? sessionStorage.getItem('orgId') :foreignOrgparams[i] == 'nofiliddept'? sessionStorage.getItem('depId') : foreignOrgparams[i] == 'other' ? 1 : 0,
|
|
3082
|
+
roleid:this.circularReadParamsMap.circularReadOrgRoleCode || this.foreignOrgSelectorParams.roleid,
|
|
3060
3083
|
};
|
|
3084
|
+
if(( foreignOrgparams[i] == 'nofilidorg' || foreignOrgparams[i] == 'nofiliddept') && x != "filgroup"){
|
|
3085
|
+
this.foreignOrgSelectorParams[x].id= `${foreignOrgparams[i] != 'nofilidorg' ? sessionStorage.getItem('orgId')+'-org-0' : sessionStorage.getItem('depId')+'-dep-0'}`
|
|
3086
|
+
}
|
|
3061
3087
|
});
|
|
3062
3088
|
}
|
|
3063
3089
|
this.circularReadParamsMap = circularReadParamsMap || {};
|
|
@@ -125,6 +125,7 @@
|
|
|
125
125
|
:nextUser="nextNode.nextUser"
|
|
126
126
|
:radioList="radioList"
|
|
127
127
|
:multiple="multiple"
|
|
128
|
+
:showTooltip="showTooltip"
|
|
128
129
|
:isCustomUser="isCustomUser"
|
|
129
130
|
:options="options"
|
|
130
131
|
:presetEdit="presetEdit"
|
|
@@ -144,6 +145,7 @@
|
|
|
144
145
|
:radioList="radioList"
|
|
145
146
|
:multiple="multiple"
|
|
146
147
|
:isCustomUser="!isShowNextUser ? 1 : isCustomUser"
|
|
148
|
+
:showTooltip="showTooltip"
|
|
147
149
|
:isCurrentNodeForbiddenChangeCandidate="isCurrentNodeForbiddenChangeCandidate"
|
|
148
150
|
:options="options"
|
|
149
151
|
:presetEdit="presetEdit"
|
|
@@ -178,6 +180,7 @@
|
|
|
178
180
|
:nextUser="nextNode.nextReadUserId"
|
|
179
181
|
:multiple="true"
|
|
180
182
|
:selectUserList="selectReadUserList"
|
|
183
|
+
:showTooltip="showTooltip"
|
|
181
184
|
:options="userOptions"
|
|
182
185
|
title="分阅用户"
|
|
183
186
|
:mix="true"
|
|
@@ -197,6 +200,7 @@
|
|
|
197
200
|
:nextUser="nextNode.presetReadUserId"
|
|
198
201
|
:multiple="true"
|
|
199
202
|
:selectUserList="selectPresetUserList"
|
|
203
|
+
:showTooltip="showTooltip"
|
|
200
204
|
:options="presetOptions"
|
|
201
205
|
title="分阅用户"
|
|
202
206
|
:radioList="presetReadUserId"
|
|
@@ -413,6 +417,7 @@ export default {
|
|
|
413
417
|
type: String,
|
|
414
418
|
default: ''
|
|
415
419
|
},
|
|
420
|
+
showTooltip: { type: Boolean, default: true },
|
|
416
421
|
copyHistory: {
|
|
417
422
|
type: String,
|
|
418
423
|
default: ''
|
|
@@ -69,6 +69,7 @@
|
|
|
69
69
|
:nextUser="nextNode.nextRoleId"
|
|
70
70
|
:radioList="radioList"
|
|
71
71
|
:multiple="multiple"
|
|
72
|
+
:showTooltip="showTooltip"
|
|
72
73
|
:isCustomUser="isCustomUser"
|
|
73
74
|
:options="options"
|
|
74
75
|
:presetEdit="presetEdit"
|
|
@@ -93,6 +94,7 @@
|
|
|
93
94
|
:nextUser="isShowNextUser ? nextNode.nextUser : nextNode.nextOrgId"
|
|
94
95
|
:radioList="radioList"
|
|
95
96
|
:multiple="multiple"
|
|
97
|
+
:showTooltip="showTooltip"
|
|
96
98
|
:isCustomUser="!isShowNextUser ? 1 : isCustomUser"
|
|
97
99
|
:options="options"
|
|
98
100
|
:presetEdit="presetEdit"
|
|
@@ -127,6 +129,7 @@
|
|
|
127
129
|
:nextUser="nextNode.nextReadUserId"
|
|
128
130
|
:multiple="true"
|
|
129
131
|
:selectUserList="selectReadUserList"
|
|
132
|
+
:showTooltip="showTooltip"
|
|
130
133
|
:options="userOptions"
|
|
131
134
|
title="分阅用户"
|
|
132
135
|
:mix="true"
|
|
@@ -147,6 +150,7 @@
|
|
|
147
150
|
:multiple="true"
|
|
148
151
|
:selectUserList="selectPresetUserList"
|
|
149
152
|
:options="presetOptions"
|
|
153
|
+
:showTooltip="showTooltip"
|
|
150
154
|
title="分阅用户"
|
|
151
155
|
:radioList="presetReadUserId"
|
|
152
156
|
:presetEdit="1"
|
|
@@ -262,6 +266,7 @@ export default {
|
|
|
262
266
|
type: Object,
|
|
263
267
|
default: () => {}
|
|
264
268
|
},
|
|
269
|
+
showTooltip: { type: Boolean, default: true },
|
|
265
270
|
subParams: {
|
|
266
271
|
type: Object,
|
|
267
272
|
default: () => {}
|
|
@@ -83,6 +83,7 @@
|
|
|
83
83
|
:where="{ ...newWhere, info: classify ? '' : 'no' }"
|
|
84
84
|
:multiple="newMultiple"
|
|
85
85
|
@cancel="cancelSelectUser"
|
|
86
|
+
:showTooltip="showTooltip"
|
|
86
87
|
@change="getSelectUser"
|
|
87
88
|
:param="{ ...newParams, info: classify ? '' : 'no' }"
|
|
88
89
|
:disableds="disableds"
|
|
@@ -109,6 +110,10 @@ export default {
|
|
|
109
110
|
tabs: {
|
|
110
111
|
type: Object
|
|
111
112
|
},
|
|
113
|
+
showTooltip:{
|
|
114
|
+
type: Boolean,
|
|
115
|
+
default: true
|
|
116
|
+
},
|
|
112
117
|
isUnionSeal: {
|
|
113
118
|
type: Boolean,
|
|
114
119
|
default: false
|
|
@@ -51,6 +51,7 @@
|
|
|
51
51
|
:multiple="type != 'transfer' ? multiple : false"
|
|
52
52
|
:mix="type != 'transfer'"
|
|
53
53
|
:selectUserList="selectUserList"
|
|
54
|
+
:showTooltip="showTooltip"
|
|
54
55
|
:disableds="readDisableds"
|
|
55
56
|
:types="
|
|
56
57
|
selectorTabs
|
|
@@ -190,6 +191,7 @@ export default {
|
|
|
190
191
|
props: {
|
|
191
192
|
pendingId: { type: String, default: '' },
|
|
192
193
|
simpleTips: { type: Boolean, default: true },
|
|
194
|
+
showTooltip: { type: Boolean, default: true },
|
|
193
195
|
newsInfo: { type: String, default: '' },
|
|
194
196
|
type: { type: String, default: '' },
|
|
195
197
|
option: { type: String, default: '' },
|
|
@@ -1451,39 +1451,40 @@ export default {
|
|
|
1451
1451
|
return false;
|
|
1452
1452
|
}
|
|
1453
1453
|
if (Array.isArray(obj)) {
|
|
1454
|
+
let num = 0;
|
|
1454
1455
|
obj.forEach((item) => {
|
|
1455
1456
|
let n = this.setTips(item);
|
|
1456
|
-
|
|
1457
|
-
this.$set(obj, 'tips',
|
|
1458
|
-
this.setDot(this.userApps, item.appCode,
|
|
1459
|
-
this.setDot(this.applications, item.appCode,
|
|
1460
|
-
this.setDot(this.business, item.appCode,
|
|
1461
|
-
this.setDot(this.systems, item.appCode,
|
|
1457
|
+
num += n ? parseInt(n) : 0;
|
|
1458
|
+
this.$set(obj, 'tips', num);
|
|
1459
|
+
this.setDot(this.userApps, item.appCode, num);
|
|
1460
|
+
this.setDot(this.applications, item.appCode, num);
|
|
1461
|
+
this.setDot(this.business, item.appCode, num);
|
|
1462
|
+
this.setDot(this.systems, item.appCode, num);
|
|
1462
1463
|
});
|
|
1463
1464
|
} else {
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
obj.
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
}
|
|
1481
|
-
this.$set(obj, 'tips',
|
|
1482
|
-
this.setDot(this.userApps, obj.appCode,
|
|
1483
|
-
this.setDot(this.applications, obj.appCode,
|
|
1484
|
-
this.setDot(this.business, obj.appCode,
|
|
1485
|
-
this.setDot(this.systems, obj.appCode,
|
|
1486
|
-
return
|
|
1465
|
+
if (
|
|
1466
|
+
(obj.children && obj.children.length) ||
|
|
1467
|
+
(obj.fourthTabs && obj.fourthTabs.length)
|
|
1468
|
+
) {
|
|
1469
|
+
let num = 0;
|
|
1470
|
+
if (obj.children && obj.children.length) {
|
|
1471
|
+
obj.children.forEach((item) => {
|
|
1472
|
+
let n = this.setTips(item);
|
|
1473
|
+
num += n ? parseInt(n) : 0;
|
|
1474
|
+
});
|
|
1475
|
+
}
|
|
1476
|
+
if (obj.fourthTabs && obj.fourthTabs.length) {
|
|
1477
|
+
obj.fourthTabs.forEach((item) => {
|
|
1478
|
+
let n = this.setTips(item);
|
|
1479
|
+
num += n ? parseInt(n) : 0;
|
|
1480
|
+
});
|
|
1481
|
+
}
|
|
1482
|
+
this.$set(obj, 'tips', num);
|
|
1483
|
+
this.setDot(this.userApps, obj.appCode, num);
|
|
1484
|
+
this.setDot(this.applications, obj.appCode, num);
|
|
1485
|
+
this.setDot(this.business, obj.appCode, num);
|
|
1486
|
+
this.setDot(this.systems, obj.appCode, num);
|
|
1487
|
+
return num;
|
|
1487
1488
|
} else {
|
|
1488
1489
|
let num =
|
|
1489
1490
|
this.menuTips[obj.id] ||
|
|
@@ -81,6 +81,7 @@
|
|
|
81
81
|
:label-key="labelKey"
|
|
82
82
|
:multiple="mix ? mix : multiple"
|
|
83
83
|
:max="max"
|
|
84
|
+
:showTooltip="showTooltip"
|
|
84
85
|
:showDisabled="showDisabled"
|
|
85
86
|
:disableds="disableds"
|
|
86
87
|
></selection>
|
|
@@ -90,6 +91,7 @@
|
|
|
90
91
|
:data="Array.isArray(checkeds) ? checkeds : [checkeds]"
|
|
91
92
|
:value-key="valueKey"
|
|
92
93
|
:label-key="labelKey"
|
|
94
|
+
:showTooltip="showTooltip"
|
|
93
95
|
:multiple="multiple"
|
|
94
96
|
:max="max"
|
|
95
97
|
:mix="mix"
|
|
@@ -162,6 +164,10 @@ export default {
|
|
|
162
164
|
type: Boolean,
|
|
163
165
|
default: false
|
|
164
166
|
},
|
|
167
|
+
showTooltip: {
|
|
168
|
+
type: Boolean,
|
|
169
|
+
default: true
|
|
170
|
+
},
|
|
165
171
|
//页签
|
|
166
172
|
tabs: Object,
|
|
167
173
|
filtrate: {
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
:disabled="isDisabled(item)"
|
|
18
18
|
:class="{ 'es-radio-delete': genre === 'delete' }"
|
|
19
19
|
:value-key="valueKey"
|
|
20
|
-
:tooltip="item[tipKey]"
|
|
20
|
+
:tooltip="showTooltip ? item[tipKey] : undefined"
|
|
21
21
|
>
|
|
22
22
|
{{ typeof item == 'string' ? item : getLabel(item) }}</el-radio
|
|
23
23
|
>
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
:disabled="isDisabled(item)"
|
|
41
41
|
:class="{ 'es-checkbox-delete': genre === 'delete' }"
|
|
42
42
|
:value-key="valueKey"
|
|
43
|
-
:tooltip="item[tipKey]"
|
|
43
|
+
:tooltip="showTooltip ? item[tipKey] : undefined"
|
|
44
44
|
>
|
|
45
45
|
{{ typeof item == 'string' ? item : getLabel(item) }}
|
|
46
46
|
<i v-show="genre === 'delete'" class="el-icon-circle-close"></i>
|
|
@@ -73,6 +73,10 @@ export default {
|
|
|
73
73
|
type: String,
|
|
74
74
|
default: 'pathname'
|
|
75
75
|
},
|
|
76
|
+
showTooltip: {
|
|
77
|
+
type: Boolean,
|
|
78
|
+
default: true
|
|
79
|
+
},
|
|
76
80
|
valueType: {
|
|
77
81
|
type: String,
|
|
78
82
|
default: 'object',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@charset "UTF-8";.commonOpinion-set,.es-fenyue-buttons,.es-flow-content,.es-reset-flow{-webkit-box-direction:normal}.es-common-opinions,.es-fenyue-buttons,.es-flow-buttons,.es-flow-title,.es-opinion{padding:0 12px}.es-fenyue-buttons{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-ms-flex-direction:row;flex-direction:row}.es-fenyue-buttons-yj{-webkit-box-flex:1;-ms-flex:1;flex:1}.es-user-defined{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.es-user-defined .el-button--primary{-webkit-box-flex:1;-ms-flex:1;flex:1}.required .el-textarea__inner::-webkit-input-placeholder{color:red}.required .el-textarea__inner::-moz-placeholder{color:red}.required .el-textarea__inner:-ms-input-placeholder{color:red}.required .el-textarea__inner::-ms-input-placeholder{color:red}.required .el-textarea__inner::placeholder{color:red}.no-checked .el-checkbox__input{display:none!important}.es-reset-flow{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;height:100%}.es-reset-flow-form-box{-webkit-box-flex:1;-ms-flex:1;flex:1;overflow-y:auto;margin-bottom:10px}.es-flow-content{height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;padding-bottom:12px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;position:relative}.es-flow-index{height:100%}.es-flow-index .em-flow-more-btn{display:block;width:100%}.es-flow-index .el-checkbox-group{display:contents}.es-flow-index .es-eidt-title{font-size:13px;color:#333;line-height:20px}.es-flow-index .es-flow-top .es-flow-title{height:40px;line-height:40px}.es-flow-index .es-flow-top .es-flow-title .es-icon{position:absolute;right:8px;top:4px}.es-flow-index .es-flow-top .es-opinion{display:-webkit-box;display:-ms-flexbox;display:flex;margin:8px 0;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.es-flow-index .es-flow-top .es-opinion .es-opinion-file{cursor:pointer;position:relative}.es-flow-index .es-flow-top .es-opinion .es-opinion-file .es-file-num{color:red}.es-flow-index .es-button-agree{width:calc(43% - 15px)}.es-flow-index .es-button-agree-save{margin-top:10px}.commonOpinion-set{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;height:100%}.commonOpinion-set .el-table__body-wrapper{-webkit-box-flex:1;-ms-flex:1;flex:1}.es-flow-index-shrink{width:24px}.es-flow-index-shrink img{cursor:pointer;width:24px;height:24px}.es-flow-btn:hover{background-color:#f5f5f5;color:#1890ff}.es-flow-btn:hover ::v-deep .el-popover{padding:12px 0!important}.es-flow-form .el-checkbox-group{display:contents}.es-flow-index .el-input-group--prepend>.el-input__inner,.es-flow-index .select-process>.el-input__inner{display:none!important}.es-flow-form .el-textarea:first-child,.es-flow-index .el-textarea{width:100%;margin-bottom:10px!important}.es-flow-form .es-opinions .el-select,.es-flow-index .el-select{width:calc(100% + 40px)!important}.es-flow-index .el-select .el-input{width:100%;height:40px}.es-flow-index .process .el-select{width:calc(100% + 40px)!important}.es-flow-index .input-with-select .el-input-group__prepend{background-color:#fff;width:100%}.es-flow-index .select-process .el-input-group__append{height:40px}.es-flow-index .hide-flow-char .el-input-group__append{padding:0}.es-flow-index button.el-button.sub.el-button--primary.el-button--medium{width:calc(100% - 85px)}.es-flow-index .el-input-group--prepend>.el-input-group__append{height:40px}.es-flow-index .demo-dynamic .el-select{width:100%!important}.es-flow-index .demo-dynamic .select-process .el-select,.es-flow-index .demo-dynamic .selectUser,.es-flow-index.task-union-examine .el-select{width:calc(100% + 40px)!important}.es-flow-index .el-input.el-input-group.el-input-group--append.el-input-group--prepend{margin:0!important}.es-flow-index .demo-dynamic{-webkit-box-flex:1;-ms-flex:1;flex:1;
|
|
1
|
+
@charset "UTF-8";.commonOpinion-set,.es-fenyue-buttons,.es-flow-content,.es-reset-flow{-webkit-box-direction:normal}.es-common-opinions,.es-fenyue-buttons,.es-flow-buttons,.es-flow-title,.es-opinion{padding:0 12px}.es-fenyue-buttons{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-ms-flex-direction:row;flex-direction:row}.es-fenyue-buttons-yj{-webkit-box-flex:1;-ms-flex:1;flex:1}.es-user-defined{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.es-user-defined .el-button--primary{-webkit-box-flex:1;-ms-flex:1;flex:1}.required .el-textarea__inner::-webkit-input-placeholder{color:red}.required .el-textarea__inner::-moz-placeholder{color:red}.required .el-textarea__inner:-ms-input-placeholder{color:red}.required .el-textarea__inner::-ms-input-placeholder{color:red}.required .el-textarea__inner::placeholder{color:red}.no-checked .el-checkbox__input{display:none!important}.es-reset-flow{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;height:100%}.es-reset-flow-form-box{-webkit-box-flex:1;-ms-flex:1;flex:1;overflow-y:auto;margin-bottom:10px}.es-flow-content{height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;padding-bottom:12px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;position:relative}.es-flow-index{height:100%}.es-flow-index .em-flow-more-btn{display:block;width:100%}.es-flow-index .el-checkbox-group{display:contents}.es-flow-index .es-eidt-title{font-size:13px;color:#333;line-height:20px}.es-flow-index .es-flow-top .es-flow-title{height:40px;line-height:40px}.es-flow-index .es-flow-top .es-flow-title .es-icon{position:absolute;right:8px;top:4px}.es-flow-index .es-flow-top .es-opinion{display:-webkit-box;display:-ms-flexbox;display:flex;margin:8px 0;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.es-flow-index .es-flow-top .es-opinion .es-opinion-file{cursor:pointer;position:relative}.es-flow-index .es-flow-top .es-opinion .es-opinion-file .es-file-num{color:red}.es-flow-index .es-button-agree{width:calc(43% - 15px)}.es-flow-index .es-button-agree-save{margin-top:10px}.commonOpinion-set{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column;height:100%}.commonOpinion-set .el-table__body-wrapper{-webkit-box-flex:1;-ms-flex:1;flex:1}.es-flow-index-shrink{width:24px}.es-flow-index-shrink img{cursor:pointer;width:24px;height:24px}.es-flow-btn:hover{background-color:#f5f5f5;color:#1890ff}.es-flow-btn:hover ::v-deep .el-popover{padding:12px 0!important}.es-flow-form .el-checkbox-group{display:contents}.es-flow-index .el-input-group--prepend>.el-input__inner,.es-flow-index .select-process>.el-input__inner{display:none!important}.es-flow-form .el-textarea:first-child,.es-flow-index .el-textarea{width:100%;margin-bottom:10px!important}.es-flow-form .es-opinions .el-select,.es-flow-index .el-select{width:calc(100% + 40px)!important}.es-flow-index .el-select .el-input{width:100%;height:40px}.es-flow-index .process .el-select{width:calc(100% + 40px)!important}.es-flow-index .input-with-select .el-input-group__prepend{background-color:#fff;width:100%}.es-flow-index .select-process .el-input-group__append{height:40px}.es-flow-index .hide-flow-char .el-input-group__append{padding:0}.es-flow-index button.el-button.sub.el-button--primary.el-button--medium{width:calc(100% - 85px)}.es-flow-index .el-input-group--prepend>.el-input-group__append{height:40px}.es-flow-index .demo-dynamic .el-select{width:100%!important}.es-flow-index .demo-dynamic .select-process .el-select,.es-flow-index .demo-dynamic .selectUser,.es-flow-index.task-union-examine .el-select{width:calc(100% + 40px)!important}.es-flow-index .el-input.el-input-group.el-input-group--append.el-input-group--prepend{margin:0!important}.es-flow-index .demo-dynamic{-webkit-box-flex:1;-ms-flex:1;flex:1;margin-top:10px}.es-flow-index .es-footer-btn{margin-top:10px}.es-flow-index .es-footer-btn .el-button+.el-button{margin:10px 10px 0 0}.es-flow-index .el-input.is-disabled .el-input__inner{color:#606266}.es-flow-index .es-flow-btn{margin-right:10px}.es-flow-index .es-info{padding:0 12px;-webkit-box-flex:1;-ms-flex:1;flex:1;overflow-y:auto;overflow-x:hidden}.es-flow-index .form-left .el-form-item{margin-bottom:22px!important}.es-flow-index .es-info .el-form-item{margin-bottom:0}.es-flow-index .es-info::-webkit-scrollbar{width:5px}.es-flow-index .news{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;cursor:pointer;padding:10px 0}.es-flow-index .news .sj,.show{width:10px;height:10px;border-right:1px solid #000;border-bottom:1px solid #000;margin-right:10px;-webkit-transform:rotate(-135deg);transform:rotate(-135deg);-webkit-transition:.5s;transition:.5s}.es-flow-index .news .show{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.es-flow-index .el-checkbox{margin:0 10px 10px 0}.es-flow-index .info::-webkit-scrollbar-track{-webkit-box-shadow:inset006pxrgba(0,0,0,.3);border-radius:10px}::-webkit-scrollbar-thumb{border-radius:10px;background:rgba(0,0,0,.1);-webkit-box-shadow:inset006pxrgba(0,0,0,.5)}.el-select-dropdown.is-multiple .el-select-dropdown__item.selected::after{right:5px!important}.es-flow-form .input-with-select{width:100%;margin-top:0}.custom-limit-time .el-input.el-input--suffix{width:calc(100% + 40px)!important}.task-union-examine .custom-limit-time .el-input.el-input--suffix{width:unset!important}.custom-limit-time .el-input-group__append{background-color:#1890ff!important;color:#fff!important}.es-flow-form .el-select{width:100%}.es-flow-form .es-opinions .el-select{width:calc(100% + 40px)!important}.select-users .el-input-group__append .el-button span,.select-users .no-icon .el-input-group__append{display:none}.select-users .el-input-group__append{background-color:#1890ff}.select-users .el-input-group__append .el-button i{font-size:18px;color:#fff}.es-flow-form .input-with-select .el-input-group__prepend{background-color:#fff;width:100%}.es-flow-form .el-input-group--prepend>.el-input__inner{display:none!important}.es-flow-form button.el-button.sub.el-button--danger.el-button--medium{width:calc(100% - 85px)}.es-flow-form .el-input-group--prepend>.el-input-group__append{height:40px}.es-flow-form .el-form-item__label{font-weight:700}.es-flow-form .el-input.is-disabled .el-input__inner{color:#000}.select-user{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.select-user .left{width:30%}.select-user .right{padding:3px;width:69%}.select-user .el-checkbox{width:170px;margin-top:11px;margin-bottom:11px}.select-user .all{margin:0!important}.es-flow-index .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner,.flow-dialog .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner{background-color:#1890ff!important;border-color:#1890ff!important}.es-flow-index .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner::after,.flow-dialog .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner::after{border-color:#fff}.es-flow-index .el-checkbox__input.is-disabled+span.el-checkbox__label,.flow-dialog .el-checkbox__input.is-disabled+span.el-checkbox__label{color:rgba(0,0,0,.85)}
|