码迷,mamicode.com
首页 > 数据库 > 详细

点击删除表格中的行并提交到数据库

时间:2019-04-10 13:37:56      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:点击   cli   提示   temp   data   his   pre   已取消   row   

html中:

<el-table-column prop="operation" label="操作" width="170">
<template slot-scope="scope">
<el-button size="small" type="danger" @click="deleteRow(scope.$index,scope.row)">删除</el-button>
</template>
</el-table-column>

data中:
myId:‘‘,

methods中:
deleteRow(index,row){
this.$confirm(‘此操作将永久删除该文件, 是否继续?‘, ‘提示‘, {
confirmButtonText: ‘确定‘,
cancelButtonText: ‘取消‘,
type: ‘warning‘
}).then(() => {
this.myId=this.measureTable[index].partDesignSizeId; //this.measureTable为表格 partDesignSizeId为每个行的特殊id号

//删除ajax
this.$ajax({
method: ‘get‘,
url: ‘/manage/measure/delete/design/size/by/id‘,
params:{
partDesignSizeId: this.myId,
},
}).then((response) =>{
var resData = response.data;
if (resData.success) {
this.$message({
type: ‘success‘,
message: ‘删除工艺成功!‘
});
this.measureTable.splice(index,1)
} else {
alert(resData.message);
}
})
}).catch(() => {
this.$message({
type: ‘info‘,
message: ‘已取消删除‘
});
});
},

点击删除表格中的行并提交到数据库

标签:点击   cli   提示   temp   data   his   pre   已取消   row   

原文地址:https://www.cnblogs.com/benbenbai/p/10682582.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!