站内直转

This commit is contained in:
bb_pan 2025-09-27 23:11:10 +08:00
parent a76ea482c6
commit c8f93c6d8b
1 changed files with 6 additions and 6 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) && !auditingShow(scope.row)" v-if="(scope.row.status == 0 || scope.row.status == 3) && scope.row.userId == userId"
@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) && !auditingShow(scope.row)" v-if="(scope.row.status == 0 || scope.row.status == 3) && scope.row.userId == userId"
@click="handleDelete(scope.row)" @click="handleDelete(scope.row)"
style="color: red" style="color: red"
> >
@ -137,10 +137,10 @@ export default {
}, },
// //
statusOptions: [ statusOptions: [
{ label: '待审核', value: '0' }, { label: '待审核', value: 0 },
{ label: '审核中', value: '1' }, { label: '审核中', value: 1 },
{ label: '已完成', value: '2' }, { label: '已通过', value: 2 },
{ label: '已驳回', value: '3' } { label: '已驳回', value: 3 }
], ],
total: 0, // total: 0, //
// //