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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cnhis-design-vue",
3
- "version": "2.1.62",
3
+ "version": "2.1.63",
4
4
  "description": "前端业务UI库",
5
5
  "keyword": "cnhis-design-vue vue cnhis",
6
6
  "homepage": "http://dv.cnhis.com/",
@@ -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
- if(Array.isArray(value) && item.CONVERT && Array.isArray(item.CONVERT)){
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);