tdg930622 8da38ba732 tj
2025-01-20 12:03:12 +08:00

39 lines
1011 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="dialog-missed-call pl-16 pr-16 pt-16">
<div class="flex-row justify-content-between align-items-center pb-16 border-b-solid-lighter-1">
<div class="width70">
<div class="color-000 f-weight600 f16">
张三 134****9400
</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>
<el-button size="small" type="primary" @click="viewCase">查看</el-button>
</div>
</div>
</template>
<script>
export default {
name: "missedCallPopover",
props: {
missedCallList: {
type: {},
default: () => {
return {}
},
},
},
methods: {
viewCase() {
this.$router.push(`/mediation-page?sourcePage=sourcePage&caseId=${this.videoReminderData.caseId}`);
}
}
}
</script>
<style scoped lang="scss">
.dialog-missed-call{
width: 395px;
}
</style>