cnhis-design-vue 2.1.102 → 2.1.105
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/CHANGELOG.md +50 -33
- package/es/affix/index.js +8 -8
- package/es/age/index.js +10 -10
- package/es/alert/index.js +8 -8
- package/es/anchor/index.js +8 -8
- package/es/auto-complete/index.js +8 -8
- package/es/avatar/index.js +8 -8
- package/es/back-top/index.js +8 -8
- package/es/badge/index.js +8 -8
- package/es/base/index.js +8 -8
- package/es/big-table/index.js +107 -105
- package/es/big-table/style.css +1 -1
- package/es/breadcrumb/index.js +8 -8
- package/es/button/index.js +22 -22
- package/es/calendar/index.js +8 -8
- package/es/captcha/index.js +3 -3
- package/es/card/index.js +8 -8
- package/es/card-reader-sdk/index.js +1 -1
- package/es/carousel/index.js +8 -8
- package/es/cascader/index.js +8 -8
- package/es/checkbox/index.js +9 -9
- package/es/col/index.js +8 -8
- package/es/collapse/index.js +8 -8
- package/es/color-picker/index.js +1 -1
- package/es/comment/index.js +8 -8
- package/es/config-provider/index.js +8 -8
- package/es/date-picker/index.js +8 -8
- package/es/descriptions/index.js +8 -8
- package/es/divider/index.js +8 -8
- package/es/drag-layout/index.js +3 -3
- package/es/drawer/index.js +8 -8
- package/es/dropdown/index.js +8 -8
- package/es/editor/index.js +1 -1
- package/es/ellipsis/index.js +1 -1
- package/es/empty/index.js +8 -8
- package/es/fabric-chart/index.js +9 -9
- package/es/form/index.js +8 -8
- package/es/form-model/index.js +8 -8
- package/es/form-table/index.js +66 -66
- package/es/index/index.js +445 -443
- package/es/index/style.css +1 -1
- package/es/input/index.js +9 -9
- package/es/input-number/index.js +8 -8
- package/es/layout/index.js +8 -8
- package/es/list/index.js +8 -8
- package/es/locale-provider/index.js +8 -8
- package/es/map/index.js +9 -9
- package/es/mentions/index.js +8 -8
- package/es/menu/index.js +8 -8
- package/es/message/index.js +8 -8
- package/es/multi-chat/index.js +76 -76
- package/es/multi-chat-client/index.js +70 -70
- package/es/multi-chat-history/index.js +4 -4
- package/es/multi-chat-record/index.js +14 -14
- package/es/multi-chat-setting/index.js +22 -22
- package/es/multi-chat-sip/index.js +1 -1
- package/es/notification/index.js +8 -8
- package/es/page-header/index.js +8 -8
- package/es/pagination/index.js +8 -8
- package/es/popconfirm/index.js +8 -8
- package/es/popover/index.js +8 -8
- package/es/progress/index.js +8 -8
- package/es/radio/index.js +9 -9
- package/es/rate/index.js +8 -8
- package/es/result/index.js +8 -8
- package/es/row/index.js +8 -8
- package/es/scale-container/index.js +1 -1
- package/es/scale-view/index.js +27 -27
- package/es/select/index.js +12 -12
- package/es/select-label/index.js +11 -11
- package/es/select-person/index.js +2 -2
- package/es/select-tag/index.js +4 -4
- package/es/shortcut-setter/index.js +10 -10
- package/es/skeleton/index.js +8 -8
- package/es/slider/index.js +8 -8
- package/es/space/index.js +8 -8
- package/es/spin/index.js +8 -8
- package/es/statistic/index.js +8 -8
- package/es/steps/index.js +8 -8
- package/es/switch/index.js +8 -8
- package/es/table-filter/index.js +57 -57
- package/es/tabs/index.js +8 -8
- package/es/tag/index.js +9 -9
- package/es/time-picker/index.js +8 -8
- package/es/timeline/index.js +8 -8
- package/es/tooltip/index.js +8 -8
- package/es/transfer/index.js +8 -8
- package/es/tree/index.js +8 -8
- package/es/tree-select/index.js +8 -8
- package/es/upload/index.js +8 -8
- package/es/verification-code/index.js +2 -2
- package/lib/cui.common.js +390 -388
- package/lib/cui.umd.js +390 -388
- package/package.json +1 -1
- package/packages/big-table/src/components/edit-form/EditForm.vue +4 -0
- package/packages/big-table/src/components/edit-form/edit-component/mixins/search.js +2 -2
- package/packages/index.js +1 -0
- package/lib/cui.umd.min.js +0 -400
package/package.json
CHANGED
|
@@ -393,6 +393,10 @@ export default {
|
|
|
393
393
|
if (curItem.isOnchange !== '00' && defVal) {
|
|
394
394
|
defVal = curItem.filtration_val || this.handleSysParams(defVal);
|
|
395
395
|
defVal = this.getObjs(defVal);
|
|
396
|
+
// 数组是无效的, 必须是对象
|
|
397
|
+
if(Array.isArray(defVal)) {
|
|
398
|
+
return defaultVal
|
|
399
|
+
}
|
|
396
400
|
return defVal || defaultVal;
|
|
397
401
|
}
|
|
398
402
|
const targetList = JSON.parse(JSON.stringify(multipleSelected[keyName] || []));
|
|
@@ -153,10 +153,10 @@ export default {
|
|
|
153
153
|
this.$emit("valueOnChange", [...defOptions], this.item);
|
|
154
154
|
// console.log(this.defList, "---defList");
|
|
155
155
|
} else {
|
|
156
|
-
this.defaultValue[item.name] =
|
|
156
|
+
this.defaultValue[item.name] = {};
|
|
157
157
|
}
|
|
158
158
|
} else {
|
|
159
|
-
this.defaultValue[item.name] =
|
|
159
|
+
// this.defaultValue[item.name] = {};
|
|
160
160
|
}
|
|
161
161
|
} catch (e) {
|
|
162
162
|
console.log(e);
|
package/packages/index.js
CHANGED
|
@@ -90,6 +90,7 @@ import { default as ShortcutSetter } from './shortcut-setter';
|
|
|
90
90
|
import { default as Ellipsis } from './ellipsis';
|
|
91
91
|
import { default as ScaleContainer } from './scale-container';
|
|
92
92
|
import { default as ShortcutProvider } from './shortcut-provider';
|
|
93
|
+
// import flexibleResize from '@/directive/flexibleResize';
|
|
93
94
|
|
|
94
95
|
const req = require.context('ant-design-vue/es/locale', true, /.js$/);
|
|
95
96
|
const locales = {};
|