mooho-base-admin-plus 2.0.2 → 2.0.3
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
|
@@ -897,10 +897,9 @@
|
|
|
897
897
|
*/
|
|
898
898
|
async init(viewCode, callback, onFail) {
|
|
899
899
|
// 加载表格视图
|
|
900
|
-
|
|
901
900
|
let view = await this.loadDataView(viewCode);
|
|
902
901
|
|
|
903
|
-
if (view
|
|
902
|
+
if (view && !view.isExist && viewCode.indexOf('_') >= 0) {
|
|
904
903
|
view = await this.loadDataView(viewCode.split('_')[0]);
|
|
905
904
|
}
|
|
906
905
|
|