소스 검색

修改任务模块按钮显示逻辑

pull/99/head
余菲 1 년 전
부모
커밋
162f26d6f1
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      src/views/task-manage/tools/table.js

+ 2
- 2
src/views/task-manage/tools/table.js 파일 보기

@@ -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…
취소
저장