|
|
@ -213,6 +213,21 @@ const isShowMainButton = (row, val) => { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// 导入导出展示与隐藏 |
|
|
|
const isShowMainExprotOrImportButton = (row, val) => { |
|
|
|
if(row.countMode == 2){ |
|
|
|
if (val.indexOf(row.status) > -1) { |
|
|
|
return false |
|
|
|
} else { |
|
|
|
return true |
|
|
|
} |
|
|
|
}else{ |
|
|
|
return true; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// 列表-操作按钮 |
|
|
|
const butttondata = (row, $index) => { |
|
|
|
return [ |
|
|
@ -224,7 +239,7 @@ const butttondata = (row, $index) => { |
|
|
|
{ |
|
|
|
label: '导出', |
|
|
|
name: 'exportCountJob', |
|
|
|
hide: isShowMainButton(row, ['1', '2']), |
|
|
|
hide: isShowMainExprotOrImportButton(row, ['1', '2']), |
|
|
|
type: 'primary', |
|
|
|
color: '', |
|
|
|
link: true, //文本展现按钮 |
|
|
@ -233,7 +248,7 @@ const butttondata = (row, $index) => { |
|
|
|
{ |
|
|
|
label: '导入', |
|
|
|
name: 'importCountJob', |
|
|
|
hide: isShowMainButton(row, ['2']), |
|
|
|
hide: isShowMainExprotOrImportButton(row, ['2']), |
|
|
|
type: 'success', |
|
|
|
color: '', |
|
|
|
link: true, //文本展现按钮 |
|
|
|