|
|
@@ -544,7 +544,7 @@ const printRequests = async(index, dataList)=> {
|
|
|
if(res.code==200){
|
|
|
showNotify({ type: 'success', duration: 3000, message: '打印已发起,请检查打印情况' });
|
|
|
}else {
|
|
|
- if(dataList[index].ignoreNoData && dataList[index].ignoreNoData==true && res.message.includes('NoData')){
|
|
|
+ if(dataList[index].ignoreNoData && dataList[index].ignoreNoData==true && (res.message.includes('打印数据为空') ||res.message.includes('ignoreNoData'))){
|
|
|
return
|
|
|
}
|
|
|
showNotify({ type: 'danger', duration: 3000, message:res.message || '未知系统错误,请联系开发人员' });
|