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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mooho-base-admin-plus",
3
3
  "description": "MOOHO basic framework for admin by Vue3",
4
- "version": "2.0.2",
4
+ "version": "2.0.3",
5
5
  "author": "jinyifan <jinyifan@mooho.com.cn>",
6
6
  "license": "MIT",
7
7
  "private": false,
@@ -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 == null && viewCode.indexOf('_') >= 0) {
902
+ if (view && !view.isExist && viewCode.indexOf('_') >= 0) {
904
903
  view = await this.loadDataView(viewCode.split('_')[0]);
905
904
  }
906
905
 
@@ -173,6 +173,10 @@
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;