使用async await改装MessageBox弹框
使用async await改装MessageBox弹框
·
element原始版
open() {
this.$confirm('此操作将永久删除该文件, 是否继续?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.$message({
type: 'success',
message: '删除成功!'
});
}).catch(() => {
this.$message({
type: 'info',
message: '已取消删除'
});
});
}
改装后
async delDep(id) {
const res = await this.$confirm('此操作将永久删除该文件, 是否继续?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).catch((err)=>err)
if(res === 'confirm') {
await this.del(id)
this.getInfo()
this.$message({
type: 'success',
message: '删除成功!'
})
}
}
更多推荐
已为社区贡献1条内容
所有评论(0)