From 458aeeb6c8a71aca8578a7c27a275cb9fecb9f78 Mon Sep 17 00:00:00 2001 From: zhangrui Date: Tue, 1 Sep 2026 10:40:36 +0800 Subject: [PATCH] =?UTF-8?q?fix=5F=E4=BC=9A=E5=91=98=E6=A8=A1=E5=9D=97UI?= =?UTF-8?q?=E6=B5=8B=E8=AF=95=E6=95=B4=E6=94=B9=EF=BC=9A=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E5=8D=A1=E7=89=87=E6=A0=87=E9=A2=98=E6=A0=8F=E4=BC=98=E5=8C=96?= =?UTF-8?q?=EF=BC=8C=E6=9F=A5=E7=9C=8B=E3=80=81=E5=AE=A1=E6=A0=B8=E6=8C=89?= =?UTF-8?q?=E9=92=AE=E9=9C=80=E8=A6=81=E4=BB=8E=E5=8F=B3=E5=90=91=E5=B7=A6?= =?UTF-8?q?=E6=8A=BD=E5=B1=89=E5=BC=8F=E6=89=93=E5=BC=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../apply/branchunionapproval/index.html | 12 +-- .../staffmanage/member/apply/common/info.js | 18 +++-- .../apply/schoolunionapproval/index.html | 12 +-- .../member/apply/submit/index.html | 77 +++++++++++-------- .../staffmanage/member/info/group/index.html | 15 +++- .../zhghh5/staffmanage/member/theme.css | 63 +++++++++++---- 6 files changed, 128 insertions(+), 69 deletions(-) diff --git a/src/main/resources/views/platform/zhghh5/staffmanage/member/apply/branchunionapproval/index.html b/src/main/resources/views/platform/zhghh5/staffmanage/member/apply/branchunionapproval/index.html index be480f84..c69017e3 100644 --- a/src/main/resources/views/platform/zhghh5/staffmanage/member/apply/branchunionapproval/index.html +++ b/src/main/resources/views/platform/zhghh5/staffmanage/member/apply/branchunionapproval/index.html @@ -430,17 +430,17 @@ layout("/layouts/platform_h5.html"){ // 查看详情 onView(row) { - this.showApprovalForm = false - this.$refs.infoRef.onOpen(row) + this.$set(this, "showApprovalForm", false) + this.$refs.infoRef.onOpen(row, "入会申请详情") }, onApproval(row) { - this.showApprovalForm = true - this.$refs.infoRef.onOpen(row) - this.formData = { + this.$set(this, "showApprovalForm", true) + this.$refs.infoRef.onOpen(row, "分工会审核") + this.$set(this, "formData", { processTaskId: row.taskId, taskName: row.curTaskName - } + }) }, handleTaskAction(val) { diff --git a/src/main/resources/views/platform/zhghh5/staffmanage/member/apply/common/info.js b/src/main/resources/views/platform/zhghh5/staffmanage/member/apply/common/info.js index 41f178fc..d94ce5bb 100644 --- a/src/main/resources/views/platform/zhghh5/staffmanage/member/apply/common/info.js +++ b/src/main/resources/views/platform/zhghh5/staffmanage/member/apply/common/info.js @@ -1,7 +1,10 @@ const INFO = { template: /*language=HTML*/ ` - + +
+
@@ -115,14 +118,16 @@ const INFO = { +
- - +
+ `, dicts: ["PROCESS_TASK_SUBMIT_TYPE"], data() { return { visible: false, + popupTitle: "入会申请详情", row: {}, viewData: {}, doneTasks: [], @@ -134,10 +139,11 @@ const INFO = { methods: { /** * 打开入会申请详情。 - * row 传列表当前申请记录,至少包含申请 id;无返回值,详情和已办任务并行加载。 + * row 传列表当前申请记录,至少包含申请 id;popupTitle 传右侧抽屉导航标题;无返回值。 */ - onOpen(row) { + onOpen(row, popupTitle = "入会申请详情") { this.$set(this, "row", row) + this.$set(this, "popupTitle", popupTitle) window.h5HistoryLayerManager.ensureRegistered("member-apply-detail") window.h5HistoryLayerManager.open(this.historyLayerName) this.detailLoading = true diff --git a/src/main/resources/views/platform/zhghh5/staffmanage/member/apply/schoolunionapproval/index.html b/src/main/resources/views/platform/zhghh5/staffmanage/member/apply/schoolunionapproval/index.html index 9c9aef85..ade55e24 100644 --- a/src/main/resources/views/platform/zhghh5/staffmanage/member/apply/schoolunionapproval/index.html +++ b/src/main/resources/views/platform/zhghh5/staffmanage/member/apply/schoolunionapproval/index.html @@ -430,17 +430,17 @@ layout("/layouts/platform_h5.html"){ // 查看详情 onView(row) { - this.showApprovalForm = false - this.$refs.infoRef.onOpen(row) + this.$set(this, "showApprovalForm", false) + this.$refs.infoRef.onOpen(row, "入会申请详情") }, onApproval(row) { - this.showApprovalForm = true - this.$refs.infoRef.onOpen(row) - this.formData = { + this.$set(this, "showApprovalForm", true) + this.$refs.infoRef.onOpen(row, "校工会审核") + this.$set(this, "formData", { processTaskId: row.taskId, taskName: row.curTaskName - } + }) }, handleTaskAction(val) { diff --git a/src/main/resources/views/platform/zhghh5/staffmanage/member/apply/submit/index.html b/src/main/resources/views/platform/zhghh5/staffmanage/member/apply/submit/index.html index 2eef542f..3ebe0509 100644 --- a/src/main/resources/views/platform/zhghh5/staffmanage/member/apply/submit/index.html +++ b/src/main/resources/views/platform/zhghh5/staffmanage/member/apply/submit/index.html @@ -4,11 +4,11 @@ layout("/layouts/platform_h5.html"){