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, codeBtnDisabled: false,
ruleForm: { ruleForm: {
telephone: '', telephone: '',
account: '17608289327', account: '18381082759',
password: 'trydo@123456', password: 'trydo@123456',
smsCode: '', smsCode: '',
}, },

View File

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

View File

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