Browse Source

Merge branch 'dev-mapconfig'

shibei_master
13176889840 3 years ago
parent
commit
997fad5c16
  1. 5
      src/views/components/resiSearch.vue

5
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()])
} }
@ -672,7 +673,7 @@ export default {
} }
} }
.resi-row-box { .resi-row-box {
height: 104px; height: 214px;
overflow: hidden; overflow: hidden;
transition: height 0.5s; transition: height 0.5s;
} }

Loading…
Cancel
Save