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"){