我的需求场景是,护士站护士签名最多选择两个
1.思路,在select 选择用户(@change)的时候,判断已经选择的数组长度,话不多说上代码
<a-select showArrow mode="multiple" v-model="toursuccession" :allowClear="true" @change="nurserQuery">
<a-select-option v-for="i in nurserole" :key="i.id">
{{ i.actualname }}
</a-select-option>
</a-select>
2.数据双向绑定 v-model
3.change的时候判断,如果长度大于2,直接删除就可以了
if(this.toursuccession.length>2){
this.$message.error('最多只能选择两个护士')
this.toursuccession.pop()
}