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.
- package/lib/button-group.js +597 -117
- package/lib/button.js +597 -117
- package/lib/card.js +2 -2
- package/lib/cascader.js +2 -2
- package/lib/checkbox-group.js +598 -118
- package/lib/clients.js +2 -2
- package/lib/data-table-form.js +598 -118
- package/lib/data-table.js +598 -118
- package/lib/date-picker.js +597 -117
- package/lib/dialog.js +596 -116
- package/lib/enterprise.js +2 -2
- package/lib/eoss-ui.common.js +668 -181
- package/lib/error-page.js +2 -2
- package/lib/flow-group.js +598 -118
- package/lib/flow-list.js +774 -294
- package/lib/flow.js +600 -120
- package/lib/form.js +623 -143
- package/lib/handle-user.js +598 -118
- package/lib/handler.js +598 -118
- package/lib/icons.js +2 -2
- package/lib/index.js +1 -1
- package/lib/input-number.js +597 -117
- package/lib/input.js +622 -142
- package/lib/label.js +2 -2
- package/lib/login.js +598 -118
- package/lib/main.js +663 -176
- package/lib/menu.js +2 -2
- package/lib/nav.js +597 -117
- package/lib/notify.js +4 -4
- package/lib/page.js +597 -117
- package/lib/pagination.js +2 -2
- package/lib/player.js +613 -133
- package/lib/qr-code.js +604 -124
- package/lib/radio-group.js +598 -118
- package/lib/retrial-auth.js +598 -118
- package/lib/select-ganged.js +597 -117
- package/lib/select.js +605 -125
- package/lib/selector-panel.js +598 -118
- package/lib/selector.js +605 -125
- package/lib/sizer.js +598 -118
- package/lib/steps.js +597 -117
- package/lib/switch.js +597 -117
- package/lib/table-form.js +623 -143
- package/lib/tabs-panel.js +2 -2
- package/lib/tabs.js +598 -118
- package/lib/tips.js +598 -118
- package/lib/toolbar.js +2 -2
- package/lib/tree-group.js +600 -120
- package/lib/tree.js +598 -118
- package/lib/upload.js +599 -119
- package/lib/utils/util.js +582 -102
- package/lib/wujie.js +597 -117
- package/lib/wxlogin.js +598 -118
- package/package.json +1 -1
- package/packages/main/src/main.vue +4 -1
- package/packages/tree-group/src/main.vue +1 -1
- package/src/index.js +1 -1
- package/src/utils/util.js +530 -80
package/package.json
CHANGED
|
@@ -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) {
|