|
|
@@ -173,11 +173,12 @@ export function getBtnAvailability(
|
|
|
if (location === 'worklist' || location === 'historylist') {
|
|
|
const ok = Boolean(dataState.hasSelection);
|
|
|
const printOk = Boolean(dataState.hasSelection && dataState.hasImage);
|
|
|
+ const processOk = Boolean(dataState.hasSelection && dataState.hasImage);
|
|
|
console.log(
|
|
|
`当前是 ${location} 页面,hasSelection=${dataState.hasSelection},hasImage=${dataState.hasImage},exam/process 可用性=${ok},print 可用性=${printOk}`
|
|
|
);
|
|
|
row.exam = ok;
|
|
|
- row.process = ok;
|
|
|
+ row.process = processOk;
|
|
|
row.print = printOk;
|
|
|
}
|
|
|
|