From 2742befa3d611712d1da52d7f51b9d30f9845612 Mon Sep 17 00:00:00 2001 From: zhouhefeng Date: Mon, 29 Dec 2025 14:10:22 +0800 Subject: [PATCH] commit --- .../delegate/push/dwSjAudit.html | 23 +++++++++++++------ 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/src/main/resources/views/platform/zhgh/democratic/teachercongress/delegate/push/dwSjAudit.html b/src/main/resources/views/platform/zhgh/democratic/teachercongress/delegate/push/dwSjAudit.html index f7527e3a..c6840640 100644 --- a/src/main/resources/views/platform/zhgh/democratic/teachercongress/delegate/push/dwSjAudit.html +++ b/src/main/resources/views/platform/zhgh/democratic/teachercongress/delegate/push/dwSjAudit.html @@ -14,6 +14,20 @@ layout("/layouts/platform.html"){ :key="item.id"> + + + + + @@ -154,7 +168,7 @@ layout("/layouts/platform.html"){ data() { return { sessionOptions: [], - units: [], + unionOptions: [], pageForm: { isFormalOrAttendance: "全部", unionId: "", @@ -263,11 +277,6 @@ layout("/layouts/platform.html"){ }) }) }, - listUnion() { - this.$businessTool.listUnit().then((res) => { - this.units = res - }) - }, listSession() { this.$axios.post("/platform/teacherCongress/common/listSession").then((res) => { if (res.code === 0) { @@ -281,7 +290,7 @@ layout("/layouts/platform.html"){ } }, async created() { - this.listUnion() + this.$businessTool.listUnion().then((res) => (this.unionOptions = res)) this.listSession() } })