MinsoftK

fabric?

This diff is collapsed. Click to expand it.
......@@ -12,6 +12,7 @@
"axios": "^0.19.2",
"connected-react-router": "^6.8.0",
"draft-js": "^0.11.6",
"fabric": "^4.2.0",
"mysql": "^2.18.1",
"qs": "^6.9.4",
"react": "^16.13.1",
......
......@@ -26,15 +26,15 @@ const fetchCheckQno = async(qno) => {
const result = await checkQno(qno);
if(result.status===200){
console.log(result);
message.info("사용 가능한 문항 번호 입니다.");
message.info("사용 가능한 그림 번호 입니다.");
return true;
}else{
message.info("존재 하지 않는 문항 번호 입니다.");
message.info("존재 하지 않는 그림 번호 입니다.");
return false;
}
}catch(e){
console.log(e);
message.info("존재 하지 않는 문항 번호 입니다.");
message.info("존재 하지 않는 그림 번호 입니다.");
return false;
}
}
......@@ -127,7 +127,6 @@ const Html = ({ visible, onCancel, callback }) => {
const formData = new FormData();
formData.append('qno', values.qno);
formData.append('typeSol', values.typeSol);
formData.append('typeQue', values.typeQue);
formData.append('html', values.html[0]);
formData.append('creator', creator);
......@@ -138,7 +137,6 @@ const Html = ({ visible, onCancel, callback }) => {
let initFields = [
{name:['qno'],value:null},
{name:['typeSol'],value:null},
{name:['typeQue'],value:null},
{name:['creator'],value:null},
];
setQno(null);
......@@ -157,11 +155,6 @@ const Html = ({ visible, onCancel, callback }) => {
setFields([...fields, {name:['typeSol'],value:value}]);
}
const onChangeTypeQue = (value) => {
console.log(value);
setFields([...fields, {name:['typeQue'],value:value}])
}
const formItemLayout = {
......
......@@ -324,7 +324,7 @@ const fetchCheckQno = async(qno) => {
<ImageEditor
includeUI={{
loadImage: {
path: '../.img/1.jpg',
path: '../img/1.jpg',
name: 'SampleImage'
},
theme: myTheme,
......