Browse Source

Merge branch 'dev-mapconfig' into test

test
jiangyy 3 years ago
parent
commit
913a8b8f5d
  1. 3
      src/views/components/resiSearch.vue

3
src/views/components/resiSearch.vue

@ -173,6 +173,7 @@
size="small" size="small"
clearable clearable
class="resi-cell-select" class="resi-cell-select"
:multiple="n.multiSelect == 1 ? true : false"
> >
<el-option <el-option
v-for="item in n.options" v-for="item in n.options"
@ -446,7 +447,7 @@ export default {
// columnValue: [] // columnValue: []
columnValue: this.form[item.columnName] && columnValue: this.form[item.columnName] &&
(itemTypes.includes(item.queryType) || (itemTypes.includes(item.queryType) ||
itemTypes.includes(item.itemType) itemTypes.includes(item.itemType) || item.multiSelect == 1
? this.form[item.columnName] ? this.form[item.columnName]
: [this.form[item.columnName].toString()]) : [this.form[item.columnName].toString()])
} }

Loading…
Cancel
Save