lsc hace 1 año
padre
commit
c44c87025f

+ 1 - 1
dist/index.html

@@ -25,7 +25,7 @@
       height: 100%;
       width: 100%;
       background: #e6eaf0;
-    }</style><link href=./static/css/app.b802501fe89570c52cf3f7607640c4fc.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.3512a67a6213c2df4180.js></script><script type=text/javascript src=./static/js/vendor.f1661c5ebfd33221b88f.js></script><script type=text/javascript src=./static/js/app.d638465f9831ac49f524.js></script></body></html><script>function stopSafari() {
+    }</style><link href=./static/css/app.69c478cdcfd811e80ef9c511c35cd227.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=./static/js/manifest.3512a67a6213c2df4180.js></script><script type=text/javascript src=./static/js/vendor.f1661c5ebfd33221b88f.js></script><script type=text/javascript src=./static/js/app.585b21f7d6ae510772ec.js></script></body></html><script>function stopSafari() {
     //阻止safari浏览器双击放大功能
     let lastTouchEnd = 0  //更新手指弹起的时间
     document.documentElement.addEventListener("touchstart", function (event) {

La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 0 - 0
dist/static/css/app.69c478cdcfd811e80ef9c511c35cd227.css


La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 0 - 0
dist/static/css/app.69c478cdcfd811e80ef9c511c35cd227.css.map


La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 0 - 0
dist/static/css/app.b802501fe89570c52cf3f7607640c4fc.css


La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 0 - 0
dist/static/css/app.b802501fe89570c52cf3f7607640c4fc.css.map


La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 0 - 0
dist/static/js/app.585b21f7d6ae510772ec.js


La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 0 - 0
dist/static/js/app.585b21f7d6ae510772ec.js.map


La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 0 - 0
dist/static/js/app.d638465f9831ac49f524.js


La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 0 - 0
dist/static/js/manifest.3512a67a6213c2df4180.js.map


+ 76 - 30
src/components/pages/addCourse.vue

@@ -1022,10 +1022,10 @@
                                 步骤 {{ toolIndex + 1 }} :
                               </div>
                               <div class="chooseWho">
-                                <!-- <div :class="itemTool.toolType == 0 ? 'isChooseActive' : ''
-                              " @click="(itemTool.toolType = 0), $forceUpdate()">
-                              互动类
-                            </div> -->
+                                <div :class="itemTool.toolType == 0 ? 'isChooseActive' : ''
+                                  " @click="(itemTool.toolType = 0), $forceUpdate()">
+                                  互动类
+                                </div>
                                 <div :class="itemTool.toolType == 1 ? 'isChooseActive' : ''
                                   " @click="(itemTool.toolType = 1), $forceUpdate()">
                                   思维类
@@ -1130,7 +1130,7 @@
                                 </div>
                               </div>
                             </div> -->
-                                <div class="tool">
+                                <!-- <div class="tool">
                                   <div class="whiteBIcon" @click="openTools(itemTaskIndex, 62, toolIndex)">
                                     <img src="../../assets/icon/fourthToolList/interVideo.png" alt />
                                     <div style="margin: 5px 0">交互视频</div>
@@ -1141,7 +1141,7 @@
                                       <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
                                     </div>
                                   </div>
-                                </div>
+                                </div> -->
                               </div>
                               <div class="toolSort" v-if="itemTool.toolType == 1">
                                 <div class="tool">
@@ -2254,10 +2254,10 @@
                 @click="checkAskType('2', askJson.askJson[index1])">多选题</span>
             </div>
             <div class="a_add_head">
-              <div>
+              <div style="display: flex;align-items: center;">
                 {{ index1 + 1 + "、" }}
-                <el-input class="a_add_head_input" v-model="askJson.askJson[index1].askstitle" placeholder="请输入题目...">
-                </el-input>
+                <textarea class="a_add_head_input textarea_css"  v-autoHeight="40" v-model="askJson.askJson[index1].askstitle
+                        " placeholder="请输入题目..." ></textarea>
               </div>
               <div class="a_add_head_div">
                 <el-button type="primary" size="small" @click="addAskList()">添加</el-button>
@@ -2266,10 +2266,14 @@
               </div>
             </div>
             <div class="a_add_body">
-              <div class="a_add_input">
-                <el-input v-for="(item2, checkIndex) in askJson.askJson[index1].askItem" :key="checkIndex"
-                  v-model="askJson.askJson[index1].checkList[checkIndex]" placeholder="请输入选项..."
-                  style="width: 150px; margin: 10px 10px 0 0"></el-input>
+              <div class="a_add_input" style="flex-direction: column;">
+                <div  v-for="(item2, checkIndex) in askJson.askJson[index1].askItem"  :key="checkIndex" style=" margin: 20px 10px 0 0;display: flex;align-items:center;">
+                  <div style="margin-right: 10px">
+                    选项{{ checkIndex + 1 }}
+                  </div>
+                  <textarea class="a_add_head_input textarea_css"   v-autoHeight="40" v-model="askJson.askJson[index1].checkList[checkIndex]
+                        " placeholder="请输入选项..." style="width: 300px;" ></textarea>  
+                </div>
               </div>
               <div class="a_add_body_div">
                 <el-button style="margin: 10px 0px 0 0" type="primary" size="small"
@@ -2313,11 +2317,12 @@
             </div>
             <div class="a_add_head">
               <div class="timuUpImg">
-                <div>
+                <div style="display: flex;align-items: center;">
                   {{ index1 + 1 + "、" }}
-                  <el-input class="a_add_head_input" v-model="testJson.testJson[index1].teststitle"
+                  <!-- <el-input class="a_add_head_input"  v-autoHeight="40" resize="none" v-model="testJson.testJson[index1].teststitle" type="textarea"
                     placeholder="请输入题目...">
-                  </el-input>
+                  </el-input> -->
+                  <textarea class="a_add_head_input textarea_css"  v-autoHeight="40" v-model="testJson.testJson[index1].teststitle" placeholder="请输入题目..."></textarea>
                 </div>
                 <div class="xzUpImg" @click.stop="addImg($event)">
                   <img src="../../assets/icon/xzUpImg.png" alt="" />
@@ -2372,8 +2377,8 @@
                         </div>
                       </div>
 
-                      <el-input v-else v-model="testJson.testJson[index1].checkList[checkIndex]
-                        " placeholder="请输入选项..." style="width: 300px; margin-right: 10px"></el-input>
+                      <textarea class="a_add_head_input textarea_css"  v-autoHeight="40" v-else v-model="testJson.testJson[index1].checkList[checkIndex]
+                        " placeholder="请输入选项..." style="width: 300px; margin-right: 10px" ></textarea>
                       <div class="xzUpImg" @click.stop="addImg($event)">
                         <img src="../../assets/icon/xzUpImg.png" alt="" />
                         <input type="file" accept="image/*" style="display: none"
@@ -2412,8 +2417,8 @@
                         </div>
                       </div>
 
-                      <el-input v-else v-model="testJson.testJson[index1].checkList[checkIndex1]
-                        " placeholder="请输入选项..." style="width: 300px; margin-right: 10px"></el-input>
+                      <textarea class="a_add_head_input textarea_css"  v-autoHeight="40" v-else v-model="testJson.testJson[index1].checkList[checkIndex1]
+                        " placeholder="请输入选项..." style="width: 300px; margin-right: 10px" ></textarea>
                       <div class="xzUpImg" @click.stop="addImg($event)">
                         <img src="../../assets/icon/xzUpImg.png" alt="" />
                         <input type="file" accept="image/*" style="display: none"
@@ -3155,7 +3160,7 @@ export default {
                     {
                       tool: [],
                       toolDetail: "",
-                      toolType: 1,
+                      toolType: 0,
                       askCount: 1,
                       askTitle: "",
                       askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
@@ -3204,7 +3209,7 @@ export default {
       pTypeCheck: [],
       pTypeCheckName: [],
       loading: false,
-      toolType: 1,
+      toolType: 0,
       inputShow: true,
       inputShow2: true,
       toolIndex: 0,
@@ -3232,6 +3237,21 @@ export default {
       videoJson: {},
     };
   },
+  directives: {
+    autoHeight: {
+      update(el, binding) {
+        const { value } = binding
+        if (value && typeof value === 'number') {
+          el.style.height = `${value}px`
+        } else {
+          el.style.height = 'auto'
+        }
+      },
+      componentUpdated(el) {
+        el.style.height = `${el.scrollHeight}px`
+      },
+    },
+  },
   computed: {
     // rightBoxHeight: function () {
     //   return $(".rightBox")[0] ? $(".rightBox")[0].scrollHeight : 1000
@@ -4666,7 +4686,7 @@ export default {
                   {
                     tool: [],
                     toolDetail: "",
-                    toolType: 1,
+                    toolType: 0,
                     askCount: 1,
                     askTitle: "",
                     askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
@@ -4703,7 +4723,7 @@ export default {
       ].toolChoose.push({
         tool: [],
         toolDetail: "",
-        toolType: 1,
+        toolType: 0,
         askCount: 1,
         askTitle: "",
         askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
@@ -4719,7 +4739,7 @@ export default {
           {
             tool: [],
             toolDetail: "",
-            toolType: 1,
+            toolType: 0,
             askCount: 1,
             askTitle: "",
             askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
@@ -5332,7 +5352,7 @@ export default {
                         {
                           tool: [],
                           toolDetail: "",
-                          toolType: 1,
+                          toolType: 0,
                           askCount: 1,
                           askTitle: "",
                           askJson: [
@@ -5396,7 +5416,7 @@ export default {
                         {
                           tool: [],
                           toolDetail: "",
-                          toolType: 1,
+                          toolType: 0,
                           askCount: 1,
                           askTitle: "",
                           askJson: [
@@ -6104,7 +6124,9 @@ export default {
     },
     checkTestType(type, json) {
       json.type = type;
-      json.answer = [];
+      setTimeout(()=>{
+        json.answer = [];
+      },100)
     },
     checkAskType(type, json) {
       json.type = type;
@@ -6360,7 +6382,7 @@ export default {
             {
               tool: [],
               toolDetail: "",
-              toolType: 1,
+              toolType: 0,
               askCount: 1,
               askTitle: "",
               askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
@@ -6410,7 +6432,7 @@ export default {
                     {
                       tool: [],
                       toolDetail: "",
-                      toolType: 1,
+                      toolType: 0,
                       askCount: 1,
                       askTitle: "",
                       askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
@@ -10796,4 +10818,28 @@ ol {
   height: calc(100% - 0px);
   overflow: auto;
 }
+
+.textarea_css{
+  display: block;
+  resize: none;
+  padding: 10px 15px;
+  line-height: 1.5;
+  box-sizing: border-box;
+  width: 100%;
+  font-size: 14px;
+  color: #606266;
+  background-color: #FFF;
+  background-image: none;
+  border: 1px solid #DCDFE6;
+  border-radius: 4px;
+  transition: border-color .2s cubic-bezier(.645,.045,.355,1);
+  outline: none;
+  overflow:hidden;
+  height: 40px;
+}
+
+.textarea_css:focus {
+    border-color: #409EFF;
+    outline: 0;
+}
 </style>

+ 75 - 29
src/components/pages/easy/addCourse.vue

@@ -422,10 +422,10 @@
                                 步骤 {{ toolIndex + 1 }} :
                               </div>
                               <div class="chooseWho">
-                                <!-- <div :class="itemTool.toolType == 0 ? 'isChooseActive' : ''
+                                <div :class="itemTool.toolType == 0 ? 'isChooseActive' : ''
                                   " @click="(itemTool.toolType = 0), $forceUpdate()">
                                   互动类
-                                </div> -->
+                                </div>
                                 <div :class="itemTool.toolType == 1
                                     ? 'isChooseActive'
                                     : ''
@@ -575,7 +575,7 @@
                                     </div>
                                   </div>
                                 </div> -->
-                                <div class="tool">
+                                <!-- <div class="tool">
                                   <div class="whiteBIcon" @click="
                                     openTools(itemTaskIndex, 62, toolIndex)
                                     ">
@@ -591,7 +591,7 @@
                                       <img src="../../../assets/icon/checkedIs.png" alt /><span>已选择</span>
                                     </div>
                                   </div>
-                                </div>
+                                </div> -->
                               </div>
                               <div class="toolSort" v-if="itemTool.toolType == 1">
                                 <div class="tool">
@@ -3309,10 +3309,10 @@
                 @click="checkAskType('2', askJson.askJson[index1])">多选题</span>
             </div>
             <div class="a_add_head">
-              <div>
+              <div style="display: flex;align-items: center;">
                 {{ index1 + 1 + "、" }}
-                <el-input class="a_add_head_input" v-model="askJson.askJson[index1].askstitle" placeholder="请输入题目...">
-                </el-input>
+                <textarea class="a_add_head_input textarea_css"  v-autoHeight="40" v-model="askJson.askJson[index1].askstitle
+                        " placeholder="请输入题目..." ></textarea>
               </div>
               <div class="a_add_head_div">
                 <el-button type="primary" size="small" @click="addAskList()">添加</el-button>
@@ -3321,10 +3321,14 @@
               </div>
             </div>
             <div class="a_add_body">
-              <div class="a_add_input">
-                <el-input v-for="(item2, checkIndex) in askJson.askJson[index1].askItem" :key="checkIndex"
-                  v-model="askJson.askJson[index1].checkList[checkIndex]" placeholder="请输入选项..."
-                  style="width: 150px; margin: 10px 10px 0 0"></el-input>
+              <div class="a_add_input" style="flex-direction: column;">
+                <div  v-for="(item2, checkIndex) in askJson.askJson[index1].askItem"  :key="checkIndex" style=" margin: 20px 10px 0 0;display: flex;align-items:center;">
+                  <div style="margin-right: 10px">
+                    选项{{ checkIndex + 1 }}
+                  </div>
+                  <textarea class="a_add_head_input textarea_css"   v-autoHeight="40" v-model="askJson.askJson[index1].checkList[checkIndex]
+                        " placeholder="请输入选项..." style="width: 300px;" ></textarea>  
+                </div>
               </div>
               <div class="a_add_body_div">
                 <el-button style="margin: 10px 0px 0 0" type="primary" size="small"
@@ -3368,11 +3372,12 @@
             </div>
             <div class="a_add_head">
               <div class="timuUpImg">
-                <div>
+                <div style="display: flex;align-items: center;">
                   {{ index1 + 1 + "、" }}
-                  <el-input class="a_add_head_input" v-model="testJson.testJson[index1].teststitle"
+                  <!-- <el-input class="a_add_head_input"  v-autoHeight="40" resize="none" v-model="testJson.testJson[index1].teststitle" type="textarea"
                     placeholder="请输入题目...">
-                  </el-input>
+                  </el-input> -->
+                  <textarea class="a_add_head_input textarea_css"  v-autoHeight="40" v-model="testJson.testJson[index1].teststitle" placeholder="请输入题目..."></textarea>
                 </div>
                 <div class="xzUpImg" @click.stop="addImg($event)">
                   <img src="../../../assets/icon/xzUpImg.png" alt="" />
@@ -3426,9 +3431,8 @@
                           " alt="" /> -->
                         </div>
                       </div>
-
-                      <el-input v-else v-model="testJson.testJson[index1].checkList[checkIndex]
-                        " placeholder="请输入选项..." style="width: 300px; margin-right: 10px"></el-input>
+                     <textarea class="a_add_head_input textarea_css"  v-autoHeight="40" v-else v-model="testJson.testJson[index1].checkList[checkIndex]
+                        " placeholder="请输入选项..." style="width: 300px; margin-right: 10px" ></textarea>
                       <div class="xzUpImg" @click.stop="addImg($event)">
                         <img src="../../../assets/icon/xzUpImg.png" alt="" />
                         <input type="file" accept="image/*" style="display: none"
@@ -3467,8 +3471,8 @@
                         </div>
                       </div>
 
-                      <el-input v-else v-model="testJson.testJson[index1].checkList[checkIndex1]
-                        " placeholder="请输入选项..." style="width: 300px; margin-right: 10px"></el-input>
+                      <textarea class="a_add_head_input textarea_css"  v-autoHeight="40" v-else v-model="testJson.testJson[index1].checkList[checkIndex1]
+                        " placeholder="请输入选项..." style="width: 300px; margin-right: 10px" ></textarea>
                       <div class="xzUpImg" @click.stop="addImg($event)">
                         <img src="../../../assets/icon/xzUpImg.png" alt="" />
                         <input type="file" accept="image/*" style="display: none"
@@ -4209,7 +4213,7 @@ export default {
                     {
                       tool: [],
                       toolDetail: "",
-                      toolType: 1,
+                      toolType: 0,
                       askCount: 1,
                       askTitle: "",
                       askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
@@ -4259,7 +4263,7 @@ export default {
       pTypeCheck: [],
       pTypeCheckName: [],
       loading: false,
-      toolType: 1,
+      toolType: 0,
       inputShow: true,
       inputShow2: true,
       toolIndex: 0,
@@ -4287,6 +4291,21 @@ export default {
       videoJson: {},
     };
   },
+  directives: {
+    autoHeight: {
+      update(el, binding) {
+        const { value } = binding
+        if (value && typeof value === 'number') {
+          el.style.height = `${value}px`
+        } else {
+          el.style.height = 'auto'
+        }
+      },
+      componentUpdated(el) {
+        el.style.height = `${el.scrollHeight}px`
+      },
+    },
+  },
   computed: {
     // rightBoxHeight: function () {
     //   return $(".rightBox")[0] ? $(".rightBox")[0].scrollHeight : 1000
@@ -5631,7 +5650,7 @@ export default {
                   {
                     tool: [],
                     toolDetail: "",
-                    toolType: 1,
+                    toolType: 0,
                     askCount: 1,
                     askTitle: "",
                     askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
@@ -5668,7 +5687,7 @@ export default {
       ].toolChoose.push({
         tool: [],
         toolDetail: "",
-        toolType: 1,
+        toolType: 0,
         askCount: 1,
         askTitle: "",
         askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
@@ -5683,7 +5702,7 @@ export default {
           {
             tool: [],
             toolDetail: "",
-            toolType: 1,
+            toolType: 0,
             askCount: 1,
             askTitle: "",
             askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
@@ -6285,7 +6304,7 @@ export default {
                         {
                           tool: [],
                           toolDetail: "",
-                          toolType: 1,
+                          toolType: 0,
                           askCount: 1,
                           askTitle: "",
                           askJson: [
@@ -6349,7 +6368,7 @@ export default {
                         {
                           tool: [],
                           toolDetail: "",
-                          toolType: 1,
+                          toolType: 0,
                           askCount: 1,
                           askTitle: "",
                           askJson: [
@@ -7075,7 +7094,9 @@ export default {
     },
     checkTestType(type, json) {
       json.type = type;
-      json.answer = [];
+      setTimeout(()=>{
+        json.answer = [];
+      },100)
     },
     checkAskType(type, json) {
       json.type = type;
@@ -7331,7 +7352,7 @@ export default {
             {
               tool: [],
               toolDetail: "",
-              toolType: 1,
+              toolType: 0,
               askCount: 1,
               askTitle: "",
               askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
@@ -7381,7 +7402,7 @@ export default {
                     {
                       tool: [],
                       toolDetail: "",
-                      toolType: 1,
+                      toolType: 0,
                       askCount: 1,
                       askTitle: "",
                       askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
@@ -11707,4 +11728,29 @@ ol {
 .noneBox>img {
   width: 300px;
 }
+
+
+.textarea_css{
+  display: block;
+  resize: none;
+  padding: 10px 15px;
+  line-height: 1.5;
+  box-sizing: border-box;
+  width: 100%;
+  font-size: 14px;
+  color: #606266;
+  background-color: #FFF;
+  background-image: none;
+  border: 1px solid #DCDFE6;
+  border-radius: 4px;
+  transition: border-color .2s cubic-bezier(.645,.045,.355,1);
+  outline: none;
+  overflow:hidden;
+  height: 40px;
+}
+
+.textarea_css:focus {
+    border-color: #409EFF;
+    outline: 0;
+}
 </style>

+ 5 - 3
src/components/pages/scourse.vue

@@ -382,8 +382,10 @@ export default {
       this.getCourse();
     },
     clear() {
-      for (var i = 0; i < this.CourseType[0].length; i++) {
-        this.courseTypeId[this.CourseType[0][i].id] = "";
+      if(this.CourseType.length){
+        for (var i = 0; i < this.CourseType[0].length; i++) {
+          this.courseTypeId[this.CourseType[0][i].id] = "";
+        }
       }
       this.getCourse();
     },
@@ -680,7 +682,7 @@ export default {
           if (this.role == "1") {
             this.groupA = "4";
           } else {
-            this.groupA = "0";
+            this.groupA = "3";
           }
           this.$message.success("复制成功")
           this.clear()

+ 4 - 2
src/components/pages/student/course.vue

@@ -393,8 +393,10 @@ export default {
       this.getCourse();
     },
     clear() {
-      for (var i = 0; i < this.CourseType[0].length; i++) {
-        this.courseTypeId[this.CourseType[0][i].id] = "";
+      if(this.CourseType.length){
+        for (var i = 0; i < this.CourseType[0].length; i++) {
+          this.courseTypeId[this.CourseType[0][i].id] = "";
+        }
       }
       this.getCourse();
     },

+ 9 - 3
src/components/pages/studio/course.vue

@@ -381,8 +381,10 @@ export default {
       this.getCourse();
     },
     clear() {
-      for (var i = 0; i < this.CourseType[0].length; i++) {
-        this.courseTypeId[this.CourseType[0][i].id] = "";
+      if(this.CourseType.length){
+        for (var i = 0; i < this.CourseType[0].length; i++) {
+          this.courseTypeId[this.CourseType[0][i].id] = "";
+        }
       }
       this.getCourse();
     },
@@ -659,7 +661,11 @@ export default {
         .post(this.$store.state.api + "copyCourse", params)
         .then((res) => {
           this.page = 1
-          this.groupA = '0'
+          if (this.role == "1") {
+            this.groupA = "4";
+          } else {
+            this.groupA = "3";
+          }
           this.clear()
         })
         .catch((err) => {

+ 75 - 52
src/components/pages/task/addCourse.vue

@@ -574,10 +574,10 @@
                                 步骤 {{ toolIndex + 1 }} :
                               </div>
                               <div class="chooseWho">
-                                <!-- <div :class="itemTool.toolType == 0 ? 'isChooseActive' : ''
+                                <div :class="itemTool.toolType == 0 ? 'isChooseActive' : ''
                                   " @click="(itemTool.toolType = 0), $forceUpdate()">
                                   互动类
-                                </div> -->
+                                </div>
                                 <div
                                   :class="
                                     itemTool.toolType == 1
@@ -769,7 +769,7 @@
                                     </div>
                                   </div>
                                 </div> -->
-                                <div class="tool">
+                                <!-- <div class="tool">
                                   <div
                                     class="whiteBIcon"
                                     @click="
@@ -800,7 +800,7 @@
                                       /><span>已选择</span>
                                     </div>
                                   </div>
-                                </div>
+                                </div> -->
                               </div>
                               <div
                                 class="toolSort"
@@ -5384,14 +5384,10 @@
               >
             </div>
             <div class="a_add_head">
-              <div>
+              <div style="display: flex;align-items: center;">
                 {{ index1 + 1 + "、" }}
-                <el-input
-                  class="a_add_head_input"
-                  v-model="askJson.askJson[index1].askstitle"
-                  placeholder="请输入题目..."
-                >
-                </el-input>
+                <textarea class="a_add_head_input textarea_css"  v-autoHeight="40" v-model="askJson.askJson[index1].askstitle
+                        " placeholder="请输入题目..." ></textarea>
               </div>
               <div class="a_add_head_div">
                 <el-button type="primary" size="small" @click="addAskList()"
@@ -5407,14 +5403,14 @@
               </div>
             </div>
             <div class="a_add_body">
-              <div class="a_add_input">
-                <el-input
-                  v-for="(item2, checkIndex) in askJson.askJson[index1].askItem"
-                  :key="checkIndex"
-                  v-model="askJson.askJson[index1].checkList[checkIndex]"
-                  placeholder="请输入选项..."
-                  style="width: 150px; margin: 10px 10px 0 0"
-                ></el-input>
+              <div class="a_add_input" style="flex-direction: column;">
+                <div  v-for="(item2, checkIndex) in askJson.askJson[index1].askItem"  :key="checkIndex" style=" margin: 20px 10px 0 0;display: flex;align-items:center;">
+                  <div style="margin-right: 10px">
+                    选项{{ checkIndex + 1 }}
+                  </div>
+                  <textarea class="a_add_head_input textarea_css"   v-autoHeight="40" v-model="askJson.askJson[index1].checkList[checkIndex]
+                        " placeholder="请输入选项..." style="width: 300px;" ></textarea>  
+                </div>
               </div>
               <div class="a_add_body_div">
                 <el-button
@@ -5484,14 +5480,12 @@
             </div>
             <div class="a_add_head">
               <div class="timuUpImg">
-                <div>
+                <div style="display: flex;align-items: center;">
                   {{ index1 + 1 + "、" }}
-                  <el-input
-                    class="a_add_head_input"
-                    v-model="testJson.testJson[index1].teststitle"
-                    placeholder="请输入题目..."
-                  >
-                  </el-input>
+                  <!-- <el-input class="a_add_head_input"  v-autoHeight="40" resize="none" v-model="testJson.testJson[index1].teststitle" type="textarea"
+                    placeholder="请输入题目...">
+                  </el-input> -->
+                  <textarea class="a_add_head_input textarea_css"  v-autoHeight="40" v-model="testJson.testJson[index1].teststitle" placeholder="请输入题目..."></textarea>
                 </div>
                 <div class="xzUpImg" @click.stop="addImg($event)">
                   <img src="../../../assets/icon/xzUpImg.png" alt="" />
@@ -5584,14 +5578,8 @@
                         </div>
                       </div>
 
-                      <el-input
-                        v-else
-                        v-model="
-                          testJson.testJson[index1].checkList[checkIndex]
-                        "
-                        placeholder="请输入选项..."
-                        style="width: 300px; margin-right: 10px"
-                      ></el-input>
+                      <textarea class="a_add_head_input textarea_css"  v-autoHeight="40" v-else v-model="testJson.testJson[index1].checkList[checkIndex]
+                        " placeholder="请输入选项..." style="width: 300px; margin-right: 10px" ></textarea>
                       <div class="xzUpImg" @click.stop="addImg($event)">
                         <img src="../../../assets/icon/xzUpImg.png" alt="" />
                         <input
@@ -5651,14 +5639,8 @@
                         </div>
                       </div>
 
-                      <el-input
-                        v-else
-                        v-model="
-                          testJson.testJson[index1].checkList[checkIndex1]
-                        "
-                        placeholder="请输入选项..."
-                        style="width: 300px; margin-right: 10px"
-                      ></el-input>
+                      <textarea class="a_add_head_input textarea_css"  v-autoHeight="40" v-else v-model="testJson.testJson[index1].checkList[checkIndex1]
+                        " placeholder="请输入选项..." style="width: 300px; margin-right: 10px" ></textarea>
                       <div class="xzUpImg" @click.stop="addImg($event)">
                         <img src="../../../assets/icon/xzUpImg.png" alt="" />
                         <input
@@ -6805,7 +6787,7 @@ export default {
                     {
                       tool: [],
                       toolDetail: "",
-                      toolType: 1,
+                      toolType: 0,
                       askCount: 1,
                       askTitle: "",
                       askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
@@ -6855,7 +6837,7 @@ export default {
       pTypeCheck: [],
       pTypeCheckName: [],
       loading: false,
-      toolType: 1,
+      toolType: 0,
       inputShow: true,
       inputShow2: true,
       toolIndex: 0,
@@ -6883,6 +6865,21 @@ export default {
       videoJson: {},
     };
   },
+  directives: {
+    autoHeight: {
+      update(el, binding) {
+        const { value } = binding
+        if (value && typeof value === 'number') {
+          el.style.height = `${value}px`
+        } else {
+          el.style.height = 'auto'
+        }
+      },
+      componentUpdated(el) {
+        el.style.height = `${el.scrollHeight}px`
+      },
+    },
+  },
   computed: {
     // rightBoxHeight: function () {
     //   return $(".rightBox")[0] ? $(".rightBox")[0].scrollHeight : 1000
@@ -8214,7 +8211,7 @@ export default {
                   {
                     tool: [],
                     toolDetail: "",
-                    toolType: 1,
+                    toolType: 0,
                     askCount: 1,
                     askTitle: "",
                     askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
@@ -8251,7 +8248,7 @@ export default {
       ].toolChoose.push({
         tool: [],
         toolDetail: "",
-        toolType: 1,
+        toolType: 0,
         askCount: 1,
         askTitle: "",
         askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
@@ -8266,7 +8263,7 @@ export default {
           {
             tool: [],
             toolDetail: "",
-            toolType: 1,
+            toolType: 0,
             askCount: 1,
             askTitle: "",
             askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
@@ -8867,7 +8864,7 @@ export default {
                         {
                           tool: [],
                           toolDetail: "",
-                          toolType: 1,
+                          toolType: 0,
                           askCount: 1,
                           askTitle: "",
                           askJson: [
@@ -8931,7 +8928,7 @@ export default {
                         {
                           tool: [],
                           toolDetail: "",
-                          toolType: 1,
+                          toolType: 0,
                           askCount: 1,
                           askTitle: "",
                           askJson: [
@@ -9657,7 +9654,9 @@ export default {
     },
     checkTestType(type, json) {
       json.type = type;
-      json.answer = [];
+      setTimeout(()=>{
+        json.answer = [];
+      },100)
     },
     checkAskType(type, json) {
       json.type = type;
@@ -9913,7 +9912,7 @@ export default {
             {
               tool: [],
               toolDetail: "",
-              toolType: 1,
+              toolType: 0,
               askCount: 1,
               askTitle: "",
               askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
@@ -9963,7 +9962,7 @@ export default {
                     {
                       tool: [],
                       toolDetail: "",
-                      toolType: 1,
+                      toolType: 0,
                       askCount: 1,
                       askTitle: "",
                       askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
@@ -14270,4 +14269,28 @@ ol {
 .noneBox > img {
   width: 300px;
 }
+
+.textarea_css{
+  display: block;
+  resize: none;
+  padding: 10px 15px;
+  line-height: 1.5;
+  box-sizing: border-box;
+  width: 100%;
+  font-size: 14px;
+  color: #606266;
+  background-color: #FFF;
+  background-image: none;
+  border: 1px solid #DCDFE6;
+  border-radius: 4px;
+  transition: border-color .2s cubic-bezier(.645,.045,.355,1);
+  outline: none;
+  overflow:hidden;
+  height: 40px;
+}
+
+.textarea_css:focus {
+    border-color: #409EFF;
+    outline: 0;
+}
 </style>

Algunos archivos no se mostraron porque demasiados archivos cambiaron en este cambio