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 @@
+
+
+
+
+
+
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 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{row.userName}}
+ {{row.unionName}}
+ {{row.unitName}}
+
+
+
+
+
+
+
+
+ {{row.money}}
+
+
+
+
+
+ 查看
+
+
+
+ 编辑
+
+
+
+ 撤回
+
+
+
+ 删除
+
+
+
+
+
+
+
+
+
+
+
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 }}
+
+
+
+
+ {{ getFileName(item.name) }}
+
+
+
+
+
+
+
+
+ {{ task.displayName }}
+
+
+
+ {{ task.ext.initiatorName}}({{task.ext.initiatorAccount}})
+
+
+ {{ task.finishTime}}
+
+
+
+
+
+
+
+ {{ task.taskFormData.userName}}({{task.taskFormData.loginName}})
+
+
+ {{ task.finishTime}}
+
+
+
+
+
+
+ {{
+ task.taskFormData.opinion
+ }}
+
+
+
+
+
+
+
+
+
+
+
+ `,
+ 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 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{row.userName}}
+ {{row.unionName}}
+ {{row.unitName}}
+
+
+
+
+
+
+
+
+ {{row.money}}
+
+
+
+
+
+ 查看
+
+
+
+ 编辑
+
+
+
+ 撤回
+
+
+
+ 删除
+
+
+
+
+
+
+
+
+
+
+
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 @@
+
+
+
+
+
+
+ {this.pageForm.approval = val==='1';this.doSearch();}">
+
+
+
+
+
+
+
+
+ {{row.userName}}
+ {{row.unionName}}
+ {{row.unitName}}
+
+
+
+
+
+
+
+
+ {{row.money}}
+
+
+
+
+
+ 查看
+
+
+
+ 审核
+
+
+
+
+
+
+
+
+
+
+
+
+