直转记录查看

This commit is contained in:
hongchao 2025-09-03 14:42:57 +08:00
parent f9540e0bc1
commit 6669ae6d65
1 changed files with 5 additions and 3 deletions

View File

@ -36,9 +36,9 @@
</el-form> </el-form>
<el-row :gutter="10" class="mb8"> <el-row :gutter="10" class="mb8">
<el-col :span="1.5" v-hasPermi="['direct:info:add']"> <!-- <el-col :span="1.5" v-hasPermi="['direct:info:add']">
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd">直转申请</el-button> <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd">直转申请</el-button>
</el-col> </el-col> -->
<el-col :span="1.5"> <el-col :span="1.5">
<el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport">导出数据</el-button> <el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport">导出数据</el-button>
</el-col> </el-col>
@ -204,10 +204,12 @@ export default {
let params = {} let params = {}
if (type === 1) { if (type === 1) {
params = { type: 'detail', id: row.id } params = { type: 'detail', id: row.id }
this.$router.push({ path: '/transition/groundApply', query: params })
} else { } else {
params = { type: 'edit', id: row.id } params = { type: 'edit', id: row.id }
this.$router.push({ path: '/business/businessHandling/directApply', query: params })
} }
this.$router.push({ path: '/business/businessHandling/directApply', query: params })
}, },
// //
handleDelete(row) { handleDelete(row) {