修改bug
This commit is contained in:
parent
125d079a83
commit
c5aa40e301
@ -89,7 +89,7 @@
|
|||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<div class="flex-row align-items-center" v-if="$util.getTimeContrast(scope.row.bookingEndTime)">
|
<div class="flex-row align-items-center" v-if="$util.getTimeContrast(scope.row.bookingEndTime)">
|
||||||
<!-- 只有进行中 快开始的时候才能进入视频间 -->
|
<!-- 只有进行中 快开始的时候才能进入视频间 -->
|
||||||
<el-button size="mini" v-if="scope.row.status.code == 0 || scope.row.status.code == 1 " @click="handleDelete(scope.row)">进入视频间</el-button>
|
<el-button size="mini" v-if="scope.row.status.code == 0 || scope.row.status.code == 1 " @click="handleGoToDetails(scope.row)">进入案件详情</el-button>
|
||||||
<el-button size="mini" v-if="scope.row.status.code == 0" @click="VideoDialog={id:scope.row.id, bookingTime:scope.row.bookingTime}">修改</el-button>
|
<el-button size="mini" v-if="scope.row.status.code == 0" @click="VideoDialog={id:scope.row.id, bookingTime:scope.row.bookingTime}">修改</el-button>
|
||||||
<el-button size="mini" v-if="scope.row.status.code == 0" @click="handleBackCase(scope.row)">取消</el-button>
|
<el-button size="mini" v-if="scope.row.status.code == 0" @click="handleBackCase(scope.row)">取消</el-button>
|
||||||
</div>
|
</div>
|
||||||
@ -197,7 +197,9 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
handleDelete() {},
|
handleGoToDetails(row) {
|
||||||
|
this.$router.push({path: '/mediation-page', query: {sourcePage: 'home', caseId: row.caseId}})
|
||||||
|
},
|
||||||
handleBackCase(row) {
|
handleBackCase(row) {
|
||||||
this.$confirm("请确定是否取消?", "提示", {
|
this.$confirm("请确定是否取消?", "提示", {
|
||||||
confirmButtonText: "确定",
|
confirmButtonText: "确定",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user