Commit 69f2f609 authored by marsandheart's avatar marsandheart

添加一些问题

parent ff93c591
...@@ -54,7 +54,7 @@ export default function(props) { ...@@ -54,7 +54,7 @@ export default function(props) {
}; };
const clickChecked = () => { const clickChecked = () => {
if (!needCheck) { if (!needCheck || (needCheck && playStatus!== '3')) {
return; return;
} }
setChecked(questionId, !checked); setChecked(questionId, !checked);
......
This diff is collapsed.
...@@ -69,19 +69,20 @@ ...@@ -69,19 +69,20 @@
} }
.questionArea { .questionArea {
height: 90%; height: 90%;
overflow-x: hidden;
overflow-y: scroll;
border: 1px solid #999999; border: 1px solid #999999;
border-radius: 10px; border-radius: 10px;
padding: 0.15rem 0.3rem; padding: 0.1rem 0.3rem;
background-color: #ECE9EC; background-color: #ECE9EC;
.stepTitle{ .stepTitle{
font-size: 0.25rem; font-size: 0.25rem;
line-height: 0.3rem;
font-weight: bold; font-weight: bold;
} }
.stepQuestions{ .stepQuestions{
margin-top: 0.3rem; margin-top: 0.3rem;
overflow-x: hidden; // height: 88%;
overflow-y: scroll;
height: 88%;
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment