vue @change 第一次没有获取到值
<mt-popup
v-model="popupVisible1"
position="bottom">
{{value.id}}
<mt-radio
title="选择项目下单"
v-model="value"
:options="options" @change="monitor">
</mt-radio>
</mt-popup>
data(){
return{
value:"",
options:[],
}
}
monitor(){
this.$api.addShoppingCartQianyue({pro_id:this.value.id,mat_id:this.id,mod_id:this.materialId,colorId:this.colors[this.number1] ? this.colors[this.number1].id : '',elementId:this.element[this.number2] ? this.element[this.number2].id : '',styleId:this.style[this.number3] ? this.style[this.number3].id : '',textureId:this.texture[this.number4] ? this.texture[this.number4].id : '',memberId:localStorage.getItem("userId")?localStorage.getItem("userId"):localStorage.getItem("Identification"),num:this.num}).then(res =>{
this.nums = res.data.data
this.popupVisible1 = false
})
},
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有可能你的 @change 事件没触发,如果你依赖这个方法获取数据,你应该在生命周期中获取数据