mooho-base-admin-plus 2.0.2 → 2.0.4
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/mooho-base-admin-plus.min.esm.js +307 -475
- package/package/mooho-base-admin-plus.min.js +6 -6
- package/package/style.css +1 -1
- package/package.json +1 -1
- package/src/components/view/column-edit.vue +5 -5
- package/src/components/view/view-form.vue +239 -278
- package/src/components/view/view-table.vue +1 -2
- package/src/styles/css/default.css +5 -1
|
@@ -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
|
|
|
@@ -169,10 +169,14 @@
|
|
|
169
169
|
border-radius: 3px;
|
|
170
170
|
}
|
|
171
171
|
|
|
172
|
-
.ivu-form .ivu-select {
|
|
172
|
+
/* .ivu-form .ivu-select {
|
|
173
173
|
min-width: 150px;
|
|
174
174
|
}
|
|
175
175
|
|
|
176
|
+
.ivu-form .ivu-table .ivu-select {
|
|
177
|
+
min-width: initial;
|
|
178
|
+
} */
|
|
179
|
+
|
|
176
180
|
/* 图片 */
|
|
177
181
|
.form-image-group {
|
|
178
182
|
display: flex;
|