fixed #196
This commit is contained in:
梁灏 2017-01-13 17:10:57 +08:00
parent f5ecd16777
commit 8f5b16867d
3 changed files with 48 additions and 8 deletions

View file

@ -1,14 +1,30 @@
<template>
<i-select :model.sync="model7" style="width:200px"
filterable>
<i-option v-for="item in cityList | limitBy 3" :value="item.value">{{ item.label }}</i-option>
<i-option v-for="item in cityList | limitBy 3 3" :value="item.value">{{ item.label }}</i-option>
</i-select>
<i-button type="primary" @click="modal1 = true">i-selelct加入width样式</i-button>
<i-button type="primary" @click="modal2 = true">i-selelct没有加入width样式</i-button>
<Modal
:visible.sync="modal1"
title="普通的Modal对话框标题">
<i-select :model.sync="model1" :style="modalStyle">
<i-option v-for="item in cityList" :value="item.value">{{ item.label }}</i-option>
</i-select>
</Modal>
<Modal
:visible.sync="modal2"
title="普通的Modal对话框标题">
<i-select :model.sync="model1" :style="modalStyle">
<i-option v-for="item in cityList" :value="item.value">{{ item.label }}</i-option>
</i-select>
</Modal>
</template>
<script>
export default {
data () {
return {
modal1: false,
modal2: false,
modalStyle: '',
cityList: [
{
value: 'beijing',
@ -35,7 +51,17 @@
label: '重庆市'
}
],
model7: ''
model1: ''
}
},
computed: {
modalStyle: function(){
let s = ""
if (this.modal1)
s = "width: 200px"
if (this.modal2)
s = ""
return s
}
}
}