|
@@ -1,5 +1,8 @@
|
|
|
<template>
|
|
|
- <div class="approve-control-container flex flex-row flex-row-aic">
|
|
|
+ <div :class="[
|
|
|
+ 'approve-control-container flex flex-row flex-row-aic',
|
|
|
+ flag === 'info' ? 'flex-row-jcsp' : 'flex-row-jcsa'
|
|
|
+ ]">
|
|
|
<!--
|
|
|
flag = info 几种状态
|
|
|
2处理中: 催办,撤销,下载文件
|
|
@@ -69,7 +72,8 @@ export default {
|
|
|
let state = Number(this.flagState)
|
|
|
let module = this.module
|
|
|
console.log(flag, state, module);
|
|
|
- const [urging, edit, revoke, ding, print, REISSUE, pushResult] = this.control
|
|
|
+ const [urging, edit, revoke, ding, print, REISSUE, applyApproval, pushResult] = this.control; /* disable-line */
|
|
|
+ console.log(applyApproval);
|
|
|
let temparr = []
|
|
|
|
|
|
if (flag === 'info') {
|
|
@@ -120,7 +124,8 @@ export default {
|
|
|
]
|
|
|
break;
|
|
|
case 3:
|
|
|
- if (module === 8) temparr.push(pushResult)
|
|
|
+ // 维修时添加上上传结果
|
|
|
+ if (module === 8 && (this.editData && this.editData.is_feedback)) temparr.push(pushResult)
|
|
|
temparr.push(print)
|
|
|
break;
|
|
|
// case 4: // 收到的没有状态
|
|
@@ -177,7 +182,7 @@ export default {
|
|
|
{
|
|
|
title: '上传反馈结果',
|
|
|
img: require('@/assets/icons-print.png'),
|
|
|
- event: this.handleEvent
|
|
|
+ event: this.handleUploadFeedback
|
|
|
}
|
|
|
]
|
|
|
}
|
|
@@ -186,6 +191,14 @@ export default {
|
|
|
handleEvent() {
|
|
|
this.$toast('等待功能实现中')
|
|
|
},
|
|
|
+ handleUploadFeedback() {
|
|
|
+ this.$router.push({
|
|
|
+ name: 'FeedbackResult',
|
|
|
+ query: {
|
|
|
+ id: this.id
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
// NOTE: 提醒
|
|
|
// TODO: 申请提醒/审批提醒
|
|
|
async handleDingEvent() {
|
|
@@ -270,7 +283,6 @@ export default {
|
|
|
&-container {
|
|
|
padding: 11px 24px 30px;
|
|
|
background-color: #f2f1f6;
|
|
|
- justify-content: space-between;
|
|
|
|
|
|
.item {
|
|
|
display: flex;
|