|
@@ -3,7 +3,15 @@
|
|
|
<h5>审核批注</h5>
|
|
<h5>审核批注</h5>
|
|
|
<ul v-if="remarkList.length > 0">
|
|
<ul v-if="remarkList.length > 0">
|
|
|
<li
|
|
<li
|
|
|
- v-for="{ id: remarkId, content, remark_person_name, remark_time, content_select, component_id } in remarkList"
|
|
|
|
|
|
|
+ v-for="{
|
|
|
|
|
+ id: remarkId,
|
|
|
|
|
+ content,
|
|
|
|
|
+ remark_person_name,
|
|
|
|
|
+ remark_time,
|
|
|
|
|
+ content_select,
|
|
|
|
|
+ component_id,
|
|
|
|
|
+ audit_flow_node_name,
|
|
|
|
|
+ } in remarkList"
|
|
|
:key="remarkId"
|
|
:key="remarkId"
|
|
|
>
|
|
>
|
|
|
<template v-if="content_select">
|
|
<template v-if="content_select">
|
|
@@ -25,6 +33,9 @@
|
|
|
/>
|
|
/>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
+ <div class="remark-bottom" v-if="audit_flow_node_name">
|
|
|
|
|
+ <span>{{ '审核流程节点:' + audit_flow_node_name }}</span>
|
|
|
|
|
+ </div>
|
|
|
</li>
|
|
</li>
|
|
|
</ul>
|
|
</ul>
|
|
|
<p v-else style="text-align: center">暂无批注</p>
|
|
<p v-else style="text-align: center">暂无批注</p>
|