|
@@ -643,17 +643,25 @@ export default {
|
|
|
.catch(() => { });
|
|
|
},
|
|
|
delSjkdbOwner() {
|
|
|
- this.$http({
|
|
|
- url: "/market/SjkdbProcessOwner/delBatch",//SjkdbProcessOwner
|
|
|
- method: "post",
|
|
|
- headers: {
|
|
|
- "Content-Type": "application/json",
|
|
|
- },
|
|
|
- data: { delId: this.SjkdbOwnerdelId },
|
|
|
- }).then((res) => {
|
|
|
- this.getSjkdbOwnerTable({}, this.pageSizeSjkdbOwner)
|
|
|
- this.handleSjkdbOwnerStatus = false
|
|
|
+ this.$confirm("即将删除数据, 是否删除?", "提示", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning",
|
|
|
})
|
|
|
+ .then(() => {
|
|
|
+ this.$http({
|
|
|
+ url: "/market/SjkdbProcessOwner/delBatch",//SjkdbProcessOwner
|
|
|
+ method: "post",
|
|
|
+ headers: {
|
|
|
+ "Content-Type": "application/json",
|
|
|
+ },
|
|
|
+ data: { delId: this.SjkdbOwnerdelId },
|
|
|
+ }).then((res) => {
|
|
|
+ this.getSjkdbOwnerTable({}, this.pageSizeSjkdbOwner)
|
|
|
+ this.handleSjkdbOwnerStatus = false
|
|
|
+ })
|
|
|
+ })
|
|
|
+ .catch(() => { });
|
|
|
},
|
|
|
handleSelectionChangeSjkdbOwner(val) {
|
|
|
this.SjkdbOwnerdelId = []
|