|
|
@ -140,7 +140,7 @@ |
|
|
|
|
|
|
|
<div class="detail" v-if="item.processName=='已办结'&&item.solveState!==''&&item.solveState!==null"> |
|
|
|
<div class="detail-field">问题解决情况:</div> |
|
|
|
<div class="detail-value">{{ solveState.find(v => v.value ===item.solveState).label }}</div> |
|
|
|
<div class="detail-value">{{ solveState.find(v => v.value ==item.solveState).label }}</div> |
|
|
|
</div> |
|
|
|
<div class="detail" v-if="item.processName=='已办结'&&item.solveEstimated!==''"> |
|
|
|
<div class="detail-field">预计解决时间:</div> |
|
|
@ -155,7 +155,7 @@ |
|
|
|
|
|
|
|
<div class="detail" v-if="item.processName==='已审核归档'&&item.examine!==''&&item.examine!==null"> |
|
|
|
<div class="detail-field">审核结果:</div> |
|
|
|
<div class="detail-value">{{ examine.find(v => v.value ===item.examine).label }}</div> |
|
|
|
<div class="detail-value">{{ examine.find(v => v.value ==item.examine).label }}</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
@ -166,12 +166,12 @@ |
|
|
|
|
|
|
|
<div class="detail" v-if="item.confirmSolved!==''&&item.confirmSolved!==null&&item.processName==='已审核归档'"> |
|
|
|
<div class="detail-field">问题是否已解决:</div> |
|
|
|
<div class="detail-value">{{ confirmSolved.find(v => v.value ===item.confirmSolved).label }}</div> |
|
|
|
<div class="detail-value">{{ confirmSolved.find(v => v.value ==item.confirmSolved).label }}</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="detail" v-if="item.satisfactionResult!==''&&item.satisfactionResult!==null&&item.processName==='已审核归档'"> |
|
|
|
<div class="detail-field">回访满意度结果:</div> |
|
|
|
<div class="detail-value">{{ satisfactionResult.find(v => v.value ===item.satisfactionResult).label }}</div> |
|
|
|
<div class="detail-value">{{ satisfactionResult.find(v => v.value ==item.satisfactionResult).label }}</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="detail" v-if="item.processName==='已退件'"> |
|
|
@ -189,14 +189,14 @@ |
|
|
|
|
|
|
|
<div class="detail" v-if="item.irregularity!==''&&item.irregularity!==null&&item.irregularity!==''&&item.irregularity!==null"> |
|
|
|
<div class="detail-field">填报不合规诉求:</div> |
|
|
|
<div class="detail-value">{{ irregularity.find(v => v.value ===item.irregularity).label }}</div> |
|
|
|
<div class="detail-value">{{ irregularity.find(v => v.value ==item.irregularity).label }}</div> |
|
|
|
</div> |
|
|
|
<div class="detail" v-if="item.nonComplianceType!==''&&item.nonComplianceType!==null&&item.irregularity!==''&&item.irregularity!==null"> |
|
|
|
<div class="detail-field">不合规诉求类型:</div> |
|
|
|
<div class="detail-value">{{ nonComplianceType.find(v => v.value ==item.nonComplianceType).label }}</div> |
|
|
|
</div> |
|
|
|
<div class="detail" v-if="item.irregularity!==''&&item.irregularity!==null"> |
|
|
|
<div class="detail-field">不合规诉求申请说明:</div> |
|
|
|
<div class="detail-field">不合规诉求说明:</div> |
|
|
|
<div class="detail-value">{{ item.nonComplianceNote }}</div> |
|
|
|
</div> |
|
|
|
|
|
|
@ -241,6 +241,7 @@ |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
<script> |
|
|
|
import { examine, confirmSolved, satisfactionResult, solveState, irregularity, nonComplianceType } from "@/js/columns/constants"; |
|
|
|
import { requestPost,requestGet } from "@/js/dai/request"; |
|
|
|
import { Loading } from "element-ui"; // 引入Loading服务 |
|
|
|
import foldText from "@/views/components/foldText"; |
|
|
@ -251,7 +252,7 @@ import dateFormat from "dai-js/tools/dateFormat"; |
|
|
|
import eventAdd from "./add"; |
|
|
|
import eventDetail from "./event-detail"; |
|
|
|
import processForm from "./process-form"; |
|
|
|
import { examine, confirmSolved, satisfactionResult, solveState, irregularity, nonComplianceType } from "@/js/columns/constants"; |
|
|
|
|
|
|
|
let loading; // 加载动画 |
|
|
|
function iniData() { |
|
|
|
return { |
|
|
@ -339,13 +340,14 @@ export default { |
|
|
|
if(this.pageType === 'check'){ |
|
|
|
this.replayDetail() |
|
|
|
} |
|
|
|
}, |
|
|
|
mounted() { |
|
|
|
this.pageTypeCopy = this.pageType; |
|
|
|
this.getProjectProcess(); |
|
|
|
if (this.eventId) { |
|
|
|
this.eventDetailCopy = JSON.parse(JSON.stringify(this.eventDetailData)); |
|
|
|
} |
|
|
|
}, |
|
|
|
mounted() { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}, |
|
|
|