eoss-mobiles 0.3.53 → 0.3.55
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 +35 -28
- package/lib/flow.js +34 -27
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/packages/flow/src/components/Circulate.vue +4 -3
- package/packages/flow/src/components/Handle.vue +7 -4
- package/packages/flow/src/components/taskUnionExamine.vue +1 -0
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -140,6 +140,7 @@ import {
|
|
|
140
140
|
import request from '../../../../src/utils/http.js';
|
|
141
141
|
import Opinion from './Opinion.vue';
|
|
142
142
|
import Message from './Message.vue';
|
|
143
|
+
import $ from '../../../../src/utils/util';
|
|
143
144
|
export default {
|
|
144
145
|
name: 'Handle',
|
|
145
146
|
inheritAttrs: false,
|
|
@@ -201,7 +202,7 @@ export default {
|
|
|
201
202
|
{ name: '前置加签', value: 'preAddSign' },
|
|
202
203
|
{ name: '后置加签', value: 'postAddSign' }
|
|
203
204
|
],
|
|
204
|
-
currentOrgSelectorParams: {},
|
|
205
|
+
currentOrgSelectorParams: {only_filid:true},
|
|
205
206
|
currentOrgSelectorTabs: 'employee, persongroup',
|
|
206
207
|
foreignOrgSelectorTabs: 'enterprise,filgroupobj',
|
|
207
208
|
foreignOrgSelectorParams: { roleid: '' },
|
|
@@ -323,8 +324,8 @@ export default {
|
|
|
323
324
|
},
|
|
324
325
|
created() {
|
|
325
326
|
// this.getMessage();
|
|
326
|
-
this.currentOrgSelectorParams.employee = { pid: this.orgId };
|
|
327
|
-
this.foreignOrgSelectorParams.nofilid = this.orgId
|
|
327
|
+
this.currentOrgSelectorParams.employee = this.currentOrgSelectorParams.persongroup = { pid: this.orgId || JSON.parse($.getStorage('userInfo')).orgId};
|
|
328
|
+
this.foreignOrgSelectorParams.nofilid = this.orgId || JSON.parse($.getStorage('userInfo')).orgId
|
|
328
329
|
this.foreignOrgSelectorParams.myUserid = ''
|
|
329
330
|
this.foreignOrgSelectorParams.filgroup = {
|
|
330
331
|
pid: 'root',
|
|
@@ -399,7 +399,7 @@
|
|
|
399
399
|
<div
|
|
400
400
|
class="item"
|
|
401
401
|
v-if="
|
|
402
|
-
currentNodeEnableItemHandleDescription &&
|
|
402
|
+
currentNodeEnableItemHandleDescription && nodeList &&
|
|
403
403
|
nodeList.length != 0 &&
|
|
404
404
|
isShowNode &&
|
|
405
405
|
isNextUser
|
|
@@ -1347,7 +1347,9 @@ export default {
|
|
|
1347
1347
|
},
|
|
1348
1348
|
// 切换下一步操作
|
|
1349
1349
|
changeNextOperate(val, isDef) {
|
|
1350
|
+
console.log(val,isDef,this.tagKey,'isDef')
|
|
1350
1351
|
if (!isDef && val.key === this.tagKey) return;
|
|
1352
|
+
console.log(val,isDef,this.tagKey,'isDef2222')
|
|
1351
1353
|
this.tagKey = val.key;
|
|
1352
1354
|
//恢复默认
|
|
1353
1355
|
this.isNextUser = false;
|
|
@@ -1619,7 +1621,8 @@ export default {
|
|
|
1619
1621
|
pid:
|
|
1620
1622
|
currentOrgparams[i] == 'my'
|
|
1621
1623
|
? choiceOrgId
|
|
1622
|
-
: currentOrgparams[i]
|
|
1624
|
+
: currentOrgparams[i],
|
|
1625
|
+
only_filid:true
|
|
1623
1626
|
};
|
|
1624
1627
|
});
|
|
1625
1628
|
that.currentOrgSelectorTabs =
|
|
@@ -1635,10 +1638,10 @@ export default {
|
|
|
1635
1638
|
pid:
|
|
1636
1639
|
foreignOrgparams[i] == 'my'
|
|
1637
1640
|
? choiceOrgId
|
|
1638
|
-
: foreignOrgparams[i] == 'other'
|
|
1641
|
+
: foreignOrgparams[i] == 'other' || foreignOrgparams[i] == 'nofilidorg'
|
|
1639
1642
|
? 'root'
|
|
1640
1643
|
: foreignOrgparams[i],
|
|
1641
|
-
nofilid: foreignOrgparams[i] == 'other' ? 1 : 0,
|
|
1644
|
+
nofilid:foreignOrgparams[i] == 'nofilidorg' ? that.orgId || JSON.parse($.getStorage('userInfo')).orgId : foreignOrgparams[i] == 'other' ? 1 : 0,
|
|
1642
1645
|
myUserid: x == 'filgroup' ? $.getStorage('userId') : ''
|
|
1643
1646
|
};
|
|
1644
1647
|
});
|