From f7276250f4e85dbebf87b97c0bf646a7952cc0a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E8=82=A5=E7=BE=8A?= <1048382248@qq.com> Date: Thu, 25 Sep 2025 16:44:25 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=20debugger?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/class/edit.vue | 1 - src/views/teacher/edit.vue | 1 - src/views/toschoolinfomanage/index.vue | 1 - 3 files changed, 3 deletions(-) diff --git a/src/views/class/edit.vue b/src/views/class/edit.vue index 8da2f5f..9a6de3c 100644 --- a/src/views/class/edit.vue +++ b/src/views/class/edit.vue @@ -261,7 +261,6 @@ const handlePagedCallback = () => { }; const handleSubmitForm = async () => { - debugger; if (props.id <= 0 || ClassNames.value.length < 1) { ElMessage.error("班级列表为空!"); return; diff --git a/src/views/teacher/edit.vue b/src/views/teacher/edit.vue index fb16dbc..1cfb886 100644 --- a/src/views/teacher/edit.vue +++ b/src/views/teacher/edit.vue @@ -386,7 +386,6 @@ const handleSubmitForm = async () => { } try { loading.value = true; - debugger; const postIdArr = positionList.value.map((s) => s.id).filter((s) => s != null); const addPArr = positionList.value diff --git a/src/views/toschoolinfomanage/index.vue b/src/views/toschoolinfomanage/index.vue index b8f3aeb..9478bd7 100644 --- a/src/views/toschoolinfomanage/index.vue +++ b/src/views/toschoolinfomanage/index.vue @@ -225,7 +225,6 @@ const tableRowClassName = ({ row, rowIndex }: { row: TableItem; rowIndex: number const d = new Date(row.endTime + " "); const startTime = new Date(row.times + " "); const daysDiff1 = (nD.getTime() - startTime.getTime()) / (1000 * 60 * 60 * 24); - debugger; const daysDiff = (d.getTime() - nD.getTime()) / (1000 * 60 * 60 * 24); if (daysDiff <= -errorDay) { return "error-row";