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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eoss-mobiles",
3
- "version": "0.3.53",
3
+ "version": "0.3.55",
4
4
  "description": "eoss内部移动端业务组件",
5
5
  "main": "lib/eoss-mobile.common.js",
6
6
  "files": [
@@ -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
  });
@@ -17,6 +17,7 @@
17
17
  v-model="takeAdviceUser"
18
18
  :multiple="newMultiple"
19
19
  :isAllCheck="isAllCheck"
20
+ isEnterprise
20
21
  :tabs="
21
22
  type == 'takeAdvice'
22
23
  ? currentOrgTabs.length > 0
package/src/index.js CHANGED
@@ -105,7 +105,7 @@ if (typeof window !== 'undefined' && window.Vue) {
105
105
  }
106
106
 
107
107
  export default {
108
- version: '0.3.53',
108
+ version: '0.3.55',
109
109
  install,
110
110
  Button,
111
111
  ButtonGroup,