mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-12 03:01:12 +00:00
33 lines
911 B
Vue
33 lines
911 B
Vue
<template>
|
||
<div class="open-approve-details" :data-id="msg.data.id">
|
||
<b>{{ msg.data.comment_nickname }}评论了此审批</b>
|
||
<div class="cause">
|
||
<p>申请人:<span class="mark-color">@{{ msg.data.nickname }}</span> {{ msg.data.department }}</p>
|
||
<b>评论内容</b>
|
||
<p>{{ msg.data.comment_content }}</p>
|
||
<p v-if="isPicture">[图片]</p>
|
||
</div>
|
||
<div class="btn-raw no-dark-content">
|
||
<button class="ivu-btn ivu-btn-grey">查看详情</button>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script lang="ts">
|
||
export default {
|
||
props: {
|
||
msg: Object,
|
||
},
|
||
data() {
|
||
return {};
|
||
},
|
||
computed: {
|
||
isPicture() {
|
||
const {comment_pictures} = this.msg.data
|
||
return $A.isArray(comment_pictures) && comment_pictures.length > 0
|
||
},
|
||
},
|
||
methods: {},
|
||
}
|
||
</script>
|