提交 21fe5e2c authored 作者: 钟是志's avatar 钟是志

27667 毕业去向管理/单位改签管理---批量打印点开白屏

上级 867b19c9
...@@ -74,7 +74,7 @@ export function getIsNeedTransform(url) { ...@@ -74,7 +74,7 @@ export function getIsNeedTransform(url) {
* */ * */
export function getFileInfo(fileJsonStr) { export function getFileInfo(fileJsonStr) {
if (!fileJsonStr || !isJSON(fileJsonStr)) { if (!fileJsonStr || !isJSON(fileJsonStr)) {
if (fileJsonStr && fileJsonStr.indexOf('http') <= -1 && fileJsonStr.length > 10) { if (fileJsonStr && typeof fileJsonStr === 'string' && fileJsonStr.indexOf('http') <= -1 && fileJsonStr.length > 10) {
// 拼一站式的 图片路径 可能需要修改 // 拼一站式的 图片路径 可能需要修改
let prefix = window.specialImportantSystemConfig && window.specialImportantSystemConfig.dfs; let prefix = window.specialImportantSystemConfig && window.specialImportantSystemConfig.dfs;
if (fileJsonStr.startsWith('/u/')) { // 一站式的图片 if (fileJsonStr.startsWith('/u/')) { // 一站式的图片
...@@ -87,7 +87,7 @@ export function getFileInfo(fileJsonStr) { ...@@ -87,7 +87,7 @@ export function getFileInfo(fileJsonStr) {
fileName: '', fileName: '',
}; };
} else { } else {
if (fileJsonStr && fileJsonStr.indexOf('http') > -1 && fileJsonStr.length > 10) { if (fileJsonStr && typeof fileJsonStr === 'string' && fileJsonStr.indexOf('http') > -1 && fileJsonStr.length > 10) {
return { return {
downloadUrl: '', downloadUrl: '',
url: fileJsonStr, url: fileJsonStr,
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论