提交 8ea6cc1c authored 作者: 钟是志's avatar 钟是志

26752 专场招聘---就业处自行增加专场招聘时,,,简章没有换成编辑器

上级 d561da38
......@@ -12,7 +12,6 @@ function checkHtml(htmlStr) {
}
export default function TextHtmlReader({ text }) {
console.log(checkHtml(text));
if (checkHtml(text)) {
return <div dangerouslySetInnerHTML={{ __html: text }} className='textReader'>
......
......@@ -77,8 +77,8 @@ export function getFileInfo(fileJsonStr) {
if (fileJsonStr && fileJsonStr.indexOf('http') <= -1 && fileJsonStr.length > 10) {
// 拼一站式的 图片路径 可能需要修改
let prefix = window.specialImportantSystemConfig && window.specialImportantSystemConfig.dfs;
if(fileJsonStr.startsWith('/u/')){ // 一站式的图片
console.log('一站式图片地址拼接')
if (fileJsonStr.startsWith('/u/')) { // 一站式的图片
console.log('一站式图片地址拼接');
prefix = window.specialImportantSystemConfig && window.specialImportantSystemConfig.sqlFormsServer;
}
return {
......@@ -135,7 +135,7 @@ export const zipImage = (file, fileSizeLimitMb = 3) => {
if (fileSizeMb < fileSizeLimitMb) {
// 1MB 以下的图片不需要压缩。
return new Promise((resolve, reject) => {
resolve(file)
resolve(file);
});
}
let reader = new FileReader();
......@@ -178,3 +178,17 @@ const dataURLtoFile = (dataurl, filename) => {
}
return new File([u8arr], filename, { type: mime });
};
export function formatFileJson(fileString) {
if (isJSON(fileString)) {
let fileAll = JSON.parse(fileString);
if (fileAll && Array.isArray(fileAll.files)) {
let files = fileAll.files;
for (let item of fileAll.files) {
item.path = getFileInfo(item.path).url;
}
return files;
}
}
return [];
}
......@@ -344,3 +344,4 @@ export function getIsBei_Dian() { // 判断当前环境是不是北电科学校
let name = window.specialImportantSystemConfig.schoolName;
return name.indexOf('北京电子科技') > -1;
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论