antd vue select下拉选择回显数据问题

当回显customerType = 1004 的时候为什么不显示‘站内’框里显示‘1004’ ?
而且我打印了回显数据id是number,数组中的id也是number
antd vue select下拉选择回显数据问题

   data:[

{

id:1004,

typeName:'站内'

},

{

id:1005,

typeName:'站外'

}

]

<a-select v-model="form.customerType">

<a-select-option v-for="(item, index) in customerTypeMap" :value="item.id" :key="index">{{ item.typeName }}</a-select-option>

</a-select>


回答:

customerTypeMap中的数据是否正常。
value的值类型是否和form.customerType相同?

以上是 antd vue select下拉选择回显数据问题 的全部内容, 来源链接: utcz.com/p/935402.html

回到顶部