From 7e9ec112f1a8fb59c473745353996dd71f9c95ee Mon Sep 17 00:00:00 2001 From: Paidax Date: Tue, 9 Sep 2025 18:59:36 +0800 Subject: [PATCH] commit --- .../staffbenefit/difficulthelp/common/info.js | 4 +- .../staffbenefit/difficulthelp/common/info.js | 100 +++++++++++++++++- 2 files changed, 97 insertions(+), 7 deletions(-) diff --git a/src/main/resources/views/platform/zhgh/staffbenefit/difficulthelp/common/info.js b/src/main/resources/views/platform/zhgh/staffbenefit/difficulthelp/common/info.js index 837f96ce..b5f176e3 100644 --- a/src/main/resources/views/platform/zhgh/staffbenefit/difficulthelp/common/info.js +++ b/src/main/resources/views/platform/zhgh/staffbenefit/difficulthelp/common/info.js @@ -32,8 +32,8 @@ const INFO = { - - + + diff --git a/src/main/resources/views/platform/zhghh5/staffbenefit/difficulthelp/common/info.js b/src/main/resources/views/platform/zhghh5/staffbenefit/difficulthelp/common/info.js index 3e405bc5..b96b299e 100644 --- a/src/main/resources/views/platform/zhghh5/staffbenefit/difficulthelp/common/info.js +++ b/src/main/resources/views/platform/zhghh5/staffbenefit/difficulthelp/common/info.js @@ -1,8 +1,94 @@ const INFO = { - template: /*language=HTML*/` + template: /*language=HTML*/ ` + +
+ + {{viewData.proxyUserName}} + {{viewData.proxyLoginName}} + {{viewData.mode == 1 ? '本人申请' : '替他人申请'}} + + {{ viewData.userName + '(' + viewData.loginName + ')' }} + {{viewData.sex}} + {{viewData.birthday}} + + {{viewData.unionName}} + {{viewData.unitName}} + {{viewData.officialCapacity}} + + {{viewData.mobile}} + {{viewData.idCard}} + {{viewData.monthlyIncome}} + + {{viewData.bankCardNum}} + {{viewData.subsidyStandards}} + {{viewData.reason}} + + + + + + + + + + + + + + + + + + + + + +
序号姓名年龄关系月收入(元)
{{ index + 1 }}{{ item.name }}{{ item.age }}{{ item.relation }}{{ item.monthlyIncome }}
+
+ + +
+ {{ viewData.files }} +
+
+ + + 暂无 + +
+ + +
+ +
`, data() { return { + visible: false, row: {}, viewData: {}, doneTasks: [], @@ -12,9 +98,16 @@ const INFO = { // 打开 onOpen(row) { this.row = row + this.visible = true this.info() this.getDoneTasks() }, + + // 关闭 + onClose(){ + this.visible = false + }, + // 获取申请信息 info() { this.$axios.post("/platform/difficultHelp/mine/findOne", { id: this.row.id }).then((res) => { @@ -23,6 +116,7 @@ const INFO = { } }) }, + // 获取已办任务审批记录 getDoneTasks() { this.$axios.post("/flow/common/doneTasks", { bizId: this.row.id }).then((res) => { @@ -31,9 +125,5 @@ const INFO = { } }) }, - // 查看流程图 - openChart(){ - this.$refs.snakerChartRef.onOpenFull(this.row.instanceProcessDefineId, this.row.instanceId) - } }, }