From f2c5ccf515b3dd4633d3a56a7c7b959c8d43bd65 Mon Sep 17 00:00:00 2001 From: = <=> Date: Wed, 10 Sep 2025 17:31:26 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B7=A5=E4=BC=9A=E6=8A=A5=E9=94=80=E7=A7=BB?= =?UTF-8?q?=E5=8A=A8=E7=AB=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../unionReimburse/apply/index.html | 942 ++++++++++++++++++ .../unionReimburse/collect/index.html | 149 +++ .../dayofficework/unionReimburse/info.js | 163 +++ .../unionReimburse/mine/index.html | 141 +++ .../unionReimburse/review/index.html | 175 ++++ 5 files changed, 1570 insertions(+) create mode 100644 src/main/resources/views/platform/zhghh5/dayofficework/unionReimburse/apply/index.html create mode 100644 src/main/resources/views/platform/zhghh5/dayofficework/unionReimburse/collect/index.html create mode 100644 src/main/resources/views/platform/zhghh5/dayofficework/unionReimburse/info.js create mode 100644 src/main/resources/views/platform/zhghh5/dayofficework/unionReimburse/mine/index.html create mode 100644 src/main/resources/views/platform/zhghh5/dayofficework/unionReimburse/review/index.html diff --git a/src/main/resources/views/platform/zhghh5/dayofficework/unionReimburse/apply/index.html b/src/main/resources/views/platform/zhghh5/dayofficework/unionReimburse/apply/index.html new file mode 100644 index 00000000..8ea09234 --- /dev/null +++ b/src/main/resources/views/platform/zhghh5/dayofficework/unionReimburse/apply/index.html @@ -0,0 +1,942 @@ + + + +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ 取消 +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + +
+ 保存 + 提交 + 提交1 +
+
+
+
+ + diff --git a/src/main/resources/views/platform/zhghh5/dayofficework/unionReimburse/collect/index.html b/src/main/resources/views/platform/zhghh5/dayofficework/unionReimburse/collect/index.html new file mode 100644 index 00000000..9081c921 --- /dev/null +++ b/src/main/resources/views/platform/zhghh5/dayofficework/unionReimburse/collect/index.html @@ -0,0 +1,149 @@ + + +
+ + + + + + + + + + + + + + + + +
+ + + + diff --git a/src/main/resources/views/platform/zhghh5/dayofficework/unionReimburse/info.js b/src/main/resources/views/platform/zhghh5/dayofficework/unionReimburse/info.js new file mode 100644 index 00000000..97a5641f --- /dev/null +++ b/src/main/resources/views/platform/zhghh5/dayofficework/unionReimburse/info.js @@ -0,0 +1,163 @@ +const UNION_REIMBURSE_INFO = { + template: + /*language=HTML*/` + +
+ + {{ viewData.userName }} + {{ viewData.loginName }} + {{ viewData.unitName }} + {{ viewData.unionName }} + + + + + + + + + + + + + {{ viewData.mobile }} + {{ viewData.clubName }} + {{ viewData.fundBalance }} + {{ viewData.bankUserName }} + {{ viewData.bankCardNumber }} + {{ viewData.bankOfDeposit }} + {{ viewData.condolenceName }} + {{ viewData.condolenceMobile }} + {{ viewData.typeName }} + {{ viewData.money }} + {{ viewData.condolenceTime }} + {{ viewData.activityName }} + {{ viewData.activityType }} + {{ viewData.activityNumber }} + {{ viewData.activityPlace }} + {{ viewData.money }} + {{ viewData.activityTime }} + {{ viewData.invoiceNumber }} + {{ viewData.invoice }} + {{ viewData.paymentNotes }} + +
+ +
+
+
+ + + +
+ +
+ `, + dicts: ["UNION_REIMBURSE_TYPE", "UNION_REIMBURSE_PAYMENT_WAY", "UNION_REIMBURSE_FUND_SOURCE","UNION_REIMBURSE_PROJECT","PROCESS_TASK_SUBMIT_TYPE"], + data() { + return { + visible:false, + viewData: {}, + doneTasks: [], + row: null, + } + }, + methods: { + // 获取文件名 + getFileName(url) { + if (!url) return ''; + const fileName = url.split('/').pop(); + return fileName.length > 15 ? fileName.substring(0, 15) + '...' : fileName; + }, + + //预览文件 + previewOptionImg(files, index) { + const file = files[index]; + if (!file || !file.url) return; + + // 所有文件都在新窗口打开 + window.open(file.url, '_blank'); + }, + onOpen(row) { + this.row = row + this.visible = true + this.getInfo() + this.getDoneTasks() + }, + // 关闭 + onClose(){ + this.visible = false + }, + // 获取申请信息 + getInfo() { + this.$axios.post("/platform/unionReimburse/apply/info", {id: this.row.id}).then((res) => { + if (res.code === 0) { + this.viewData = res.data + } + }) + }, + // 查看 + openView(id) { + this.$nextTick(() => { + this.$refs.infoDialogRef.onOpen(id) + }) + }, + // 获取已办任务审批记录 + getDoneTasks() { + this.$axios.post("/flow/common/doneTasks", {bizId: this.row.id}).then((res) => { + if (res.code === 0) { + this.doneTasks = res.data + } + }) + }, + }, + +} diff --git a/src/main/resources/views/platform/zhghh5/dayofficework/unionReimburse/mine/index.html b/src/main/resources/views/platform/zhghh5/dayofficework/unionReimburse/mine/index.html new file mode 100644 index 00000000..1f7a895e --- /dev/null +++ b/src/main/resources/views/platform/zhghh5/dayofficework/unionReimburse/mine/index.html @@ -0,0 +1,141 @@ + + +
+ + + + + + + + + + + + + + + +
+ + + + diff --git a/src/main/resources/views/platform/zhghh5/dayofficework/unionReimburse/review/index.html b/src/main/resources/views/platform/zhghh5/dayofficework/unionReimburse/review/index.html new file mode 100644 index 00000000..7aba0b38 --- /dev/null +++ b/src/main/resources/views/platform/zhghh5/dayofficework/unionReimburse/review/index.html @@ -0,0 +1,175 @@ + + +
+ + + + + + + + + + + + + + + + +
+
+ 校工会审核 +
+
+ + + + + + + + + + +
+ 退回到发起人 + 拒绝申请 + 同意申请 +
+
+
+
+
+ +
+ + + +