diff --git a/frontend/src/views/home/components/table.vue b/frontend/src/views/home/components/table.vue index 538c024..87e0584 100644 --- a/frontend/src/views/home/components/table.vue +++ b/frontend/src/views/home/components/table.vue @@ -456,7 +456,16 @@ const getTableList = async (params: any) => { // 表格配置项 const columns = reactive[]>([ - { type: 'selection', fixed: 'left', width: 70, isShow:selectionShow }, + { type: 'selection', fixed: 'left', width: 70, + isShow:selectionShow , + selectable(row) { + if(weiJianTab.value === 4){ + console.log(row.reportState); + return row.reportState === 1 ; + } + return true ; + }, + }, { type: 'index', fixed: 'left', width: 70, label: '序号' }, { prop: 'name',