2016-10-17 12:34:20 +08:00
|
|
|
<template>
|
2017-01-17 12:13:18 +08:00
|
|
|
<Row>
|
|
|
|
<i-col span="12" style="padding-right:10px">
|
|
|
|
<i-select :model.sync="model11" filterable>
|
|
|
|
<i-option v-for="item in cityList" :value="item.value">{{ item.label }}</i-option>
|
|
|
|
</i-select>
|
|
|
|
</i-col>
|
|
|
|
<i-col span="12">
|
|
|
|
<i-select :model.sync="model12" filterable multiple>
|
|
|
|
<i-option v-for="item in cityList" :value="item.value">{{ item.label }}</i-option>
|
|
|
|
</i-select>
|
|
|
|
</i-col>
|
|
|
|
</Row>
|
2016-10-17 12:34:20 +08:00
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data () {
|
|
|
|
return {
|
2017-01-17 12:13:18 +08:00
|
|
|
cityList: [
|
|
|
|
{
|
|
|
|
value: 'beijing',
|
|
|
|
label: '北京市'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
value: 'shanghai',
|
|
|
|
label: '上海市'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
value: 'shenzhen',
|
|
|
|
label: '深圳市'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
value: 'hangzhou',
|
|
|
|
label: '杭州市'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
value: 'nanjing',
|
|
|
|
label: '南京市'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
value: 'chongqing',
|
|
|
|
label: '重庆市'
|
|
|
|
}
|
|
|
|
],
|
|
|
|
model11: '',
|
|
|
|
model12: []
|
2016-10-17 12:34:20 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-11-03 13:54:21 +08:00
|
|
|
</script>
|