Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-2-capstone-design2
/
2017110269
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
MinsoftK
2020-12-14 18:16:16 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
d889a469081f672cb97dfbd877ae08832ef34dc9
d889a469
1 parent
4d12ff93
HTML 수정
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
45 deletions
mypro/client/src/Container/Html.js
mypro/client/src/Container/Tikz.js
mypro/client/src/component/tikzForm.js
mypro/client/src/Container/Html.js
View file @
d889a46
...
...
@@ -119,7 +119,7 @@ const Html = ({ visible, onCancel, callback }) => {
const
onFinish
=
async
values
=>
{
console
.
log
(
qnoCheck
);
if
(
!
qnoCheck
){
message
.
warning
(
"
문제
번호를 확인해 주세요."
)
message
.
warning
(
"
그림
번호를 확인해 주세요."
)
return
;
}
else
{
const
creator
=
sessionStorage
.
getItem
(
'id'
);
...
...
@@ -187,11 +187,11 @@ const Html = ({ visible, onCancel, callback }) => {
>
<
Form
.
Item
name
=
"qno"
label
=
"
문제
번호"
label
=
"
그림
번호"
rules
=
{[
{
required
:
true
,
message
:
'저장할
html
의 문항번호를 입력해 주세요.'
,
message
:
'저장할
그림
의 문항번호를 입력해 주세요.'
,
},
]}
>
<
Row
>
...
...
@@ -204,39 +204,26 @@ const Html = ({ visible, onCancel, callback }) => {
<
/InputNumber
>
<
/Col
>
<
Col
>
<
Button
onClick
=
{
onClickQno
}
>
번호
확인
<
/Button
>
<
Button
onClick
=
{
onClickQno
}
>
그림
번호
확인
<
/Button
>
<
/Col
>
<
/Row
>
<
/Form.Item
>
<
Form
.
Item
name
=
"typeSol"
label
=
"
문제
타입"
label
=
"
그림
타입"
rules
=
{[
{
required
:
true
,
message
:
'저장할
html의 문제
타입을 선택해 주세요.'
,
message
:
'저장할
그림의
타입을 선택해 주세요.'
,
},
]}
>
<
Select
onChange
=
{
onChangeTypeSol
}
>
<
Option
value
=
"오지선다형"
>
오지선다형
<
/Option
>
<
Option
value
=
"단답형"
>
단답형
<
/Option
>
<
Option
value
=
"계산식"
>
계산식
<
/Option
>
<
/Select
>
<
/Form.Item
>
<
Form
.
Item
name
=
"typeQue"
label
=
"문제/풀이 구분"
rules
=
{[
{
required
:
true
,
message
:
'저장할 html의 문제/풀이 구분을 선택해 주세요.'
,
},
]}
>
<
Select
onChange
=
{
onChangeTypeQue
}
>
<
Option
value
=
"문제"
>
문제
<
/Option
>
<
Option
value
=
"풀이"
>
풀이
<
/Option
>
<
Option
value
=
"오지선다형"
>
JPEG
<
/Option
>
<
Option
value
=
"단답형"
>
PNG
<
/Option
>
<
/Select
>
<
/Form.Item
>
<
Form
.
Item
label
=
"파일 업로드"
>
<
Form
.
Item
name
=
"html"
...
...
mypro/client/src/Container/Tikz.js
View file @
d889a46
...
...
@@ -43,15 +43,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
;
}
}
...
...
mypro/client/src/component/tikzForm.js
View file @
d889a46
...
...
@@ -24,11 +24,11 @@ console.log(fields);
<
Form
.
Item
name
=
"qno"
label
=
"
문제
번호"
label
=
"
그림
번호"
rules
=
{[
{
required
:
true
,
message
:
'
문항
번호를 입력해 주세요.'
,
message
:
'
그림
번호를 입력해 주세요.'
,
},
]}
><
Row
>
<
Col
>
...
...
@@ -46,23 +46,6 @@ console.log(fields);
<
/Form.Item
>
<
Form
.
Item
name
=
"typeSol"
label
=
"문제 타입"
wrapperCol
=
{{
span
:
2
}}
rules
=
{[
{
required
:
true
,
message
:
'문제 타입을 선택해 주세요.'
,
},
]}
>
<
Select
onChange
=
{
onChangeTypeSol
}
>
<
Option
value
=
"오지선다형"
>
오지선다형
<
/Option
>
<
Option
value
=
"단답형"
>
단답형
<
/Option
>
<
Option
value
=
"계산식"
>
계산식
<
/Option
>
<
/Select
>
<
/Form.Item
>
<
Form
.
Item
name
=
"typeQue"
label
=
"문제/풀이 구분"
rules
=
{[
...
...
Please
register
or
login
to post a comment