修改bug
This commit is contained in:
parent
1e27c8732b
commit
bac27ae6b8
@ -335,7 +335,7 @@
|
|||||||
<el-table :data="fileList" :height="300">
|
<el-table :data="fileList" :height="300">
|
||||||
<el-table-column type="index" label="序号" width="55"></el-table-column>
|
<el-table-column type="index" label="序号" width="55"></el-table-column>
|
||||||
<el-table-column prop="materialType" label="材料类型" show-overflow-tooltip></el-table-column>
|
<el-table-column prop="materialType" label="材料类型" show-overflow-tooltip></el-table-column>
|
||||||
<!-- <el-table-column prop="name" label="文件名称" show-overflow-tooltip></el-table-column> -->
|
<el-table-column prop="name" label="文件名称" show-overflow-tooltip></el-table-column>
|
||||||
<el-table-column prop="createBy" label="上传人" show-overflow-tooltip></el-table-column>
|
<el-table-column prop="createBy" label="上传人" show-overflow-tooltip></el-table-column>
|
||||||
<el-table-column label="上传时间" show-overflow-tooltip>
|
<el-table-column label="上传时间" show-overflow-tooltip>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
|
|||||||
@ -57,7 +57,7 @@
|
|||||||
<el-table-column prop="signName" label="签字当事人" show-overflow-tooltip ></el-table-column>
|
<el-table-column prop="signName" label="签字当事人" show-overflow-tooltip ></el-table-column>
|
||||||
<el-table-column prop="signed" label="已签字当事人" show-overflow-tooltip ></el-table-column>
|
<el-table-column prop="signed" label="已签字当事人" show-overflow-tooltip ></el-table-column>
|
||||||
<el-table-column prop="unsign" label="未签字当事人" show-overflow-tooltip ></el-table-column>
|
<el-table-column prop="unsign" label="未签字当事人" show-overflow-tooltip ></el-table-column>
|
||||||
<el-table-column prop="updateByName" label="发起人" show-overflow-tooltip ></el-table-column>
|
<el-table-column prop="createByName" label="发起人" show-overflow-tooltip ></el-table-column>
|
||||||
<el-table-column label="状态" show-overflow-tooltip >
|
<el-table-column label="状态" show-overflow-tooltip >
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span v-if="scope.row.status.code != 3 && scope.row.status.code != 4 && scope.row.status.code != 5">{{ scope.row.signStatus.desc }}</span>
|
<span v-if="scope.row.status.code != 3 && scope.row.status.code != 4 && scope.row.status.code != 5">{{ scope.row.signStatus.desc }}</span>
|
||||||
|
|||||||
@ -725,7 +725,7 @@ export default {
|
|||||||
for (let i=0; i < this.queueList.length; i++) {
|
for (let i=0; i < this.queueList.length; i++) {
|
||||||
if (this.queueList[i].status.code === 1) {
|
if (this.queueList[i].status.code === 1) {
|
||||||
this.index = i
|
this.index = i
|
||||||
this.startOutboundCall({phone:this.queueList[i].phone,contactId:this.queueList[i].contactId})
|
this.startOutboundCall({phone:this.queueList[i].phone,contactId:this.queueList[i].contactId,queueName:this.queueList[i].queueName})
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -745,7 +745,7 @@ export default {
|
|||||||
this.contactId= params.contactId
|
this.contactId= params.contactId
|
||||||
console.log('进入呼叫电话:', params)
|
console.log('进入呼叫电话:', params)
|
||||||
try {
|
try {
|
||||||
let res = await window.tccc.Call.startOutboundCall({phoneNumber: this.phoneNumber, uuid: this.caseId})
|
let res = await window.tccc.Call.startOutboundCall({phoneNumber: this.phoneNumber, uuid: this.caseId,queueName:params.queueName})
|
||||||
this.sessionId = res.data.sessionId
|
this.sessionId = res.data.sessionId
|
||||||
console.log('呼叫成功', res.data)
|
console.log('呼叫成功', res.data)
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user