tj
This commit is contained in:
parent
8a2f523a73
commit
8482ee426a
@ -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: '',
|
||||||
},
|
},
|
||||||
|
|||||||
@ -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>
|
||||||
|
|||||||
@ -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: {
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user