-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #258 from YikaJ/master
Select组件/Tag组件
- Loading branch information
Showing
4 changed files
with
77 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,70 @@ | ||
<template> | ||
<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 :model.sync="model111" filterable> | ||
<i-option v-for="item in cityList1" :value="item.value">{{ item.label }}</i-option> | ||
</i-select> | ||
</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-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-col> | ||
</Row> | ||
</template> | ||
<script> | ||
const cityList = [ | ||
{ | ||
value: 'beijing', | ||
label: '北京市' | ||
}, | ||
{ | ||
value: 'shanghai', | ||
label: '上海市' | ||
}, | ||
{ | ||
value: 'shenzhen', | ||
label: '深圳市' | ||
}, | ||
{ | ||
value: 'hangzhou', | ||
label: '杭州市' | ||
}, | ||
{ | ||
value: 'nanjing', | ||
label: '南京市' | ||
}, | ||
{ | ||
value: 'chongqing', | ||
label: '重庆市' | ||
} | ||
] | ||
export default { | ||
data () { | ||
return { | ||
cityList: [ | ||
{ | ||
value: 'beijing', | ||
label: '北京市' | ||
}, | ||
{ | ||
value: 'shanghai', | ||
label: '上海市' | ||
}, | ||
{ | ||
value: 'shenzhen', | ||
label: '深圳市' | ||
}, | ||
{ | ||
value: 'hangzhou', | ||
label: '杭州市' | ||
}, | ||
{ | ||
value: 'nanjing', | ||
label: '南京市' | ||
}, | ||
{ | ||
value: 'chongqing', | ||
label: '重庆市' | ||
} | ||
], | ||
model11: '', | ||
cityList1: cityList, | ||
model111: '', | ||
cityList2: [], | ||
model112: 'beijing', | ||
model12: [] | ||
} | ||
}, | ||
ready() { | ||
this.model111 = 'hangzhou' | ||
setTimeout(()=>{ | ||
this.cityList2 = cityList | ||
}, 500) | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters