修改bug

This commit is contained in:
张运江 2025-02-26 09:19:22 +08:00
parent 125d079a83
commit c5aa40e301

View File

@ -89,7 +89,7 @@
<template slot-scope="scope">
<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="handleBackCase(scope.row)">取消</el-button>
</div>
@ -197,7 +197,9 @@ export default {
}
})
},
handleDelete() {},
handleGoToDetails(row) {
this.$router.push({path: '/mediation-page', query: {sourcePage: 'home', caseId: row.caseId}})
},
handleBackCase(row) {
this.$confirm("请确定是否取消?", "提示", {
confirmButtonText: "确定",