handleDelModel(row) { this.$confirm(`此操作将永久删除${row.name}, 是否继续?`, "提示", { confirmButtonText: "确定", cancelButtonText: "取消", type: "warning" }).then(() => { this.$store.dispatch("removeSide", { $router: this.$router, $message: this.$message, id: row.id }); }); } }