eoss-ui 0.6.82 → 0.6.83

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-ui",
3
- "version": "0.6.82",
3
+ "version": "0.6.83",
4
4
  "description": "eoss内部业务组件",
5
5
  "main": "lib/eoss-ui.common.js",
6
6
  "files": [
@@ -2614,9 +2614,11 @@ export default {
2614
2614
  } else {
2615
2615
  this.nodeInfos = item.taskNodeList;
2616
2616
 
2617
- this.nodeInfos = item.taskNodeList.filter(
2617
+ if(this.taskOperationShiftedNodeList){
2618
+ this.nodeInfos = item.taskNodeList.filter(
2618
2619
  (x) =>this.taskOperationShiftedNodeList.indexOf(x.nodeId) == -1
2619
2620
  );
2621
+ }
2620
2622
  }
2621
2623
  return;
2622
2624
  }
package/src/index.js CHANGED
@@ -125,7 +125,7 @@ if (typeof window !== 'undefined' && window.Vue) {
125
125
  }
126
126
 
127
127
  export default {
128
- version: '0.6.82',
128
+ version: '0.6.83',
129
129
  install,
130
130
  Button,
131
131
  ButtonGroup,