vue中删除时的弹框提示代码
this.$confirm('确认要删除该条数据吗?', '提示', { type: 'warning' }).then(() => {deleteDataById(userId).then(res => {if (res && res.data.code == "200") {...
·
reject() {
this.$confirm('确认要驳回机构条款自评数据吗?', '提示', { type: 'warning' })
.then(() => {
//方法调用
//...
}).catch(() => {//选择取消后执行
this.$notify({
title: "已取消",
type: 'info'
});
})
},
更多推荐
已为社区贡献1条内容
所有评论(0)