element table批量删除_前后端分离Element UI删除和批量删除

批量删除

取消选择

{{ scope.row.name }}

删除

export default {

data() {

return {

multipleSelection: [],

delarr: [], //存放删除的数据

techSort: []

}

},

mounted: function() {

this.getTechSort();

},

methods: {

toggleSelection() {

this.$refs.multipleTable.clearSelection();

},

getTechSort: function() {

var _this = this;

_this.$http({

methods: 'GET',

url: 'http://47.101.51.245:8888/api/news/farmingTechnologySort',

header: {

'content-type': 'application/json'

}

}).then(function(res) {

if (res.data.code == 0) {

_this.techSort = res.data.data;

} else {

console.log(res.data.code);

alert('数据加载失败!');

}

})

},

handleSelectionChange(val) {

this.multipleSelection = val;

},

// 多选删除

delArray: function() {

var _this = this;

const length = this.multipleSelection.length;

for (let i = 0; i < length; i++) {

// console.log(this.multipleSelection[i])

this.delarr.push(this.multipleSelection[i].id);

console.log(this.delarr[i])

}

_this.$http({

method: 'GET',

url: 'http://localhost:8888/advertise2/deleteAll?ids=' + this.delarr,

header: {

'content-type': 'application/json'

}

}).then(function(res) {

if (res.data.code == 0) {

alert('成功!');

_this.getTechSort();

} else {

alert('数据加载失败!');

}

})

},

//单行删除

handleDelete(row) {

var _this = this;

_this.$http({

method: 'GET',

url: 'http://localhost:8888/advertise2/deleteAll?ids=' + row,

header: {

'content-type': 'application/json'

}

}).then(function(res) {

if (res.data.code == 0) {

alert('成功!');

_this.getTechSort();

} else {

alert('数据加载失败!');

}

})

}

}

}

公众号.png

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值