|
@@ -211,10 +211,10 @@
|
|
|
<template v-if="printDetails.recordList && printDetails.recordList.length > 0">
|
|
|
<div class="baseRow" style="display: flex" v-for="(item, index) in printDetails.recordList" :key="index">
|
|
|
<div class="contentRow" style="width: 80px">{{ item.nodeName }}</div>
|
|
|
- <div class="contentRow" style="width: calc(100% - 220px)">
|
|
|
- <span>审批意见: {{ item.remark }}</span>
|
|
|
- <span style="padding-left: 16px">审批人: {{ item.processedUser }}</span>
|
|
|
+ <div class="contentRow" style="width: calc(100% - 330px)">
|
|
|
+ <span v-if="item.remark">{{ item.remark }}</span>
|
|
|
</div>
|
|
|
+ <div class="contentRow" style="width: 110px">{{ item.processedUser }}</div>
|
|
|
<div class="contentRow" style="width: 140px">{{ item.processedDate }}</div>
|
|
|
</div>
|
|
|
</template>
|