Commit fdc8f681 authored by 薄玉虎's avatar 薄玉虎

修改隐患详情页隐患认定节点显示多次认定信息

parent 658d7065
......@@ -123,30 +123,34 @@
</div>
</div>
<div class="confirm-wrap" v-if="hdConfirm">
<div class="confirm-wrap" v-if="hdConfirm.length > 0">
<p>隐患认定</p>
<van-cell-group inset>
<van-cell-group
inset
v-for="(item, index) in hdConfirm"
:key="index"
>
<van-row gutter="">
<van-col span="7"
><span class="field-title">隐患整改人:</span></van-col
>
<van-col span="17">{{ hdConfirm.rectificationUser }}</van-col>
<van-col span="17">{{ item.rectificationUser }}</van-col>
</van-row>
<van-row gutter="">
<van-col span="7"
><span class="field-title">隐患复查人:</span></van-col
>
<van-col span="17">{{ hdConfirm.rectificationReview }}</van-col>
<van-col span="17">{{ item.rectificationReview }}</van-col>
</van-row>
<van-row gutter="">
<van-col span="7"
><span class="field-title">整改截止时间:</span></van-col
>
<van-col span="17">{{ hdConfirm.endTime }}</van-col>
<van-col span="17">{{ item.endTime }}</van-col>
</van-row>
<van-row gutter="">
<van-col span="7"><span class="field-title">意见:</span></van-col>
<van-col span="17">{{ hdConfirm.confirmOpinion }}</van-col>
<van-col span="17">{{ item.confirmOpinion }}</van-col>
</van-row>
<!-- <div v-show="confirmOpen">hdMajorApproveList
......@@ -451,7 +455,7 @@ export default {
majorOpenText: "展开 ▼",
hdReport: "",
hdConfirm: "",
hdConfirm: [],
hdMajorApproveList: [], // 重大隐患审批
beifenhdMajorList: [],
hdRectificationList: [],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment