eoss-mobiles 0.3.50 → 0.3.52
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
|
@@ -642,8 +642,8 @@ export default {
|
|
|
642
642
|
businessId: this.processObj.businessId,
|
|
643
643
|
// taskId: this.processObj.taskId,
|
|
644
644
|
pendingId: this.processObj.pendingId,
|
|
645
|
-
userId: _that.userId
|
|
646
|
-
|
|
645
|
+
userId: _that.userId,
|
|
646
|
+
taskAction: _that.type == 'reset' ? 'resetProcess' : _that.type == 'continuation' ? 'continuation' : ''
|
|
647
647
|
}
|
|
648
648
|
}).then((res) => {
|
|
649
649
|
this.$toast.clear();
|
|
@@ -196,7 +196,7 @@ export default {
|
|
|
196
196
|
: '30px'
|
|
197
197
|
};
|
|
198
198
|
this.otherParams.myUserid = this.params.myUserid = $.getStorage('userId') || this.userId || '';
|
|
199
|
-
this.params.nofilid = this.otherParams.nofilid = this.orgId ||
|
|
199
|
+
this.params.nofilid = this.otherParams.nofilid = this.orgId || JSON.parse($.getStorage('userInfo')).orgId || this.userId || '';
|
|
200
200
|
this.params = {...this.params,...this.selectorParams}
|
|
201
201
|
this.otherParams = {...this.otherParams,...this.selectorParams}
|
|
202
202
|
// this.newMultiple = this.multiple;
|
|
@@ -574,6 +574,7 @@ export default {
|
|
|
574
574
|
choiceDeptId,
|
|
575
575
|
isSubFlow,
|
|
576
576
|
choiceOrgId,
|
|
577
|
+
isImageOpinion,
|
|
577
578
|
userId: this.userId || $.getStorage('userId'),
|
|
578
579
|
loginType: 2, //登录方式
|
|
579
580
|
mobileKey: $.getStorage('deviceId') || '123'
|
|
@@ -582,7 +583,7 @@ export default {
|
|
|
582
583
|
if (isImageOpinion == 1) {
|
|
583
584
|
formData.append('file', file);
|
|
584
585
|
}
|
|
585
|
-
formData.append('pendingId', pendingId);
|
|
586
|
+
// formData.append('pendingId', pendingId);
|
|
586
587
|
for (let key in info) {
|
|
587
588
|
if (info[key] !== '' && info[key] !== undefined) {
|
|
588
589
|
formData.append(key, info[key]);
|