提交 56c980c2 authored 作者: 钟是志's avatar 钟是志

显示学生头像

上级 e28a9a72
import React, { useState } from 'react';
import { isJSON } from '@/webPublic/one_stop_public/copy';
/***
......@@ -58,3 +59,55 @@ export function getIsNeedTransform(url) {
}
});
}
/**
* [
* {
* "downloadUrl":"http://192.168.1.122:8101/dsf/download?filePath=/u/upload/202009/08151011zzxg.png",
* "fileExt":"png",
* "fileName":"首页-系统导览.png",
* "filePath":"/u/upload/202009/08151011zzxg.png",
* "id":492,
* "previewType":"picture",
* "url":"http://192.168.1.122:8101/dsf/u/upload/202009/08151011zzxg.png",
* }]
*
* */
export function getFileInfo(fileJsonStr) {
if (!fileJsonStr || !isJSON(fileJsonStr)) {
if (
fileJsonStr &&
fileJsonStr.indexOf('http') <= -1 &&
fileJsonStr.length > 10
) {
// 勇哥喊的 拼url
const prefix = window.specialImportantSystemConfig && window.specialImportantSystemConfig.dfs
return {
downloadUrl: '',
url: prefix + fileJsonStr,
fileName: '',
};
} else {
if(fileJsonStr && fileJsonStr.indexOf('http') > -1 && fileJsonStr.length > 10){
return {
downloadUrl: '',
url: fileJsonStr,
fileName: '',
};
}else{
return {
downloadUrl: '',
url: '',
fileName: '',
};
}
}
} else {
return {
downloadUrl: '',
url: '',
fileName: '',
};
}
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论