Merge branch 'main' of http://139.155.124.81:8088/cloud-mediate/mediate-manage-web into main
This commit is contained in:
commit
ac3bddd0d5
@ -90,7 +90,7 @@
|
||||
</div>
|
||||
<div v-else class="flex-row justify-content-between align-items-center p-16 big-bottom-empty">
|
||||
<div class="color-FF7D00"><i class="el-icon-warning f16 color-FF7D00"></i>未找到相关案件</div>
|
||||
<div class="color-4E5969 flex-row align-items-center cursor-pointer">
|
||||
<div class="color-4E5969 flex-row align-items-center cursor-pointer" @click="handleMarkers">
|
||||
<svg-icon icon-class="bmld" className="tabs-svg-bmld" />
|
||||
<span>标记为不明来电</span>
|
||||
</div>
|
||||
@ -181,13 +181,15 @@ export default {
|
||||
}
|
||||
},
|
||||
// 标记来电
|
||||
async handleMarkers(item) {
|
||||
async handleMarkers() {
|
||||
try {
|
||||
// voiceCall.caseMatchList(this.queryParam).then(res => {
|
||||
// if (!res.code) {
|
||||
// this.tableData = res;
|
||||
// }
|
||||
// })
|
||||
let jsonData = {
|
||||
callingSessionId: this.acceptDialog.sessionId,
|
||||
phone: this.incomingCallPhone,
|
||||
}
|
||||
voiceCall.markUnknow(jsonData).then(res => {
|
||||
this.$message.success('标记成功!')
|
||||
})
|
||||
} catch (error) {
|
||||
console.error(`${error}`)
|
||||
}
|
||||
|
||||
@ -13,5 +13,13 @@ const api = {
|
||||
caseMatch: data => {
|
||||
return service.service.post(`${apiAdmin}caseMatch`, data)
|
||||
},
|
||||
// 标记电话
|
||||
markUnknow: data => {
|
||||
return service.service.post(`${apiAdmin}markUnknow`, data)
|
||||
},
|
||||
// 呼叫未接列表
|
||||
notAnswerList: data => {
|
||||
return service.service.post(`${apiAdmin}call/notAnswerList`, data)
|
||||
},
|
||||
}
|
||||
export default api;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user