diff --git a/src/views/materialsStation/straight/straightTransferReview/index.vue b/src/views/materialsStation/straight/straightTransferReview/index.vue index 9bab09d2..7dfe6d8c 100644 --- a/src/views/materialsStation/straight/straightTransferReview/index.vue +++ b/src/views/materialsStation/straight/straightTransferReview/index.vue @@ -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, // 总条数 // 表头