|
@@ -1356,7 +1356,7 @@
|
|
|
align-items: center;
|
|
|
"
|
|
|
>
|
|
|
- <div>
|
|
|
+ <div style="max-width: calc(100% - 285px);">
|
|
|
<span>{{ eItem.value }} </span>
|
|
|
</div>
|
|
|
<div
|
|
@@ -1380,7 +1380,7 @@
|
|
|
v-if="evalua != ''"
|
|
|
style="
|
|
|
border: 1px solid #e5e5e5;
|
|
|
- width: 55%;
|
|
|
+ width: 650px;
|
|
|
margin-top: 20px;
|
|
|
box-shadow: 3px 1px 15px 3px #e0e0e0;
|
|
|
"
|
|
@@ -1432,17 +1432,20 @@
|
|
|
<Mind
|
|
|
:showBar="false"
|
|
|
:mindData="data"
|
|
|
+ style="width: 100%"
|
|
|
v-show="typeMode == 1"
|
|
|
></Mind>
|
|
|
<Sunburst
|
|
|
:Josn="eJson"
|
|
|
:num="eJSONNum"
|
|
|
+ style="width: 100%"
|
|
|
v-if="typeMode == 2"
|
|
|
></Sunburst>
|
|
|
<SeeBoard
|
|
|
:Josn="eJson"
|
|
|
:num="eJSONNum"
|
|
|
:ename="eTitle"
|
|
|
+ style="width: 100%"
|
|
|
v-if="typeMode == 3"
|
|
|
></SeeBoard>
|
|
|
</div>
|
|
@@ -1831,7 +1834,7 @@
|
|
|
<img src="../assets/icon/question.png" alt />
|
|
|
</div>
|
|
|
<div class="queTitle">
|
|
|
- <div style="width:90px;min-width:90px;">提问:</div>
|
|
|
+ <div style="width: 90px; min-width: 90px">提问:</div>
|
|
|
<div>{{ answerQ }}</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -2805,7 +2808,9 @@ export default {
|
|
|
this.text = this.textList[this.taskCount][0];
|
|
|
}
|
|
|
}
|
|
|
- this.checkEva();
|
|
|
+ setTimeout(() => {
|
|
|
+ this.checkEva();
|
|
|
+ }, 500);
|
|
|
this.selectStudent();
|
|
|
this.selectSWorks();
|
|
|
let _this = this;
|
|
@@ -4599,7 +4604,8 @@ export default {
|
|
|
flex-direction: column;
|
|
|
}
|
|
|
.elist_input {
|
|
|
- width: 40%;
|
|
|
+ /* width: 40%; */
|
|
|
+ width: calc(100% - 670px);
|
|
|
}
|
|
|
.elist_input .elist_input_box input {
|
|
|
font: inherit;
|
|
@@ -4726,7 +4732,7 @@ export default {
|
|
|
}
|
|
|
.e_add_content {
|
|
|
display: flex;
|
|
|
- width: 750px;
|
|
|
+ width: 650px;
|
|
|
height: 550px;
|
|
|
}
|
|
|
.e_add_list {
|
|
@@ -4835,7 +4841,7 @@ export default {
|
|
|
}
|
|
|
|
|
|
.e_add_list_pbox {
|
|
|
- width: 750px;
|
|
|
+ width: 650px;
|
|
|
/* height: 600px; */
|
|
|
}
|
|
|
.e_add_list_pbox_title {
|
|
@@ -4891,5 +4897,4 @@ export default {
|
|
|
width: 125px;
|
|
|
margin-left: -25px;
|
|
|
}
|
|
|
-
|
|
|
</style>
|