diff --git a/src/views/materialsStation/straight/straightTransferReview/index.vue b/src/views/materialsStation/straight/straightTransferReview/index.vue index 2d9fa3be..b33229e4 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" + 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' } }) },