eoss-mobiles 0.3.99 → 0.4.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/lib/eoss-mobile.common.js +12 -9
- package/lib/flow.js +11 -8
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/packages/flow/src/components/TaskRead.vue +4 -1
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -262,6 +262,7 @@ export default {
|
|
|
262
262
|
},
|
|
263
263
|
|
|
264
264
|
params() {
|
|
265
|
+
|
|
265
266
|
return {
|
|
266
267
|
pid:
|
|
267
268
|
this.taskReadType == '分阅' && this.isSync != 1 && !this.isOrg
|
|
@@ -299,7 +300,7 @@ export default {
|
|
|
299
300
|
subRead() {
|
|
300
301
|
const { businessId, appId, processDefinitionId, pendingId } =
|
|
301
302
|
this.taskExamine;
|
|
302
|
-
if (this.taskReadOpinionRequired
|
|
303
|
+
if (this.taskReadOpinionRequired && !this.form.handleExplain)
|
|
303
304
|
return this.$toast('分阅阅结必须输入意见!');
|
|
304
305
|
let params = {
|
|
305
306
|
businessId,
|
|
@@ -644,6 +645,8 @@ export default {
|
|
|
644
645
|
// this.notificationMsgType = res.data.defaultNotificationType.split(',');
|
|
645
646
|
// this.isMultiple()
|
|
646
647
|
this.taskReadOpinionRequired = res.data.taskReadOpinionRequired == 'true';
|
|
648
|
+
this.isSync = res.data.taskReadType != 'commonTaskRead' ? '1' : '0';
|
|
649
|
+
|
|
647
650
|
this.getTaskRead();
|
|
648
651
|
this.taskExamine = res.data.taskExamine;
|
|
649
652
|
// console.log(this.taskExamine, 'taskExaminetaskExaminetaskExamine');
|