소스 검색

deploy

master
Soleilw 4 달 전
부모
커밋
657247d3c0

+ 95
- 0
dist/186.3e7bbfe5.async.js
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


dist/737.a4421021.chunk.css → dist/192.a4421021.chunk.css 파일 보기


+ 37
- 0
dist/192.c998effb.async.js
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


+ 1
- 0
dist/297.55b5e26e.async.js
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


+ 0
- 2
dist/392.3fbe264f.async.js
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


+ 0
- 95
dist/720.a9c68f58.async.js
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


+ 0
- 36
dist/737.dce007d2.async.js
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


+ 1
- 1
dist/index.html 파일 보기

@@ -8,6 +8,6 @@
</head>
<body>
<div id="root"></div>
<script src="/umi.745f16d0.js"></script>
<script src="/umi.8c0465bb.js"></script>
</body>
</html>

+ 1
- 0
dist/p__Company__List__index.32e9f0d1.async.js
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


+ 0
- 1
dist/p__Company__List__index.797f7d42.async.js
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


+ 1
- 0
dist/p__Company__Post__index.ae14692b.async.js
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


+ 0
- 1
dist/p__Company__Post__index.be01c286.async.js
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


+ 1
- 0
dist/p__Fair__List__index.d40266c1.async.js
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


+ 0
- 1
dist/p__Fair__List__index.dddbe126.async.js
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


+ 0
- 1
dist/p__Feedback__index.025ff79c.async.js
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


+ 1
- 0
dist/p__Feedback__index.ca40b19e.async.js
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


+ 0
- 1
dist/p__Information__Article__index.916cbde7.async.js
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


+ 1
- 0
dist/p__Information__Article__index.ae6201c0.async.js
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


+ 0
- 1
dist/p__Jobseeker__List__index.07297ed5.async.js
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


+ 1
- 0
dist/p__Jobseeker__List__index.1765a639.async.js
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


+ 0
- 1
dist/p__Setting__System__index.6d7e41a0.async.js
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


+ 1
- 0
dist/p__Setting__System__index.c3924773.async.js
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


dist/umi.8c0465bb.js
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


+ 4
- 2
src/components/Common/rich/index.tsx 파일 보기

@@ -6,9 +6,11 @@ type RichModelProps = {
placeholder: string | number;
onChange : (values: object) => void;
};
const RichComponent: React.FC<RichModelProps> = ({ defaultValue,placeholder, onChange }) => {
const [editorValue, setEditorValue] = useState(defaultValue);

import he from 'he';
const RichComponent: React.FC<RichModelProps> = ({ defaultValue,placeholder, onChange }) => {
const [editorValue, setEditorValue] = useState(he.decode(defaultValue));
const handleChange = (content) => {
setEditorValue(content);
onChange(content);

+ 2
- 1
src/components/Render/Main/Information/Article/create/index.tsx 파일 보기

@@ -18,7 +18,7 @@ import { Imageprefix } from '@/constants';
import UploadModel from '@/components/Common/upload';
import DragUpload from '@/components/Common/dragupload';
import RichComponent from '@/components/Common/rich';
import he from 'he';

import { isArrayOfType } from '@/utils/dataHelper';

@@ -74,6 +74,7 @@ const PagesMainInformationArticleCreate: React.FC = ({ dispatch, dictModel, open
let res = await GetArticleDetail({ id: id })
setUploadedFilephotoName(res.data.cover_img)
res.data.section_arr = [res.data.section_name]
setDetail(res.data)
return res.data;
} else {

Loading…
취소
저장