判断修改

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" placement="top"
width="400" width="400"
v-model="videoReminderVisible" v-model="videoReminderVisible"
:disabled="Object.keys(videoReminderData).length <= 0"
title="视频提醒" title="视频提醒"
trigger="click"> trigger="click">
<videoReminderPopover :videoReminderData="videoReminderData" :videoReminderVisible.sync="videoReminderVisible"/> <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">预约时间:{{ this.$util.formatDate(videoReminderData.bookingTime, 'YYYY-MM-DD HH:mm:ss') }}</div>-->
<div class="f12">来电时间2024-11-29 21:15:05</div> <div class="f12">来电时间2024-11-29 21:15:05</div>
</div> </div>
<el-button size="small" type="primary" @click="viewCase">查看</el-button> <el-button size="small" type="primary">查看</el-button>
</div> </div>
</div> </div>
</template> </template>
<script> <script>
import voiceCall from "@/services/voiceCall";
export default { export default {
name: "missedCallPopover", name: "missedCallPopover",
props: { props: {
@ -25,9 +26,7 @@ export default {
}, },
}, },
methods: { methods: {
viewCase() {
this.$router.push(`/mediation-page?sourcePage=sourcePage&caseId=${this.videoReminderData.caseId}`);
}
} }
} }
</script> </script>