-
{{ task.displayName }}
-
- {{ task.ext.initiatorName
- }}({{task.ext.initiatorAccount}})
-
- {{ task.finishTime }}
-
-
-
-
+
+
+
校工会审核
-
- {{ task.taskFormData.userName
- }}({{task.taskFormData.loginName}})
-
- {{ task.finishTime }}
-
-
-
- {{
- task.taskFormData.opinion }}
-
-
-
- 暂无
-
+
+ {{ viewData.reviewTime }}
+
+ 待提交
+ 待审核确认
+ 报销成功
+ 拒绝
+ 退回
+ {{ viewData.stateId }}
+
+ {{ viewData.reviewOpinion }}
@@ -90,12 +192,18 @@ const unionReimburseInfo = {
`,
store,
- dicts: ["UNION_REIMBURSE_TYPE", "UNION_REIMBURSE_PAYMENT_WAY", "UNION_REIMBURSE_FUND_SOURCE","UNION_REIMBURSE_PROJECT","PROCESS_TASK_SUBMIT_TYPE"],
+ dicts: ["UNION_REIMBURSE_TYPE", "UNION_REIMBURSE_PAYMENT_WAY", "UNION_REIMBURSE_FUND_SOURCE", "UNION_REIMBURSE_PROJECT", "PROCESS_TASK_SUBMIT_TYPE"],
+ filters: {
+ dateFormat(date) {
+ if (!date) return '';
+ return moment(date).format('YYYY-MM-DD');
+ }
+ },
data() {
return {
visible: false,
viewData: {},
- doneTasks: [],
+ typeName: '',
row: null
}
},
@@ -105,32 +213,30 @@ const unionReimburseInfo = {
this.row = row
this.visible = true
this.getInfo()
- this.getDoneTasks()
},
// 获取申请信息
getInfo() {
this.$axios.post('/platform/unionReimburse/apply/info', {id: this.row.id}).then((res) => {
if (res.code === 0) {
this.viewData = res.data
+ this.typeName = res.data.typeName || ''
}
})
},
- // 获取已办任务审批记录
- getDoneTasks() {
- this.$axios.post("/flow/common/doneTasks", {bizId: this.row.id}).then((res) => {
- if (res.code === 0) {
- this.doneTasks = res.data
- }
- })
- },
-
- // 查看流程图
- openChart(){
- this.$refs.snakerChartRef.onOpenFull(this.row.instanceProcessDefineId,this.row.instanceId)
- }
+ // // 获取已办任务审批记录
+ // getDoneTasks() {
+ // this.$axios.post("/flow/common/doneTasks", {bizId: this.row.id}).then((res) => {
+ // if (res.code === 0) {
+ // this.doneTasks = res.data
+ // }
+ // })
+ // },
+ //
+ // // 查看流程图
+ // openChart(){
+ // this.$refs.snakerChartRef.onOpenFull(this.row.instanceProcessDefineId,this.row.instanceId)
+ // }
}
-
-
}
diff --git a/src/main/resources/views/platform/zhgh/dayofficework/unionReimburse/mine/index.html b/src/main/resources/views/platform/zhgh/dayofficework/unionReimburse/mine/index.html
index d1dd703d..56918866 100644
--- a/src/main/resources/views/platform/zhgh/dayofficework/unionReimburse/mine/index.html
+++ b/src/main/resources/views/platform/zhgh/dayofficework/unionReimburse/mine/index.html
@@ -13,24 +13,24 @@ layout("/layouts/platform.html"){