|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <div class="pb_content">
|
|
|
+ <div class="pb_content" style="background: #d2d9e2;">
|
|
|
<div class="pb_content_body" style="position: relative; margin: 0">
|
|
|
<div class="right">
|
|
|
<div class="courseTop">
|
|
@@ -25,53 +25,53 @@
|
|
|
<!-- <div style="display: flex; margin-top: 20px; position: relative"> -->
|
|
|
<div ref="stepBox" class="stepBox">
|
|
|
<div class="stepBg">
|
|
|
- <div class="stepTop">
|
|
|
- <div v-if="steps > 0" class="first" @click="navSteps(1)">
|
|
|
+ <div :class="{stepTop:isStepDisplay,stepTop2:!isStepDisplay}" @mouseenter="stepDisplay(true)" @mouseleave="stepDisplay(false)">
|
|
|
+ <div v-if="steps > 0 && isStepDisplay" class="first" @click="navSteps(1)">
|
|
|
<div>
|
|
|
<img src="../../assets/icon/first.png" alt />
|
|
|
</div>
|
|
|
<div>填写基本信息</div>
|
|
|
</div>
|
|
|
- <div v-else class="firstNo" @click="navSteps(1)">
|
|
|
+ <div v-else-if="isStepDisplay" class="firstNo" @click="navSteps(1)">
|
|
|
<div>
|
|
|
<img src="../../assets/icon/firstNo.png" alt />
|
|
|
</div>
|
|
|
<div>填写基本信息</div>
|
|
|
</div>
|
|
|
- <div class="stepBorder" :class="{ 'border-active': steps > 1 }" v-if="cidType === 0"></div>
|
|
|
- <div v-if="steps > 1 && cidType === 0" class="second" @click="navSteps(2)">
|
|
|
+ <div class="stepBorder" :class="{ 'border-active': steps > 1 }" v-if="cidType === 0 && isStepDisplay"></div>
|
|
|
+ <div v-if="steps > 1 && cidType === 0 && isStepDisplay" class="second" @click="navSteps(2)">
|
|
|
<div style="margin: 5px 10px 0 0; width: 2rem">
|
|
|
<img src="../../assets/icon/second.png" alt />
|
|
|
</div>
|
|
|
<div>选择课程模式</div>
|
|
|
</div>
|
|
|
- <div v-else-if="cidType === 0" class="secondNo" @click="navSteps(2)">
|
|
|
+ <div v-else-if="cidType === 0 && isStepDisplay" class="secondNo" @click="navSteps(2)">
|
|
|
<div>
|
|
|
<img src="../../assets/icon/secondNo.png" alt />
|
|
|
</div>
|
|
|
<div>选择课程模式</div>
|
|
|
</div>
|
|
|
- <div class="stepBorder" :class="{ 'border-active': steps > 2 }"></div>
|
|
|
- <div v-if="steps > 2" class="third" @click="navSteps(3)">
|
|
|
+ <div v-if="isStepDisplay" class="stepBorder" :class="{ 'border-active': steps > 2 }"></div>
|
|
|
+ <div v-if="steps > 2 && isStepDisplay" class="third" @click="navSteps(3)">
|
|
|
<div>
|
|
|
<img src="../../assets/icon/third.png" alt />
|
|
|
</div>
|
|
|
<div>上传课程内容</div>
|
|
|
</div>
|
|
|
- <div v-else class="thirdNo" @click="navSteps(3)">
|
|
|
+ <div v-else-if="isStepDisplay" class="thirdNo" @click="navSteps(3)">
|
|
|
<div>
|
|
|
<img src="../../assets/icon/thirdNo.png" alt />
|
|
|
</div>
|
|
|
<div>上传课程内容</div>
|
|
|
</div>
|
|
|
- <div class="stepBorder" :class="{ 'border-active': steps > 3 }"></div>
|
|
|
- <div v-if="steps > 3" class="four">
|
|
|
+ <div v-if="isStepDisplay" class="stepBorder" :class="{ 'border-active': steps > 3 }"></div>
|
|
|
+ <div v-if="steps > 3 && isStepDisplay" class="four">
|
|
|
<div>
|
|
|
<img src="../../assets/icon/four.png" alt />
|
|
|
</div>
|
|
|
<div>上传完成</div>
|
|
|
</div>
|
|
|
- <div v-else class="fourNo">
|
|
|
+ <div v-else-if="isStepDisplay" class="fourNo">
|
|
|
<div>
|
|
|
<img src="../../assets/icon/fourNo.png" alt />
|
|
|
</div>
|
|
@@ -79,7 +79,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="rightBox" v-if="this.steps == 1" @mousewheel="scrollChange" style="padding:30px 10px">
|
|
|
+ <div class="rightBox" v-if="this.steps == 1" @mousewheel="scrollChange" style="padding:30px 10px" :style="{height:(!isStepDisplay && !isBtnDisplay) ? 'calc(100% - 40px)' : 'calc(100% - 100px)'}">
|
|
|
<div class="updateMask" :style="{
|
|
|
height: rightBoxHeight ? rightBoxHeight + 'px' : '100%',
|
|
|
}" v-if="cid && userid != courseUserid && role != '1'"></div>
|
|
@@ -90,7 +90,7 @@
|
|
|
<div class="course_input_box">
|
|
|
<div class="bb_courseIcon"><img src="../../assets/icon/new/course_icon.png" /></div>
|
|
|
<input type="text" placeholder="请输入课程名称" class="binfo_input" v-model="courseName"
|
|
|
- style="border: 1px solid #CAD1DC;background: #fcfcfc;" />
|
|
|
+ style="border: 1px solid #CAD1DC;background: #f6f6f6;" />
|
|
|
<el-switch v-model="isTeacherSee" active-text="是否公开此课程"></el-switch>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -270,7 +270,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="rightBox" v-if="this.steps == 2">
|
|
|
+ <div class="rightBox" v-if="this.steps == 2" :style="{height:(!isStepDisplay && !isBtnDisplay) ? 'calc(100% - 40px)' : 'calc(100% - 100px)'}">
|
|
|
<div class="basic_box" style="padding: 20px 30px 0px !important; box-sizing: border-box">
|
|
|
<!-- <div
|
|
|
style="
|
|
@@ -337,7 +337,7 @@
|
|
|
简易模式
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="wordTeacher" @click="pasteStage()">
|
|
|
+ <div class="wordTeacher" @click="pasteStage()" v-if="isPasteStage">
|
|
|
<div class="wordPic">
|
|
|
<img src="../../assets/icon/wordMub.png" alt />
|
|
|
</div>
|
|
@@ -388,7 +388,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="rightBox" v-if="this.steps == 3" ref="rightboxR">
|
|
|
+ <div class="rightBox" v-if="this.steps == 3" ref="rightboxR" :style="{height:(!isStepDisplay && !isBtnDisplay) ? 'calc(100% - 40px)' : 'calc(100% - 100px)'}">
|
|
|
<div class="rb_c_box">
|
|
|
<div class="rb_c_box_left" v-if="steps == 3 && unitJson[unitIndex].easy != 1">
|
|
|
<div class="stepsBottom">
|
|
@@ -433,7 +433,7 @@
|
|
|
background: #f0f4fa
|
|
|
">
|
|
|
<!-- :style="{ maxWidth: (userid == courseUserid || role == '1') ? 'calc(100% - 300px)' : 'calc(100% - 175px)' }" -->
|
|
|
- <div class="cru_selectBox">
|
|
|
+ <div class="cru_selectBox" :style="{ maxWidth: isPasteTask ? 'calc(100% - 175px)' : 'calc(100% - 40px)' }">
|
|
|
<div v-for="(item, index) in unitJson" :key="index" class="cru_select"
|
|
|
:class="unitIndex == index ? 'cru_selected' : ''" @click="unitSet(index)">
|
|
|
<!-- item.dyName ? item.dyName : -->
|
|
@@ -456,7 +456,7 @@
|
|
|
<!-- <button class="c_pub_button_add" @click="openStageBox"
|
|
|
v-if="steps == 3 && (userid == courseUserid || role == '1')"
|
|
|
style="margin: 0 0 0 auto;">阶段顺序</button> -->
|
|
|
- <button class="c_pub_button_add pub_btn_paste_img" @click="pasteTask" v-if="steps == 3" style="margin: 0 0 0 auto;">智能粘贴</button>
|
|
|
+ <button class="c_pub_button_add pub_btn_paste_img" @click="pasteTask" v-if="steps == 3 && isPasteTask" style="margin: 0 0 0 auto;">智能粘贴</button>
|
|
|
</div>
|
|
|
|
|
|
<div style="margin: 0 0 40px 0; padding: 0 20px 0 20px"
|
|
@@ -509,7 +509,7 @@
|
|
|
itemTaskIndex
|
|
|
].task
|
|
|
" />
|
|
|
- <div v-if="easyArray.indexOf(unitJson[unitIndex].easy) == -1 && !itemTask.isFold2"
|
|
|
+ <div v-if="easyArray.indexOf(unitJson[unitIndex].easy) == -1 && itemTask.isFold2"
|
|
|
class="show_taskD show" @click="fold2(itemTaskIndex)"><img
|
|
|
src="../../assets/icon/new/icon-slide.png" />收起任务描述</div>
|
|
|
<div v-else-if="easyArray.indexOf(unitJson[unitIndex].easy) == -1" class="show_taskD"
|
|
@@ -521,7 +521,7 @@
|
|
|
unitJson[unitIndex].easy == 6)
|
|
|
" @click="deleteTask(itemTaskIndex)" style="margin-right: 10px;"></div>
|
|
|
</div>
|
|
|
- <div v-if="easyArray.indexOf(unitJson[unitIndex].easy) == -1 && !itemTask.isFold2" style="
|
|
|
+ <div v-if="easyArray.indexOf(unitJson[unitIndex].easy) == -1 && itemTask.isFold2" style="
|
|
|
display: flex;
|
|
|
margin: 20px 0;
|
|
|
flex-direction: row;
|
|
@@ -531,8 +531,8 @@
|
|
|
<div class="lineTitle">任务描述</div>
|
|
|
<!-- <div class="line"></div> -->
|
|
|
</div>
|
|
|
- <div v-if="easyArray.indexOf(unitJson[unitIndex].easy) == -1 && !itemTask.isFold2">
|
|
|
- <editor-bar style="margin: 0" placeholder="请输入任务描述" v-model="unitJson[unitIndex].chapterInfo[0].taskJson[
|
|
|
+ <div v-if="easyArray.indexOf(unitJson[unitIndex].easy) == -1 && itemTask.isFold2">
|
|
|
+ <editor-bar class="addEditor" style="margin: 0" placeholder="请输入任务描述" v-model="unitJson[unitIndex].chapterInfo[0].taskJson[
|
|
|
itemTaskIndex
|
|
|
].taskDetail
|
|
|
" @change="change"></editor-bar>
|
|
@@ -1013,11 +1013,6 @@
|
|
|
<div class="leftTools" style="
|
|
|
width: 100%;
|
|
|
" v-for="(itemTool, toolIndex) in itemTask.toolChoose" :key="toolIndex">
|
|
|
- <div>
|
|
|
- <textarea rows="2" v-autoHeight="70" type="text" placeholder="添加工具描述" class="binfo_input"
|
|
|
- style="margin: 0 0 20px 0; width: 100% !important"
|
|
|
- v-model="itemTool.toolDetail"></textarea>
|
|
|
- </div>
|
|
|
<div style="
|
|
|
display: flex;
|
|
|
flex-direction: row;
|
|
@@ -1031,45 +1026,45 @@
|
|
|
</div>
|
|
|
<div class="chooseWho">
|
|
|
<div :class="itemTool.toolType == 0 ? 'isChooseActive' : ''
|
|
|
- " @click="(itemTool.toolType = 0), $forceUpdate()">
|
|
|
+ " @click="(itemTool.toolType = 0),(itemTool.isFold3 = true), $forceUpdate()">
|
|
|
互动类
|
|
|
</div>
|
|
|
<div :class="itemTool.toolType == 1 ? 'isChooseActive' : ''
|
|
|
- " @click="(itemTool.toolType = 1), $forceUpdate()">
|
|
|
+ " @click="(itemTool.toolType = 1),(itemTool.isFold3 = true), $forceUpdate()">
|
|
|
思维类
|
|
|
</div>
|
|
|
<div :class="itemTool.toolType == 6 ? 'isChooseActive' : ''
|
|
|
- " @click="(itemTool.toolType = 6), $forceUpdate()">
|
|
|
+ " @click="(itemTool.toolType = 6),(itemTool.isFold3 = true), $forceUpdate()">
|
|
|
协作类
|
|
|
</div>
|
|
|
<div :class="itemTool.toolType == 2 ? 'isChooseActive' : ''
|
|
|
- " @click="(itemTool.toolType = 2), $forceUpdate()">
|
|
|
+ " @click="(itemTool.toolType = 2),(itemTool.isFold3 = true), $forceUpdate()">
|
|
|
测评类
|
|
|
</div>
|
|
|
<div :class="itemTool.toolType == 7 ? 'isChooseActive' : ''
|
|
|
- " @click="(itemTool.toolType = 7), $forceUpdate()">
|
|
|
+ " @click="(itemTool.toolType = 7),(itemTool.isFold3 = true), $forceUpdate()">
|
|
|
评价类
|
|
|
</div>
|
|
|
<div :class="itemTool.toolType == 3 ? 'isChooseActive' : ''
|
|
|
- " @click="(itemTool.toolType = 3), $forceUpdate()">
|
|
|
+ " @click="(itemTool.toolType = 3),(itemTool.isFold3 = true), $forceUpdate()">
|
|
|
+ 编程类
|
|
|
+ </div>
|
|
|
+ <div :class="itemTool.toolType == 5 ? 'isChooseActive' : ''
|
|
|
+ " @click="(itemTool.toolType = 5),(itemTool.isFold3 = true), $forceUpdate()">
|
|
|
学科类
|
|
|
</div>
|
|
|
- <!-- <div :class="itemTool.toolType == 5 ? 'isChooseActive' : ''
|
|
|
- " @click="(itemTool.toolType = 5), $forceUpdate()">
|
|
|
- 学科类
|
|
|
- </div>
|
|
|
- <div :class="itemTool.toolType == 4 ? 'isChooseActive' : ''
|
|
|
+ <!-- <div :class="itemTool.toolType == 4 ? 'isChooseActive' : ''
|
|
|
" @click="(itemTool.toolType = 4), $forceUpdate()">
|
|
|
其他
|
|
|
</div> -->
|
|
|
</div>
|
|
|
- <div v-if="!itemTool.isFold3" class="show_toolD show" @click="fold3(itemTaskIndex, toolIndex)" :style="{right:itemTask.toolChoose.length > 1? '45px':'0px'}"><img src="../../assets/icon/new/icon-slide.png" />收起工具栏</div>
|
|
|
+ <div v-if="itemTool.isFold3" class="show_toolD show" @click="fold3(itemTaskIndex, toolIndex)" :style="{right:itemTask.toolChoose.length > 1? '45px':'0px'}"><img src="../../assets/icon/new/icon-slide.png" />收起工具栏</div>
|
|
|
<div v-else class="show_toolD" @click="fold3(itemTaskIndex, toolIndex)" :style="{right:itemTask.toolChoose.length > 1? '45px':'0px'}"><img src="../../assets/icon/new/icon-slide.png" />展开工具栏</div>
|
|
|
<div class="remove" @click="deleteTool(itemTaskIndex, toolIndex)"
|
|
|
v-if="itemTask.toolChoose.length > 1" style="position: absolute; right: 0"></div>
|
|
|
</div>
|
|
|
|
|
|
- <div style="min-height: 163px" v-show="!itemTool.isFold3">
|
|
|
+ <div style="min-height: 163px" v-show="itemTool.isFold3">
|
|
|
<div class="toolSort" v-if="itemTool.toolType == 0">
|
|
|
<!-- <div class="tool">
|
|
|
<div
|
|
@@ -1152,7 +1147,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>
|
|
@@ -1163,7 +1158,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">
|
|
@@ -1540,6 +1535,22 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ </div>
|
|
|
+ <div class="toolSort" v-if="itemTool.toolType == 7">
|
|
|
+ <div class="tool">
|
|
|
+ <div class="whiteBIcon" @click="openTools(itemTaskIndex, 40, toolIndex)">
|
|
|
+ <img src="../../assets/icon/thirdToolList/eval.png" alt />
|
|
|
+ <div style="margin: 5px 0">个人评价</div>
|
|
|
+ </div>
|
|
|
+ <div class="check" @click="addTools(40, itemTaskIndex, toolIndex)">
|
|
|
+ <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(40) == -1" />
|
|
|
+ <div class="checkDiv" v-else>
|
|
|
+ <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="toolSort" v-if="itemTool.toolType == 5">
|
|
|
<div class="tool">
|
|
|
<div class="whiteBIcon" @click="addTools(28, itemTaskIndex, toolIndex)">
|
|
|
<img src="../../assets/icon/secondToolList/translation.png" alt />
|
|
@@ -1612,23 +1623,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- </div>
|
|
|
- <div class="toolSort" v-if="itemTool.toolType == 7">
|
|
|
- <div class="tool">
|
|
|
- <div class="whiteBIcon" @click="openTools(itemTaskIndex, 40, toolIndex)">
|
|
|
- <img src="../../assets/icon/thirdToolList/eval.png" alt />
|
|
|
- <div style="margin: 5px 0">个人评价</div>
|
|
|
- </div>
|
|
|
- <div class="check" @click="addTools(40, itemTaskIndex, toolIndex)">
|
|
|
- <img src="../../assets/icon/checkNo.png" alt v-if="itemTool.tool.indexOf(40) == -1" />
|
|
|
- <div class="checkDiv" v-else>
|
|
|
- <img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div class="toolSort" v-if="itemTool.toolType == 5">
|
|
|
- <div class="tool">
|
|
|
+ <!-- <div class="tool">
|
|
|
<div class="whiteBIcon" @click="addTools(28, itemTaskIndex, toolIndex)">
|
|
|
<img src="../../assets/icon/secondToolList/translation.png" alt />
|
|
|
<div style="margin: 5px 0">翻译</div>
|
|
@@ -1761,7 +1756,7 @@
|
|
|
<img src="../../assets/icon/checkedIs.png" alt /><span>已选择</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
- </div>
|
|
|
+ </div> -->
|
|
|
<!-- <div class="tool">
|
|
|
<div class="whiteBIcon" @click="addTools(44, itemTaskIndex, toolIndex)">
|
|
|
<img src="../../assets/icon/thirdToolList/hanClass.png" alt />
|
|
@@ -1776,6 +1771,11 @@
|
|
|
</div> -->
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <div v-show="itemTool.isFold3">
|
|
|
+ <textarea rows="2" v-autoHeight="70" type="text" placeholder="添加工具描述" class="binfo_input"
|
|
|
+ style="margin: 0 0 20px 0; width: 100% !important"
|
|
|
+ v-model="itemTool.toolDetail"></textarea>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<div class="addToolFun2" @click="addToolFun(itemTaskIndex)">
|
|
|
<div class="addToolImg">
|
|
@@ -2117,8 +2117,8 @@
|
|
|
</div> -->
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="info_btnBox">
|
|
|
- <button class="c_pub_button_return pub_btn_return_img" v-if="steps == 1" @click="
|
|
|
+ <div :class="{info_btnBox:isBtnDisplay,info_btnBox2:!isBtnDisplay}" @mouseenter="btnDisplay(true)" @mouseleave="btnDisplay(false)">
|
|
|
+ <button class="c_pub_button_return pub_btn_return_img" v-if="steps == 1 && isBtnDisplay" @click="
|
|
|
goTo(
|
|
|
'/course?userid=' +
|
|
|
userid +
|
|
@@ -2132,10 +2132,10 @@
|
|
|
">
|
|
|
返回课程
|
|
|
</button>
|
|
|
- <button class="c_pub_button_return pub_btn_last_img" v-if="steps > 1 && steps != 5" @click="lastSteps">
|
|
|
+ <button class="c_pub_button_return pub_btn_last_img" v-if="steps > 1 && steps != 5 && isBtnDisplay" @click="lastSteps">
|
|
|
{{ steps == 4 ? "返回课程" : "上一步" }}
|
|
|
</button>
|
|
|
- <button class="c_pub_button_confirm" v-if="steps < 4" @click="nextSteps"
|
|
|
+ <button class="c_pub_button_confirm" v-if="steps < 4 && isBtnDisplay" @click="nextSteps"
|
|
|
:class="{ pub_btn_next_img: steps != 3, pub_btn_finish_img: steps == 3 }">
|
|
|
{{ steps == 3 ? "确认上传" : "下一步" }}
|
|
|
</button>
|
|
@@ -2405,7 +2405,7 @@
|
|
|
<div style="font-size: 16px; color: #c7c7c7;display: flex;align-items: center;">
|
|
|
请输入题目内容
|
|
|
<button class="c_pub_button_add pub_btn_paste_img" @click="pasteOption"
|
|
|
- style="margin-left: 10px">智能粘贴</button>
|
|
|
+ style="margin-left: 10px" v-if="isPasteChoice">智能粘贴</button>
|
|
|
</div>
|
|
|
<div class="a_add_box" v-for="(item1, index1) in testJson.testCount" :key="index1">
|
|
|
<div class="a_add_checkType">
|
|
@@ -3346,6 +3346,7 @@ export default {
|
|
|
courseUserid: "",
|
|
|
timer: null,
|
|
|
timer2: null,
|
|
|
+ pasteTimer:null,
|
|
|
checkId: "",
|
|
|
isDelete: 1,
|
|
|
addindex: 0,
|
|
@@ -3361,6 +3362,11 @@ export default {
|
|
|
easyArray: [2, 4],
|
|
|
sourceData: {},
|
|
|
videoJson: {},
|
|
|
+ isBtnDisplay:false,
|
|
|
+ isStepDisplay:false,
|
|
|
+ isPasteStage:false,
|
|
|
+ isPasteTask:false,
|
|
|
+ isPasteChoice:false
|
|
|
};
|
|
|
},
|
|
|
directives: {
|
|
@@ -3573,6 +3579,12 @@ export default {
|
|
|
previewImg(url) {
|
|
|
this.$hevueImgPreview(url);
|
|
|
},
|
|
|
+ btnDisplay(bool){
|
|
|
+ this.isBtnDisplay = bool
|
|
|
+ },
|
|
|
+ stepDisplay(bool){
|
|
|
+ this.isStepDisplay = bool
|
|
|
+ },
|
|
|
scrollChange() {
|
|
|
this.rightBoxHeight = $(".rightBox")[0].scrollHeight;
|
|
|
},
|
|
@@ -7889,18 +7901,38 @@ export default {
|
|
|
return mix;
|
|
|
}
|
|
|
},
|
|
|
+ getPaste(){
|
|
|
+ let iframe = top.document.querySelectorAll("#AIChat iframe")[0];
|
|
|
+ if (!iframe) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ let copyData = iframe.contentWindow.copyData;
|
|
|
+ if (copyData && copyData.stageData && copyData.stageData.length) {
|
|
|
+ this.isPasteStage = true
|
|
|
+ }
|
|
|
+ if (copyData && copyData.selectData.length) {
|
|
|
+ this.isPasteChoice = true
|
|
|
+ }
|
|
|
+ if (copyData && copyData.tasksData && copyData.tasksData.length) {
|
|
|
+ this.isPasteTask = true
|
|
|
+ }
|
|
|
+ }
|
|
|
},
|
|
|
beforeDestroy() {
|
|
|
clearTimeout(this.timer);
|
|
|
this.timer = null;
|
|
|
clearInterval(this.timer2);
|
|
|
this.timer2 = null;
|
|
|
+ clearInterval(this.pasteTimer);
|
|
|
+ this.pasteTimer = null;
|
|
|
},
|
|
|
beforeRouteLeave(to, from, next) {
|
|
|
clearTimeout(this.timer);
|
|
|
this.timer = null;
|
|
|
clearInterval(this.timer2);
|
|
|
this.timer2 = null;
|
|
|
+ clearInterval(this.pasteTimer);
|
|
|
+ this.pasteTimer = null;
|
|
|
next();
|
|
|
},
|
|
|
created() {
|
|
@@ -7915,6 +7947,9 @@ export default {
|
|
|
this.timer2 = setInterval(() => {
|
|
|
this.selectEva();
|
|
|
}, 5000);
|
|
|
+ this.pasteTimer = setInterval(() => {
|
|
|
+ this.getPaste();
|
|
|
+ }, 1000);
|
|
|
setTimeout(() => {
|
|
|
this.selectCourseDetail();
|
|
|
}, 500);
|
|
@@ -8163,7 +8198,7 @@ export default {
|
|
|
width: calc(100%);
|
|
|
display: flex;
|
|
|
justify-content: center;
|
|
|
- height: 70px;
|
|
|
+ height: 80px;
|
|
|
align-items: center;
|
|
|
background: #fff;
|
|
|
margin: 0 auto;
|
|
@@ -8171,6 +8206,21 @@ export default {
|
|
|
box-sizing: border-box;
|
|
|
}
|
|
|
|
|
|
+.info_btnBox2 {
|
|
|
+ width: calc(100%);
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ height: 20px;
|
|
|
+ align-items: center;
|
|
|
+ background: #fff;
|
|
|
+ margin: 0 auto;
|
|
|
+ border-top: 2px solid rgb(228, 232, 237);
|
|
|
+ box-sizing: border-box;
|
|
|
+ overflow: hidden;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
.info_btn+.info_btn {
|
|
|
margin-left: 15px;
|
|
|
}
|
|
@@ -8421,7 +8471,7 @@ export default {
|
|
|
border: 1px solid #CAD1DC;
|
|
|
font-size: 16px;
|
|
|
resize: none;
|
|
|
- background: #fcfcfc;
|
|
|
+ background: #f6f6f6;
|
|
|
font-family: 'Microsoft YaHei';
|
|
|
}
|
|
|
|
|
@@ -9169,6 +9219,23 @@ ol {
|
|
|
box-sizing: border-box;
|
|
|
}
|
|
|
|
|
|
+.stepTop2 {
|
|
|
+ width: 100%;
|
|
|
+ /* border-radius: 10px; */
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ flex-wrap: nowrap;
|
|
|
+ background: #fff;
|
|
|
+ /* top: 18%; */
|
|
|
+ height: 20px;
|
|
|
+ border-bottom: 2px solid rgb(228, 232, 237);
|
|
|
+ box-sizing: border-box;
|
|
|
+ overflow: hidden;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
.stepTop>div img {
|
|
|
width: 100%;
|
|
|
}
|
|
@@ -9642,7 +9709,7 @@ ol {
|
|
|
|
|
|
.chooseWho {
|
|
|
display: flex;
|
|
|
- width: 380px;
|
|
|
+ width: 410px;
|
|
|
flex-direction: row;
|
|
|
flex-wrap: nowrap;
|
|
|
justify-content: space-between;
|
|
@@ -9816,7 +9883,7 @@ ol {
|
|
|
flex-direction: row;
|
|
|
align-items: center;
|
|
|
justify-content: center;
|
|
|
- border: 1px dashed;
|
|
|
+ border: 2px dashed #CAD1DC;
|
|
|
border-radius: 5px;
|
|
|
height: 50px;
|
|
|
margin: 35px auto 0;
|
|
@@ -9825,7 +9892,7 @@ ol {
|
|
|
|
|
|
.addToolFun2 {
|
|
|
display: flex;
|
|
|
- width: 100%;
|
|
|
+ width: 150px;
|
|
|
border: 2px dashed #CAD1DC;
|
|
|
flex-direction: row;
|
|
|
align-items: center;
|
|
@@ -11074,4 +11141,12 @@ ol {
|
|
|
border-color: #409EFF;
|
|
|
outline: 0;
|
|
|
}
|
|
|
+
|
|
|
+.addEditor >>> .text{
|
|
|
+ height:auto;
|
|
|
+ min-height: 100px;
|
|
|
+}
|
|
|
+.addEditor >>> .w-e-text-container{
|
|
|
+ min-height: 100px;
|
|
|
+}
|
|
|
</style>
|