select 的数据是从后台获取的,用v-model做了绑定,获取数据后给绑定值设置了值,也实现了默认选择,但是却不能再选择了,始终都是设置的那个值,在绑定对象中加了设置初始值后才能正常选择

<a-select v-model="queryParam.pcId" style="width:300px;">
<a-select-option v-for="p in pcData" :key="p.id" :value="p.id">{{p.pcName}}</a-select-option>
</a-select>
queryParam:{pcId:''}, //设置了初始值后正常
getAction('/list', p).then(res => {
if (res.success) {
this.pcData = res.result.records
if (this.pcData.length > 0) {
this.queryParam.pcId = this.pcData[0].id
}
}
})