eoss-mobiles 0.3.61 → 0.3.63
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-mobile.common.js +89 -58
- package/lib/flow.js +88 -57
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/packages/flow/src/components/Handle.vue +9 -2
- package/packages/flow/src/components/Reject.vue +5 -1
- package/packages/flow/src/components/StartFlow.vue +5 -1
- package/packages/flow/src/components/TaskRead.vue +5 -1
- package/packages/flow/src/components/reset.vue +5 -1
- package/packages/flow/src/components/supervise.vue +5 -1
- package/packages/flow/src/components/taskUnionExamine.vue +5 -1
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -538,7 +538,7 @@
|
|
|
538
538
|
<Message
|
|
539
539
|
ref="message"
|
|
540
540
|
:label="'催办通知方式'"
|
|
541
|
-
:code="
|
|
541
|
+
:code="msgCode"
|
|
542
542
|
onlyShowType
|
|
543
543
|
:baseUrl="baseUrl"
|
|
544
544
|
:pendingId="pendingId"
|
|
@@ -551,7 +551,7 @@
|
|
|
551
551
|
<div class="item-msg item-msg2">
|
|
552
552
|
<Message
|
|
553
553
|
ref="message"
|
|
554
|
-
:code="
|
|
554
|
+
:code="msgCode"
|
|
555
555
|
:baseUrl="baseUrl"
|
|
556
556
|
:readOnlyNotificationType="readOnlyNotificationType"
|
|
557
557
|
:notificationMessageReadOnly="notificationMessageReadOnly"
|
|
@@ -646,6 +646,10 @@ export default {
|
|
|
646
646
|
type: [String, Number],
|
|
647
647
|
default: 0
|
|
648
648
|
},
|
|
649
|
+
msgCode: {
|
|
650
|
+
type: String,
|
|
651
|
+
default: 'notification_type'
|
|
652
|
+
},
|
|
649
653
|
isAllCheck: {
|
|
650
654
|
type: Boolean,
|
|
651
655
|
default: false
|
|
@@ -1891,6 +1895,7 @@ export default {
|
|
|
1891
1895
|
message,
|
|
1892
1896
|
data: { isCanFenyue, taskExamine, taskReadOpinionRequired }
|
|
1893
1897
|
} = res;
|
|
1898
|
+
this.showFlowBtn = true
|
|
1894
1899
|
if (status === 'success') {
|
|
1895
1900
|
this.taskExamineInfo = taskExamine;
|
|
1896
1901
|
this.isCanFenyue = isCanFenyue;
|
|
@@ -1905,6 +1910,8 @@ export default {
|
|
|
1905
1910
|
})
|
|
1906
1911
|
.catch((err) => {
|
|
1907
1912
|
this.$toast.clear();
|
|
1913
|
+
|
|
1914
|
+
this.showFlowBtn = true
|
|
1908
1915
|
if (err.message && err.message !== 'canceled') {
|
|
1909
1916
|
this.$toast(err.message);
|
|
1910
1917
|
}
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
<Message
|
|
30
30
|
v-if="rejectObj && rejectObj.length != 0"
|
|
31
31
|
ref="message"
|
|
32
|
-
:code="
|
|
32
|
+
:code="msgCode"
|
|
33
33
|
:baseUrl="baseUrl"
|
|
34
34
|
:readOnlyNotificationType="readOnlyNotificationType"
|
|
35
35
|
:notificationMessageReadOnly="notificationMessageReadOnly"
|
|
@@ -65,6 +65,10 @@ export default {
|
|
|
65
65
|
type: Boolean,
|
|
66
66
|
default: false
|
|
67
67
|
},
|
|
68
|
+
msgCode: {
|
|
69
|
+
type: String,
|
|
70
|
+
default: 'notification_type'
|
|
71
|
+
},
|
|
68
72
|
userId: {
|
|
69
73
|
type: String,
|
|
70
74
|
default: ''
|
|
@@ -157,7 +157,7 @@
|
|
|
157
157
|
<!-- 通知方式 -->
|
|
158
158
|
<Message
|
|
159
159
|
ref="message"
|
|
160
|
-
:code="
|
|
160
|
+
:code="msgCode"
|
|
161
161
|
:readOnlyNotificationType="readOnlyNotificationType"
|
|
162
162
|
:notificationMessageReadOnly="notificationMessageReadOnly"
|
|
163
163
|
:defaultNotificationMsg="form.notificationMsg"
|
|
@@ -249,6 +249,10 @@ export default {
|
|
|
249
249
|
type: Object,
|
|
250
250
|
default: () => {}
|
|
251
251
|
},
|
|
252
|
+
msgCode: {
|
|
253
|
+
type: String,
|
|
254
|
+
default: 'notification_type'
|
|
255
|
+
},
|
|
252
256
|
opinion: {
|
|
253
257
|
type: String,
|
|
254
258
|
default: ''
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
<div class="item">
|
|
79
79
|
<Message
|
|
80
80
|
ref="message"
|
|
81
|
-
:code="
|
|
81
|
+
:code="msgCode"
|
|
82
82
|
:readOnlyNotificationType="readOnlyNotificationType"
|
|
83
83
|
:notificationMessageReadOnly="notificationMessageReadOnly"
|
|
84
84
|
:defaultNotificationMsg="defaultNotificationMessage"
|
|
@@ -168,6 +168,10 @@ export default {
|
|
|
168
168
|
type: String,
|
|
169
169
|
default: ''
|
|
170
170
|
},
|
|
171
|
+
msgCode: {
|
|
172
|
+
type: String,
|
|
173
|
+
default: 'notification_type'
|
|
174
|
+
},
|
|
171
175
|
isAllCheck: {
|
|
172
176
|
type: Boolean,
|
|
173
177
|
default: false
|
|
@@ -139,7 +139,7 @@
|
|
|
139
139
|
<!-- 通知方式 -->
|
|
140
140
|
<Message
|
|
141
141
|
ref="message"
|
|
142
|
-
:code="
|
|
142
|
+
:code="msgCode"
|
|
143
143
|
:readOnlyNotificationType="readOnlyNotificationType"
|
|
144
144
|
:notificationMessageReadOnly="notificationMessageReadOnly"
|
|
145
145
|
:defaultNotificationMsg="form.notificationMsg"
|
|
@@ -215,6 +215,10 @@ export default {
|
|
|
215
215
|
type: Boolean,
|
|
216
216
|
default: false
|
|
217
217
|
},
|
|
218
|
+
msgCode: {
|
|
219
|
+
type: String,
|
|
220
|
+
default: 'notification_type'
|
|
221
|
+
},
|
|
218
222
|
userId: {
|
|
219
223
|
type: String,
|
|
220
224
|
default: ''
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<em-input v-model="form.pendingUserNames" label-width="90" label="当前办理人" readonly /> -->
|
|
6
6
|
<Message
|
|
7
7
|
ref="message"
|
|
8
|
-
:code="
|
|
8
|
+
:code="msgCode"
|
|
9
9
|
:baseUrl="baseUrl"
|
|
10
10
|
:showCheckType="false"
|
|
11
11
|
:showMsg="true"
|
|
@@ -44,6 +44,10 @@ export default {
|
|
|
44
44
|
props: {
|
|
45
45
|
baseUrl: String,
|
|
46
46
|
businessId: String,
|
|
47
|
+
msgCode: {
|
|
48
|
+
type: String,
|
|
49
|
+
default: 'notification_type'
|
|
50
|
+
},
|
|
47
51
|
appId:{type:String,default:''}
|
|
48
52
|
},
|
|
49
53
|
data() {
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
<Message
|
|
83
83
|
ref="message"
|
|
84
84
|
v-if="showMessage"
|
|
85
|
-
:code="
|
|
85
|
+
:code="msgCode"
|
|
86
86
|
:baseUrl="baseUrl"
|
|
87
87
|
:readOnlyNotificationType="readOnlyNotificationType"
|
|
88
88
|
:notificationMessageReadOnly="notificationMessageReadOnly"
|
|
@@ -138,6 +138,10 @@ export default {
|
|
|
138
138
|
type: [String, Number],
|
|
139
139
|
default: 0
|
|
140
140
|
},
|
|
141
|
+
msgCode: {
|
|
142
|
+
type: String,
|
|
143
|
+
default: 'notification_type'
|
|
144
|
+
},
|
|
141
145
|
esign: {
|
|
142
146
|
type: Boolean,
|
|
143
147
|
default: false
|