Merge branch 'main' into 'stg'
Main See merge request cloud-mediate/mediate-manage-web!115
This commit is contained in:
commit
8937a9b21b
@ -722,7 +722,12 @@ export default {
|
||||
callingQueue() {
|
||||
api.callingQueue({}).then(res => {
|
||||
this.queueList = res.queue || []
|
||||
this.caseId = String(res.queue[0].caseId) || ''
|
||||
let nocalllist = res.queue.filter(item =>{return item.status.code == 1})
|
||||
// scope.row.status.code === 1
|
||||
this.caseId = String(nocalllist[0].caseId) || ''
|
||||
this.queueList.forEach((item,index) =>{
|
||||
if(item.caseId == this.caseId){this.index = index}
|
||||
})
|
||||
this.getCaseInfoById()
|
||||
})
|
||||
},
|
||||
|
||||
@ -131,7 +131,7 @@
|
||||
</div>
|
||||
<!-- 视频 -->
|
||||
<div v-if="itemrecord.linkedWay == 2" class="flex-row align-items-center pt-6">
|
||||
<div v-if="itemrecord.linkedType == 1">视频{{itemrecord.linkedDuration}}秒</div>
|
||||
<div v-if="itemrecord.linkedType == 1">视频{{itemrecord.linkedDuration | secondsToMinutes}}</div>
|
||||
<el-divider v-if="itemrecord.linkedType == 1" direction="vertical"></el-divider>
|
||||
<div class="text-center cursor-pointer" v-for="(item,index) in itemrecord.files" :key="index" @click="handleCaseShowFile(item)">
|
||||
<i class="f14 el-icon-video-play"></i> 播放视频 {{index > 0 ? index : ''}}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user