cnhis-design-vue 2.1.62 → 2.1.63
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 +7 -0
- package/es/age/index.js +2 -2
- package/es/big-table/index.js +23 -23
- package/es/button/index.js +2 -2
- package/es/captcha/index.js +3 -3
- package/es/checkbox/index.js +1 -1
- package/es/color-picker/index.js +1 -1
- package/es/drag-layout/index.js +3 -3
- package/es/editor/index.js +1 -1
- package/es/ellipsis/index.js +1 -1
- package/es/fabric-chart/index.js +9 -9
- package/es/form-table/index.js +20 -20
- package/es/index/index.js +190 -189
- package/es/index/style.css +1 -1
- package/es/input/index.js +1 -1
- package/es/map/index.js +1 -1
- package/es/multi-chat/index.js +25 -25
- package/es/multi-chat-client/index.js +19 -19
- package/es/multi-chat-history/index.js +4 -4
- package/es/multi-chat-record/index.js +4 -4
- package/es/multi-chat-setting/index.js +20 -20
- package/es/multi-chat-sip/index.js +1 -1
- package/es/radio/index.js +1 -1
- package/es/scale-container/index.js +1 -1
- package/es/scale-view/index.js +27 -27
- package/es/select/index.js +4 -4
- package/es/select-label/index.js +3 -3
- package/es/select-person/index.js +2 -2
- package/es/shortcut-setter/index.js +2 -2
- package/es/table-filter/index.js +45 -44
- package/es/table-filter/style.css +1 -1
- package/es/tag/index.js +1 -1
- package/es/verification-code/index.js +2 -2
- package/lib/cui.common.js +217 -216
- package/lib/cui.umd.js +217 -216
- package/lib/cui.umd.min.js +7 -7
- package/package.json +1 -1
- package/packages/table-filter/src/quick-search/QuickSearch.vue +2 -1
package/package.json
CHANGED
|
@@ -1011,7 +1011,8 @@ export default create({
|
|
|
1011
1011
|
let find = val.find(valItem => valItem.field_key === item.columnName);
|
|
1012
1012
|
if (find) {
|
|
1013
1013
|
let value = find?.value
|
|
1014
|
-
|
|
1014
|
+
let isTrance = item.CONVERT && Array.isArray(item.CONVERT) || item.comType == "SelectMui" && item.con == "CONVERT"
|
|
1015
|
+
if(Array.isArray(value) && isTrance){
|
|
1015
1016
|
let value = find?.value?.map?.(item => JSON.stringify(item)) || find.value;
|
|
1016
1017
|
value = value.filter(Boolean)
|
|
1017
1018
|
this.$set(this.quickSearch[index], "CONVERT", value);
|