vue_UI组件库vant之加载转圈


 async onConfirm() { this.$toast.loading({ message: '保存中...', forbidClick: true, // 禁止背景点击 duration: 0 // 持续展示 }) try { const localGender = this.localGender await updateUserprofile({ gender: localGender }) // 更新视图
        this.$emit('input', localGender) // 关闭弹层
        this.$emit('close') // 提示成功
       this.$toast.success('更新成功') } catch (err) { this.$toast.fail('更新失败') } }, onPickerChange(picker, value, index) { this.localGender = index } } }

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM