From 603b255db671384312234be9bbcf2a5f9e7cdafa Mon Sep 17 00:00:00 2001 From: lohir <3399054449@qq.com> Date: 星期三, 16 十月 2024 10:57:20 +0800 Subject: [PATCH] bug --- src/views/class-management/ClassStaff.vue | 21 +++++++++++++++++---- 1 files changed, 17 insertions(+), 4 deletions(-) diff --git a/src/views/class-management/ClassStaff.vue b/src/views/class-management/ClassStaff.vue index 1fc7551..0df8115 100644 --- a/src/views/class-management/ClassStaff.vue +++ b/src/views/class-management/ClassStaff.vue @@ -60,7 +60,13 @@ > <template slot-scope="scope"> <el-button @click="handlerEditStudent(scope.row)" type="warning" size="small">缂栬緫</el-button> - <el-button @click="remove(scope.row.id)" type="danger" size="small">鍒犻櫎</el-button> + <el-popconfirm + style="margin: 0 5px" + title="纭畾瑕佸垹闄よ鎴愬憳鍚楋紵" + @confirm="remove(scope.row.id)" + > + <el-button slot="reference" type="danger" size="small">鍒犻櫎</el-button> + </el-popconfirm> </template> </el-table-column> </el-table> @@ -141,6 +147,7 @@ editClassesUser } from '@/api/classesUser' import Pagination from '@/components/Pagination' +import {deleteExamById} from "@/api/exam"; export default { components: { Pagination }, @@ -246,9 +253,15 @@ this.resetStudentForm() }, remove (id) { - deleteClassesUserById(id).then(res => { - this.$message.success(res.data.message) - this.page() + this.$confirm('纭鏄惁鍒犻櫎?', '鎻愮ず', { + confirmButtonText: '纭畾', + cancelButtonText: '鍙栨秷', + type: 'warning' + }).then(() => { + deleteClassesUserById(id).then(res => { + this.$message.success(res.data.message) + this.page() + }) }) }, sexFormatter (row) { -- Gitblit v1.8.0