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

update:更新

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