open() {
this.$confirm('是否移除此員工?', '提示', {
confirmButtonText: '確定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.$message({
type: 'success',
message: '移除成功!'
},
);
}
).catch(() => {
this.$message({
type: 'info',
message: '已取消移除'
});
});
},
delete(index,row){
console.log(index, row);
this.$axios.get("http://localhost:8080/check/satff/deletesatff",{
params:{
satffWorknum:row.satff_worknum
}
}).then(res=>{
this.reload();
})
},
轉載請註明出處,本文鏈接:https://www.uj5u.com/qianduan/268719.html
標籤:JavaScript
下一篇:谷歌瀏覽器上的盒子模型尺寸不精確
