parent
f789787fd6
commit
4e85fa156c
1 changed files with 50 additions and 30 deletions
|
@ -1,22 +1,28 @@
|
||||||
<template>
|
<template>
|
||||||
<Row>
|
<Row>
|
||||||
<i-col span="12" style="padding-right:10px">
|
<i-col span="12" style="padding-right:10px">
|
||||||
<i-select :model.sync="model11" filterable>
|
<i-select :model.sync="model111" filterable>
|
||||||
<i-option v-for="item in cityList" :value="item.value">{{ item.label }}</i-option>
|
<i-option v-for="item in cityList1" :value="item.value">{{ item.label }}</i-option>
|
||||||
</i-select>
|
</i-select>
|
||||||
</i-col>
|
</i-col>
|
||||||
|
</Row>
|
||||||
|
<Row>
|
||||||
|
<i-col span="12" style="padding-right:10px">
|
||||||
|
<i-select :model.sync="model112" filterable>
|
||||||
|
<i-option v-for="item in cityList2" :value="item.value">{{ item.label }}</i-option>
|
||||||
|
</i-select>
|
||||||
|
</i-col>
|
||||||
|
</Row>
|
||||||
|
<Row>
|
||||||
<i-col span="12">
|
<i-col span="12">
|
||||||
<i-select :model.sync="model12" filterable multiple>
|
<i-select :model.sync="model12" filterable multiple>
|
||||||
<i-option v-for="item in cityList" :value="item.value">{{ item.label }}</i-option>
|
<i-option v-for="item in cityList1" :value="item.value">{{ item.label }}</i-option>
|
||||||
</i-select>
|
</i-select>
|
||||||
</i-col>
|
</i-col>
|
||||||
</Row>
|
</Row>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
export default {
|
const cityList = [
|
||||||
data () {
|
|
||||||
return {
|
|
||||||
cityList: [
|
|
||||||
{
|
{
|
||||||
value: 'beijing',
|
value: 'beijing',
|
||||||
label: '北京市'
|
label: '北京市'
|
||||||
|
@ -41,10 +47,24 @@
|
||||||
value: 'chongqing',
|
value: 'chongqing',
|
||||||
label: '重庆市'
|
label: '重庆市'
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
model11: '',
|
export default {
|
||||||
|
data () {
|
||||||
|
return {
|
||||||
|
cityList1: cityList,
|
||||||
|
model111: '',
|
||||||
|
|
||||||
|
cityList2: [],
|
||||||
|
model112: 'beijing',
|
||||||
|
|
||||||
model12: []
|
model12: []
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
ready() {
|
||||||
|
this.model111 = 'hangzhou'
|
||||||
|
setTimeout(()=>{
|
||||||
|
this.cityList2 = cityList
|
||||||
|
}, 500)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Add table
Reference in a new issue