eoss-ui 0.4.71 → 0.4.73

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.
Files changed (58) hide show
  1. package/lib/button-group.js +597 -117
  2. package/lib/button.js +597 -117
  3. package/lib/card.js +2 -2
  4. package/lib/cascader.js +2 -2
  5. package/lib/checkbox-group.js +598 -118
  6. package/lib/clients.js +2 -2
  7. package/lib/data-table-form.js +598 -118
  8. package/lib/data-table.js +598 -118
  9. package/lib/date-picker.js +597 -117
  10. package/lib/dialog.js +596 -116
  11. package/lib/enterprise.js +2 -2
  12. package/lib/eoss-ui.common.js +668 -181
  13. package/lib/error-page.js +2 -2
  14. package/lib/flow-group.js +598 -118
  15. package/lib/flow-list.js +774 -294
  16. package/lib/flow.js +600 -120
  17. package/lib/form.js +623 -143
  18. package/lib/handle-user.js +598 -118
  19. package/lib/handler.js +598 -118
  20. package/lib/icons.js +2 -2
  21. package/lib/index.js +1 -1
  22. package/lib/input-number.js +597 -117
  23. package/lib/input.js +622 -142
  24. package/lib/label.js +2 -2
  25. package/lib/login.js +598 -118
  26. package/lib/main.js +663 -176
  27. package/lib/menu.js +2 -2
  28. package/lib/nav.js +597 -117
  29. package/lib/notify.js +4 -4
  30. package/lib/page.js +597 -117
  31. package/lib/pagination.js +2 -2
  32. package/lib/player.js +613 -133
  33. package/lib/qr-code.js +604 -124
  34. package/lib/radio-group.js +598 -118
  35. package/lib/retrial-auth.js +598 -118
  36. package/lib/select-ganged.js +597 -117
  37. package/lib/select.js +605 -125
  38. package/lib/selector-panel.js +598 -118
  39. package/lib/selector.js +605 -125
  40. package/lib/sizer.js +598 -118
  41. package/lib/steps.js +597 -117
  42. package/lib/switch.js +597 -117
  43. package/lib/table-form.js +623 -143
  44. package/lib/tabs-panel.js +2 -2
  45. package/lib/tabs.js +598 -118
  46. package/lib/tips.js +598 -118
  47. package/lib/toolbar.js +2 -2
  48. package/lib/tree-group.js +600 -120
  49. package/lib/tree.js +598 -118
  50. package/lib/upload.js +599 -119
  51. package/lib/utils/util.js +582 -102
  52. package/lib/wujie.js +597 -117
  53. package/lib/wxlogin.js +598 -118
  54. package/package.json +1 -1
  55. package/packages/main/src/main.vue +4 -1
  56. package/packages/tree-group/src/main.vue +1 -1
  57. package/src/index.js +1 -1
  58. package/src/utils/util.js +530 -80
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eoss-ui",
3
- "version": "0.4.71",
3
+ "version": "0.4.73",
4
4
  "description": "eoss内部业务组件",
5
5
  "main": "lib/eoss-ui.common.js",
6
6
  "files": [
@@ -159,6 +159,7 @@
159
159
  class="es-body-main"
160
160
  v-loading="pageLoading"
161
161
  element-loading-background="rgba(0, 0, 0, 0.5)"
162
+ v-if="showPage"
162
163
  >
163
164
  <iframe
164
165
  v-if="method === 'iframe'"
@@ -611,7 +612,8 @@ export default {
611
612
  isSide: null,
612
613
  navIds: null,
613
614
  timer: null,
614
- pid: null
615
+ pid: null,
616
+ showPage: false
615
617
  };
616
618
  },
617
619
  created() {
@@ -1306,6 +1308,7 @@ export default {
1306
1308
  }
1307
1309
  this.tabsId = active[active.length - 1];
1308
1310
  }
1311
+ this.showPage = true;
1309
1312
  },
1310
1313
  //获取页面类型及地址
1311
1314
  getUrl(res, active, index) {
@@ -448,7 +448,7 @@ export default {
448
448
  this.checkedsAsSearch) ||
449
449
  this.tree.currentFirst
450
450
  ) {
451
- this.checkeds = res.children[0];
451
+ this.checkeds = res[0];
452
452
  }
453
453
  this.$emit('results', res);
454
454
  },
package/src/index.js CHANGED
@@ -115,7 +115,7 @@ if (typeof window !== 'undefined' && window.Vue) {
115
115
  }
116
116
 
117
117
  export default {
118
- version: '0.4.71',
118
+ version: '0.4.73',
119
119
  install,
120
120
  Button,
121
121
  ButtonGroup,