Commit 548745eb by qinjianhui

fix: 问题修改

parent c866cf85
......@@ -296,21 +296,23 @@
</ElTabPane>
<ElTabPane label="审核意见" name="four">
<div class="audit-opinion">
<div
v-for="(item, index) in versionList"
:key="index"
class="opinion_version"
>
<p>
{{ item.updateTime }}
{{ item.examinePeopleName }} 审核了样版,版本为{{
item.version
}},审核结果为【{{ item.state == 2 ? '通过 】' : ''
}}{{ item.state == 3 ? '不通过】' : '' }}
,审核意见如下:
</p>
<p v-dompurify-html="item.opinion"></p>
</div>
<template v-for="(item, index) in versionList" :key="index">
<div
v-if="item.examineImages.length"
:key="index"
class="opinion_version"
>
<p>
{{ item.updateTime }}
{{ item.examinePeopleName }} 审核了样版,版本为{{
item.version
}},审核结果为【{{ item.state == 2 ? '通过 】' : ''
}}{{ item.state == 3 ? '不通过】' : '' }}
,审核意见如下:
</p>
<p v-dompurify-html="item.opinion"></p>
</div>
</template>
</div>
</ElTabPane>
</ElTabs>
......
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