站内直转

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"
size="mini"
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)"
>
编辑
@ -93,7 +93,7 @@
type="text"
size="mini"
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)"
style="color: red"
>
@ -152,6 +152,7 @@ export default {
{ label: '转出班组', prop: 'backTeamName', showToolTip: false },
{ label: '转入工程', prop: 'leaseProName', showToolTip: false },
{ label: '转入班组', prop: 'leaseTeamName', showToolTip: false },
{ label: '物资类型', prop: 'typeName', showToolTip: true },
{ label: '状态', prop: 'status', showToolTip: true, width: '80' }
]
}
@ -202,7 +203,7 @@ export default {
query: {
...row,
taskId: row.id,
type: type === 1 ? 'detail' : 'edit',
type: type === 1 ? 'detail' : 'edit'
}
})
},