fix: opl detail logsData显示bug

This commit is contained in:
caoqianming 2023-04-13 23:46:52 +08:00
parent 1460a6466a
commit 376f40c124
1 changed files with 2 additions and 2 deletions

View File

@ -201,7 +201,7 @@
<td class="tableTd" v-if="item.participant_str==null">
<span v-if="item.participant_">{{item.participant_.name}}</span>
<span v-if="item.participant_str">{{item.participant_str}}</span>
<!-- <el-image :src="item.signature" style="width: 60px"></el-image> -->
<el-image v-if="item.participant_ && item.participant_.signature" :src="item.participant_.signature" style="width: 60px"></el-image>
<!-- <img style="width:60px;vertical-align: bottom;" src="./../../../public/img/signature.jpg"> -->
</td>
<td class="tableTd" v-if="item.participant_str==null">{{ item.update_time }}</td>
@ -342,7 +342,7 @@
this.$API.wf.ticket.ticketFlowlogs.req(that.ticketId).then((res2) => {
if (res2.err_msg) {
} else {
that.logsData = res;
that.logsData = res2;
}
});
})