|
@@ -124,7 +124,18 @@ export default {
|
|
|
},
|
|
|
|
|
|
remove (node, data) {
|
|
|
- console.log(data)
|
|
|
+ this.$confirm('确认要删除这条信息吗?', '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ }).then(() => {
|
|
|
+ this.generalDataReception(3, data, this.tableKey)
|
|
|
+ }).catch(() => {
|
|
|
+ this.$message({
|
|
|
+ type: 'info',
|
|
|
+ message: '已取消登录'
|
|
|
+ });
|
|
|
+ });
|
|
|
},
|
|
|
|
|
|
restData () {
|