tj
This commit is contained in:
parent
8a2f523a73
commit
8482ee426a
@ -98,7 +98,7 @@ export default {
|
||||
codeBtnDisabled: false,
|
||||
ruleForm: {
|
||||
telephone: '',
|
||||
account: '17608289327',
|
||||
account: '18381082759',
|
||||
password: 'trydo@123456',
|
||||
smsCode: '',
|
||||
},
|
||||
|
||||
@ -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>
|
||||
|
||||
@ -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: {
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user