判断修改

This commit is contained in:
tdg930622 2025-01-21 10:03:27 +08:00
parent 55daf6e592
commit 8a2f523a73
2 changed files with 4 additions and 4 deletions

View File

@ -136,6 +136,7 @@
placement="top"
width="400"
v-model="videoReminderVisible"
:disabled="Object.keys(videoReminderData).length <= 0"
title="视频提醒"
trigger="click">
<videoReminderPopover :videoReminderData="videoReminderData" :videoReminderVisible.sync="videoReminderVisible"/>

View File

@ -8,12 +8,13 @@
<!-- <div class="f12">预约时间:{{ this.$util.formatDate(videoReminderData.bookingTime, 'YYYY-MM-DD HH:mm:ss') }}</div>-->
<div class="f12">来电时间2024-11-29 21:15:05</div>
</div>
<el-button size="small" type="primary" @click="viewCase">查看</el-button>
<el-button size="small" type="primary">查看</el-button>
</div>
</div>
</template>
<script>
import voiceCall from "@/services/voiceCall";
export default {
name: "missedCallPopover",
props: {
@ -25,9 +26,7 @@ export default {
},
},
methods: {
viewCase() {
this.$router.push(`/mediation-page?sourcePage=sourcePage&caseId=${this.videoReminderData.caseId}`);
}
}
}
</script>