站内直转
This commit is contained in:
parent
a76ea482c6
commit
c8f93c6d8b
|
|
@ -84,7 +84,7 @@
|
|||
type="text"
|
||||
size="mini"
|
||||
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)"
|
||||
>
|
||||
编辑
|
||||
|
|
@ -93,7 +93,7 @@
|
|||
type="text"
|
||||
size="mini"
|
||||
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)"
|
||||
style="color: red"
|
||||
>
|
||||
|
|
@ -137,10 +137,10 @@ export default {
|
|||
},
|
||||
// 状态
|
||||
statusOptions: [
|
||||
{ label: '待审核', value: '0' },
|
||||
{ label: '审核中', value: '1' },
|
||||
{ label: '已完成', value: '2' },
|
||||
{ label: '已驳回', value: '3' }
|
||||
{ label: '待审核', value: 0 },
|
||||
{ label: '审核中', value: 1 },
|
||||
{ label: '已通过', value: 2 },
|
||||
{ label: '已驳回', value: 3 }
|
||||
],
|
||||
total: 0, // 总条数
|
||||
// 表头
|
||||
|
|
|
|||
Loading…
Reference in New Issue