|
@@ -85,13 +85,13 @@ export default {
|
|
|
},
|
|
|
handleDel: function (row, index) {
|
|
|
var _this = this;
|
|
|
- this.$confirm("是否强制" + row.access_token + "下线?", "提示", {
|
|
|
+ this.$confirm("是否强制" + row.accessToken + "下线?", "提示", {
|
|
|
confirmButtonText: "确定",
|
|
|
cancelButtonText: "取消",
|
|
|
type: "warning",
|
|
|
})
|
|
|
.then(function () {
|
|
|
- return delObj(row.access_token);
|
|
|
+ return delObj(row.accessToken);
|
|
|
})
|
|
|
.then(() => {
|
|
|
_this.$message.success("强制下线成功");
|