Browse Source

Merge branch 'yufei' of gitadmin/tuoheng_pilot_web into develop

pull/100/head
yufei111 1 year ago
parent
commit
f5c76b4aa6
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/views/task-manage/tools/table.js

+ 2
- 2
src/views/task-manage/tools/table.js View File

@@ -134,7 +134,7 @@ const data = reactive({
text: true,
onClick: editHandle.bind(null, row, 'update')
},
show: row.status > 10 || row.inspectionType !== 1,
show: row.status < 11 && row.inspectionType === 1,
auth: 'task:all:edit'
},
{
@@ -145,7 +145,7 @@ const data = reactive({
onPositiveClick: deleteData.bind(null, row.id)
},
auth: 'task:all:delete',
show: row.status > 15 || row.inspectionType !== 1,
show: row.status < 16 && row.inspectionType === 1,
ButtonProps: {
text: true,
type: 'primary'

Loading…
Cancel
Save