站内直转

This commit is contained in:
bb_pan 2025-09-27 14:20:35 +08:00
parent 77ede824c0
commit f1881049e5
1 changed files with 4 additions and 3 deletions

View File

@ -84,7 +84,7 @@
type="text" type="text"
size="mini" size="mini"
icon="el-icon-edit" icon="el-icon-edit"
v-if="scope.row.status == 0 || scope.row.status == 3" v-if="(scope.row.status == 0 || scope.row.status == 3) && !auditingShow(scope.row)"
@click="handleEdit(scope.row)" @click="handleEdit(scope.row)"
> >
编辑 编辑
@ -93,7 +93,7 @@
type="text" type="text"
size="mini" size="mini"
icon="el-icon-delete" icon="el-icon-delete"
v-if="scope.row.status == 0 || scope.row.status == 3" v-if="(scope.row.status == 0 || scope.row.status == 3) && !auditingShow(scope.row)"
@click="handleDelete(scope.row)" @click="handleDelete(scope.row)"
style="color: red" style="color: red"
> >
@ -152,6 +152,7 @@ export default {
{ label: '转出班组', prop: 'backTeamName', showToolTip: false }, { label: '转出班组', prop: 'backTeamName', showToolTip: false },
{ label: '转入工程', prop: 'leaseProName', showToolTip: false }, { label: '转入工程', prop: 'leaseProName', showToolTip: false },
{ label: '转入班组', prop: 'leaseTeamName', showToolTip: false }, { label: '转入班组', prop: 'leaseTeamName', showToolTip: false },
{ label: '物资类型', prop: 'typeName', showToolTip: true },
{ label: '状态', prop: 'status', showToolTip: true, width: '80' } { label: '状态', prop: 'status', showToolTip: true, width: '80' }
] ]
} }
@ -202,7 +203,7 @@ export default {
query: { query: {
...row, ...row,
taskId: row.id, taskId: row.id,
type: type === 1 ? 'detail' : 'edit', type: type === 1 ? 'detail' : 'edit'
} }
}) })
}, },