lsc 2 years ago
parent
commit
c0745e128e
3 changed files with 15618 additions and 10 deletions
  1. 15604 1
      package-lock.json
  2. 1 1
      src/common/axios.config.js
  3. 13 8
      src/components/study.vue

File diff suppressed because it is too large
+ 15604 - 1
package-lock.json


+ 1 - 1
src/common/axios.config.js

@@ -1,6 +1,6 @@
 import axios from "axios"
 import qs from "qs"
-axios.defaults.timeout = 3000   //响应时间
+axios.defaults.timeout = 30000   //响应时间
 axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded;charset=UTF-8';        //配置请求头
 axios.defaults.baseURL = process.env.NODE_HOST;   //配置接口地址
 console.log(process.env)

+ 13 - 8
src/components/study.vue

@@ -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>

Some files were not shown because too many files changed in this diff