案件包进入案件列表

This commit is contained in:
liuxi 2024-12-26 18:12:37 +08:00
parent 3e73a924a5
commit 98f7d6e449
2 changed files with 3 additions and 3 deletions

View File

@ -438,8 +438,8 @@ import { values } from "lodash";
}, },
created() { created() {
if (this.$route.query.dataKey != undefined) { if (this.$route.query.pkgName != undefined) {
this.queryParam.pkgId = this.$route.query.pkgId; this.queryParam.pkgName = this.$route.query.pkgName;
} }
this.getCaseInfoList(1) this.getCaseInfoList(1)
}, },

View File

@ -125,7 +125,7 @@
<el-table-column label="操作" width="290"> <el-table-column label="操作" width="290">
<template slot-scope="scope"> <template slot-scope="scope">
<div class="flex-row align-items-center"> <div class="flex-row align-items-center">
<el-button size="mini" @click="jumpUrl(`/case-management?dataKey=casepack&pkgId=${scope.row.id}`)">查看</el-button> <el-button size="mini" @click="jumpUrl(`/case-management?dataKey=casepack&pkgName=${scope.row.pkgName}`)">查看</el-button>
<el-button size="mini" @click="handleCaseAllocation(scope)">案件分配</el-button> <el-button size="mini" @click="handleCaseAllocation(scope)">案件分配</el-button>
<!-- <el-button size="mini" @click="handleEdit(scope)">预设还款方案</el-button> --> <!-- <el-button size="mini" @click="handleEdit(scope)">预设还款方案</el-button> -->
<el-button size="mini" v-if="scope.row.assignTotal == 0" @click="handleDelete(scope)">删除</el-button> <el-button size="mini" v-if="scope.row.assignTotal == 0" @click="handleDelete(scope)">删除</el-button>