This commit is contained in:
tdg930622 2025-01-21 10:37:01 +08:00
parent 8a2f523a73
commit 8482ee426a
3 changed files with 21 additions and 2 deletions

View File

@ -98,7 +98,7 @@ export default {
codeBtnDisabled: false,
ruleForm: {
telephone: '',
account: '17608289327',
account: '18381082759',
password: 'trydo@123456',
smsCode: '',
},

View File

@ -248,6 +248,7 @@
<script>
import api from "@/services/caseManagement";
import {mapState} from 'vuex'
import voiceCall from "@/services/voiceCall";
export default {
components: {
caseVideoReservationDialog: () => import('./caseVideoReservationDialog'),//
@ -452,6 +453,8 @@ export default {
that.resetTimer()
that.nextCall()
})
this.missedCallList();//
},
beforeDestroy() {
if(this.timerInterval) { //
@ -741,6 +744,14 @@ export default {
this.elapsedTime = 0;
this.isRunning = false;
},
//
missedCallList() {
voiceCall.notAnswerList({}).then(res => {
console.log(res, '---未接来电')
this.missedCallData.list = res
})
},
}
};
</script>

View File

@ -18,12 +18,20 @@ import voiceCall from "@/services/voiceCall";
export default {
name: "missedCallPopover",
props: {
missedCallList: {
missedCallData: {
type: Object,
default: () => {
return {}
},
},
},
data() {
return{
caseList: []
}
},
mounted() {
},
methods: {