提交 bcc81e96 编写于 作者: Mosher's avatar Mosher

update:更新

上级 318937a3
......@@ -153,7 +153,7 @@ ${front_block}
<#noparse>requestUrl = `/${Util.srfpluralize(actionContext.context.srfparentdename).toLowerCase()}/${actionContext.context.srfparentkey}` + requestUrl;</#noparse>
}
} else {
actionContext.$Notice.error({ title: '错误', desc: 'actionContext.$t('app.utilview.nodatakey')' });
actionContext.$Notice.error({ title: '错误', desc: actionContext.$t('app.utilview.nodatakey') });
return;
}
requestUrl += '?srfprinttag=${item.getPSAppDEPrint().codeName}';
......@@ -166,10 +166,10 @@ ${front_block}
const link = window.URL.createObjectURL(response.data);
window.open(link, '_blank');
} else {
actionContext.$Notice.error({ title: '错误', desc: 'actionContext.$t('app.utilview.printerror')' });
actionContext.$Notice.error({ title: '错误', desc: actionContext.$t('app.utilview.printerror') });
}
<#else>
actionContext.$Notice.error({ title: '错误', desc: 'actionContext.$t('app.utilview.noprint')' });
actionContext.$Notice.error({ title: '错误', desc: actionContext.$t('app.utilview.noprint') });
</#if>
<#-- END: 前台处理模式:打印 -->
<#-- BEGIN: 前台处理模式:数据导入 -->
......@@ -205,7 +205,7 @@ ${front_block}
}
});
<#else>
actionContext.$Notice.warning({ title: '警告', desc: 'actionContext.$t('app.utilview.info')' });
actionContext.$Notice.warning({ title: '警告', desc: actionContext.$t('app.utilview.info') });
</#if>
<#-- END: 前台处理模式:数据导入 -->
<#-- BEGIN: 前台处理模式:数据导出 -->
......@@ -240,15 +240,15 @@ ${front_block}
const reader = new FileReader();
reader.readAsText(error.data, 'utf-8');
reader.onload = (event: any) => {
const message = JSON.parse(event.target.result)?.message;
actionContext.$Notice.error({ title: '错误', desc: 'actionContext.$t('app.grid.exportexcel.error')' });
const message = event && event.target && event.target.result && JSON.parse(event.target.result) ? JSON.parse(event.target.result) : '';
actionContext.$Notice.error({ title: '错误', desc: message ? message : actionContext.$t('app.grid.exportexcel.error') });
}
} catch (error) {
actionContext.$Notice.error({ title: '错误', desc: 'actionContext.$t('app.grid.exportexcel.error')' });
actionContext.$Notice.error({ title: '错误', desc: actionContext.$t('app.grid.exportexcel.error') });
}
}
<#else>
actionContext.$Notice.warning({ title: '警告', desc: 'actionContext.$t('app.grid.exportexcel.error')' });
actionContext.$Notice.warning({ title: '警告', desc: actionContext.$t('app.grid.exportexcel.error') });
</#if>
<#-- END: 前台处理模式:数据导出 -->
<#-- BEGIN: 前台处理模式:打开HTML -->
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册