|
@@ -12,22 +12,20 @@
|
|
>
|
|
>
|
|
<div
|
|
<div
|
|
class="pButton"
|
|
class="pButton"
|
|
- style="
|
|
|
|
- left: 0;
|
|
|
|
- background-image: linear-gradient(90deg, #477cd7, #65b9fc);
|
|
|
|
- top: 140px;
|
|
|
|
- "
|
|
|
|
|
|
+ style="left: 0; top: 140px"
|
|
v-if="mlDialog == false && !(IsFollow && tType == 2)"
|
|
v-if="mlDialog == false && !(IsFollow && tType == 2)"
|
|
@click="setContent2(true)"
|
|
@click="setContent2(true)"
|
|
>
|
|
>
|
|
<!-- 批 , getCourseDetail()-->
|
|
<!-- 批 , getCourseDetail()-->
|
|
- <img src="../assets/mlBtn.png" style="width: 25px" alt="" />
|
|
|
|
|
|
+ <img
|
|
|
|
+ src="../assets/icon/newIcons/isRight.png"
|
|
|
|
+ style="width: 45px"
|
|
|
|
+ alt=""
|
|
|
|
+ />
|
|
</div>
|
|
</div>
|
|
<div class="pb_left" v-else-if="!(IsFollow && tType == 2)">
|
|
<div class="pb_left" v-else-if="!(IsFollow && tType == 2)">
|
|
<!-- <div class="courseTitle">{{ courseDetail.title }}</div> -->
|
|
<!-- <div class="courseTitle">{{ courseDetail.title }}</div> -->
|
|
- <div
|
|
|
|
- style="border-bottom: 1px solid #cad1dc; padding: 15px 0; width: 100%"
|
|
|
|
- >
|
|
|
|
|
|
+ <div style="border-bottom: 1px solid #cad1dc; width: 100%">
|
|
<div class="courseTitle">
|
|
<div class="courseTitle">
|
|
<div
|
|
<div
|
|
style="
|
|
style="
|
|
@@ -52,7 +50,7 @@
|
|
</div>
|
|
</div>
|
|
<el-tooltip effect="light" content="收缩" placement="top">
|
|
<el-tooltip effect="light" content="收缩" placement="top">
|
|
<div class="mlImg" @click="setContent2(false)">
|
|
<div class="mlImg" @click="setContent2(false)">
|
|
- <img src="../assets/icon/newIcon/mlBtn.png" alt="" />
|
|
|
|
|
|
+ <img src="../assets/icon/newIcons/isRight.png" alt="" />
|
|
</div>
|
|
</div>
|
|
</el-tooltip>
|
|
</el-tooltip>
|
|
</div>
|
|
</div>
|
|
@@ -68,13 +66,11 @@
|
|
v-for="(item, stageIndex) in navList"
|
|
v-for="(item, stageIndex) in navList"
|
|
:key="stageIndex"
|
|
:key="stageIndex"
|
|
>
|
|
>
|
|
- <div class="stageBoxCss" @click="get(stageIndex)">
|
|
|
|
- <div class="closeTri" v-if="item.isOpen">
|
|
|
|
- <img src="../assets/icon/newIcon/openTri.png" alt />
|
|
|
|
- </div>
|
|
|
|
- <div class="closeTri" v-else>
|
|
|
|
- <img src="../assets/icon/newIcon/closeTri.png" alt />
|
|
|
|
- </div>
|
|
|
|
|
|
+ <div
|
|
|
|
+ class="stageBoxCss"
|
|
|
|
+ @click="get(stageIndex)"
|
|
|
|
+ :class="{ stageBoxIsCss: item.isOpen }"
|
|
|
|
+ >
|
|
<div class="stageItemTitle">
|
|
<div class="stageItemTitle">
|
|
<div>阶段{{ stageIndex + 1 }}</div>
|
|
<div>阶段{{ stageIndex + 1 }}</div>
|
|
<el-tooltip
|
|
<el-tooltip
|
|
@@ -87,6 +83,12 @@
|
|
</div>
|
|
</div>
|
|
</el-tooltip>
|
|
</el-tooltip>
|
|
</div>
|
|
</div>
|
|
|
|
+ <div class="closeTri" v-if="item.isOpen">
|
|
|
|
+ <img src="../assets/icon/newIcons/downC.png" alt />
|
|
|
|
+ </div>
|
|
|
|
+ <div class="closeTri" v-else>
|
|
|
|
+ <img src="../assets/icon/newIcons/right.png" alt />
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
<div class="stageChild" :class="{ navActive: item.isOpen }">
|
|
<div class="stageChild" :class="{ navActive: item.isOpen }">
|
|
<div v-for="(nav, navIndex) in item.task" :key="navIndex">
|
|
<div v-for="(nav, navIndex) in item.task" :key="navIndex">
|
|
@@ -99,6 +101,22 @@
|
|
stageIndex == courseType,
|
|
stageIndex == courseType,
|
|
}"
|
|
}"
|
|
>
|
|
>
|
|
|
|
+ <div v-if="nav.tool[0].tool != undefined">
|
|
|
|
+ <div
|
|
|
|
+ class="closeTri1"
|
|
|
|
+ v-if="nav.isLook"
|
|
|
|
+ @click="openTask(stageIndex, navIndex, nav.id)"
|
|
|
|
+ >
|
|
|
|
+ <img src="../assets/icon/newIcons/bDown.png" alt />
|
|
|
|
+ </div>
|
|
|
|
+ <div
|
|
|
|
+ class="closeTri1"
|
|
|
|
+ v-else
|
|
|
|
+ @click="openTask(stageIndex, navIndex, nav.id)"
|
|
|
|
+ >
|
|
|
|
+ <img src="../assets/icon/newIcons/right.png" alt />
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
<div
|
|
<div
|
|
@click="openTask(stageIndex, navIndex, nav.id)"
|
|
@click="openTask(stageIndex, navIndex, nav.id)"
|
|
class="navItemList"
|
|
class="navItemList"
|
|
@@ -135,6 +153,56 @@
|
|
/>
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
+ <div
|
|
|
|
+ v-if="nav.tool[0].tool != undefined"
|
|
|
|
+ class="toolChild"
|
|
|
|
+ :class="{ toolActive: nav.isLook }"
|
|
|
|
+ >
|
|
|
|
+ <div v-for="(t, toolIndex) in nav.tool" :key="toolIndex">
|
|
|
|
+ <div
|
|
|
|
+ class="gjCss"
|
|
|
|
+ :class="{ isGjCss: t.isTool }"
|
|
|
|
+ @click="jumpGj(stageIndex, navIndex, toolIndex)"
|
|
|
|
+ >
|
|
|
|
+ <div>工具{{ toolIndex + 1 }}:</div>
|
|
|
|
+ <div v-if="t.tool == 58">模拟驾驶</div>
|
|
|
|
+ <div v-if="t.tool == 59">路径搜索</div>
|
|
|
|
+ <div v-if="t.tool == 60">深度学习</div>
|
|
|
|
+ <div v-if="t.tool == 10">倒计时</div>
|
|
|
|
+ <div v-if="t.tool == 65">挑人</div>
|
|
|
|
+ <div v-if="t.tool == 7">思维网格</div>
|
|
|
|
+ <div v-if="t.tool == 1">电子白板</div>
|
|
|
|
+ <div v-if="t.tool == 52">文档</div>
|
|
|
|
+ <div v-if="t.tool == 3">思维导图</div>
|
|
|
|
+ <div v-if="t.tool == 48">表格</div>
|
|
|
|
+ <div v-if="t.tool == 49">学生分组</div>
|
|
|
|
+ <div v-if="t.tool == 4">问卷调查</div>
|
|
|
|
+ <div v-if="t.tool == 45">选择题</div>
|
|
|
|
+ <div v-if="t.tool == 15">问答</div>
|
|
|
|
+ <div v-if="t.tool == 16">作业提交</div>
|
|
|
|
+ <div v-if="t.tool == 50">批量上传</div>
|
|
|
|
+ <div v-if="t.tool == 41">选择匹配</div>
|
|
|
|
+ <div v-if="t.tool == 47">排序</div>
|
|
|
|
+ <div v-if="t.tool == 40">个人评价</div>
|
|
|
|
+ <div v-if="t.tool == 18">训练平台</div>
|
|
|
|
+ <div v-if="t.tool == 21">AIoT Blockly</div>
|
|
|
|
+ <div v-if="t.tool == 23">AI Python</div>
|
|
|
|
+ <div v-if="t.tool == 24">AI Blockly</div>
|
|
|
|
+ <div v-if="t.tool == 32">源码编辑</div>
|
|
|
|
+ <div v-if="t.tool == 57">CocoPi</div>
|
|
|
|
+ <div v-if="t.tool == 63">海龟编程</div>
|
|
|
|
+ <div v-if="t.tool == 28">翻译</div>
|
|
|
|
+ <div v-if="t.tool == 31">数字画板</div>
|
|
|
|
+ <div v-if="t.tool == 39">GeoGebra</div>
|
|
|
|
+ <div v-if="t.tool == 66">公式编辑</div>
|
|
|
|
+ <div v-if="t.tool == 67">分子结构</div>
|
|
|
|
+ <div v-if="t.tool == 68">时间轴</div>
|
|
|
|
+ <div v-if="t.tool == 25">目标管理</div>
|
|
|
|
+ <div v-if="t.tool == 26">课程设计</div>
|
|
|
|
+ <div v-if="t.tool == 62">交互视频</div>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -161,7 +229,80 @@
|
|
</el-tooltip>
|
|
</el-tooltip>
|
|
</div>
|
|
</div>
|
|
<div class="btnAll">
|
|
<div class="btnAll">
|
|
- <div
|
|
|
|
|
|
+ <div class="btnLeft">
|
|
|
|
+ <el-tooltip effect="light" content="刷新" placement="top">
|
|
|
|
+ <div class="reBtnIcon" @click="refreshCourse"></div>
|
|
|
|
+ </el-tooltip>
|
|
|
|
+ <el-tooltip effect="light" content="评论" placement="top">
|
|
|
|
+ <div class="commentIcon" @click="setPz" v-if="tType == 1"></div>
|
|
|
|
+ </el-tooltip>
|
|
|
|
+ <div v-if="!videoStart && (tType == 1 || tType == 4)">
|
|
|
|
+ <el-tooltip effect="light" content="录制" placement="top">
|
|
|
|
+ <div class="vedioIcon" @click="startRecording"></div>
|
|
|
|
+ </el-tooltip>
|
|
|
|
+ </div>
|
|
|
|
+ <div v-else-if="tType == 1 || tType == 4">
|
|
|
|
+ <el-tooltip effect="light" content="下载" placement="top">
|
|
|
|
+ <div class="vedioIcon1" @click="stopRecording"></div>
|
|
|
|
+ </el-tooltip>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="btnRight">
|
|
|
|
+ <div
|
|
|
|
+ class="last"
|
|
|
|
+ @click="nextOrpreSteps(0)"
|
|
|
|
+ v-if="!(IsFollow && tType == 2)"
|
|
|
|
+ >
|
|
|
|
+ <div class="lastImg">
|
|
|
|
+ <img src="../assets/icon/newIcons/last.png" alt="" />
|
|
|
|
+ </div>
|
|
|
|
+ <div class="lastText">上一步</div>
|
|
|
|
+ </div>
|
|
|
|
+ <div
|
|
|
|
+ class="last"
|
|
|
|
+ @click="nextOrpreSteps(1)"
|
|
|
|
+ v-if="!(IsFollow && tType == 2)"
|
|
|
|
+ >
|
|
|
|
+ <div class="lastText">下一步</div>
|
|
|
|
+ <div class="lastImg">
|
|
|
|
+ <img src="../assets/icon/newIcons/next.png" alt="" />
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="last" @click="juriVisible = true" v-if="tType == 1">
|
|
|
|
+ <div class="lastImg">
|
|
|
|
+ <img src="../assets/icon/newIcons/lock.png" alt="" />
|
|
|
|
+ </div>
|
|
|
|
+ <div class="lastText">权限</div>
|
|
|
|
+ </div>
|
|
|
|
+ <div
|
|
|
|
+ class="returnBtn1 returnIcon"
|
|
|
|
+ @click.stop="
|
|
|
|
+ goTo(
|
|
|
|
+ '/courseDetail?userid=' +
|
|
|
|
+ userid +
|
|
|
|
+ '&oid=' +
|
|
|
|
+ oid +
|
|
|
|
+ '&org=' +
|
|
|
|
+ org +
|
|
|
|
+ '&cid=' +
|
|
|
|
+ classId +
|
|
|
|
+ '&courseId=' +
|
|
|
|
+ id +
|
|
|
|
+ '&tType=' +
|
|
|
|
+ tType +
|
|
|
|
+ '&screenType=' +
|
|
|
|
+ screenType
|
|
|
|
+ )
|
|
|
|
+ "
|
|
|
|
+ >
|
|
|
|
+ <div class="lastImg">
|
|
|
|
+ <img src="../assets/icon/newIcon/return.png" alt="" />
|
|
|
|
+ </div>
|
|
|
|
+ <div class="lastText" style="color: #000">返回</div>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <!-- <div
|
|
class="returnBtn lockIcon"
|
|
class="returnBtn lockIcon"
|
|
@click="juriVisible = true"
|
|
@click="juriVisible = true"
|
|
v-if="tType == 1"
|
|
v-if="tType == 1"
|
|
@@ -200,13 +341,6 @@
|
|
>
|
|
>
|
|
下一步
|
|
下一步
|
|
</div>
|
|
</div>
|
|
- <!-- <div
|
|
|
|
- class="returnBtn"
|
|
|
|
- @click="allScrell"
|
|
|
|
- v-if="!(IsFollow && tType == 2)"
|
|
|
|
- >
|
|
|
|
- 全屏
|
|
|
|
- </div> -->
|
|
|
|
<div class="returnBtn" @click="refreshCourse">刷新</div>
|
|
<div class="returnBtn" @click="refreshCourse">刷新</div>
|
|
<div
|
|
<div
|
|
class="returnBtn returnIcon"
|
|
class="returnBtn returnIcon"
|
|
@@ -230,7 +364,7 @@
|
|
"
|
|
"
|
|
>
|
|
>
|
|
返回
|
|
返回
|
|
- </div>
|
|
|
|
|
|
+ </div> -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div
|
|
<div
|
|
@@ -409,19 +543,16 @@
|
|
</div>
|
|
</div>
|
|
<div
|
|
<div
|
|
class="pButton"
|
|
class="pButton"
|
|
- style="
|
|
|
|
- position: absolute;
|
|
|
|
- right: 20px;
|
|
|
|
- top: 0;
|
|
|
|
- background: #205cc6;
|
|
|
|
- z-index: 998;
|
|
|
|
- opacity: 0.8;
|
|
|
|
- "
|
|
|
|
|
|
+ style="position: absolute; right: 20px; top: 0; z-index: 998"
|
|
v-if="!contentDialog"
|
|
v-if="!contentDialog"
|
|
@click="setContent(true)"
|
|
@click="setContent(true)"
|
|
>
|
|
>
|
|
<!-- 批 -->
|
|
<!-- 批 -->
|
|
- <img src="../assets/mlBtn.png" style="width: 25px" alt="" />
|
|
|
|
|
|
+ <img
|
|
|
|
+ src="../assets/icon/newIcons/isLeft.png"
|
|
|
|
+ style="width: 45px"
|
|
|
|
+ alt=""
|
|
|
|
+ />
|
|
</div>
|
|
</div>
|
|
<div
|
|
<div
|
|
v-if="contentDialog == true"
|
|
v-if="contentDialog == true"
|
|
@@ -451,7 +582,7 @@
|
|
<div class="navCorOpenBox">
|
|
<div class="navCorOpenBox">
|
|
<div class="navTitile">内容列表:</div>
|
|
<div class="navTitile">内容列表:</div>
|
|
<div class="navCorOpen" @click="setContent(false)">
|
|
<div class="navCorOpen" @click="setContent(false)">
|
|
- <img src="../assets/icon/newIcon/mlBtn.png" alt="" />
|
|
|
|
|
|
+ <img src="../assets/icon/newIcons/isRight.png" alt="" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="navBox">
|
|
<div class="navBox">
|
|
@@ -499,7 +630,10 @@
|
|
/>
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
- <div class="navListItem" v-if="vitem.type == 8 || vitem.type == 14">
|
|
|
|
|
|
+ <div
|
|
|
|
+ class="navListItem"
|
|
|
|
+ v-if="vitem.type == 8 || vitem.type == 14"
|
|
|
|
+ >
|
|
<div
|
|
<div
|
|
@click="doUrl(vitem.url, vindex)"
|
|
@click="doUrl(vitem.url, vindex)"
|
|
class="navText"
|
|
class="navText"
|
|
@@ -686,7 +820,7 @@
|
|
>
|
|
>
|
|
<div class="bzBox">
|
|
<div class="bzBox">
|
|
<div class="yCss"></div>
|
|
<div class="yCss"></div>
|
|
- <div>步骤{{ toolIndex + 1 }}</div>
|
|
|
|
|
|
+ <div :ref="'bz' + toolIndex">步骤{{ toolIndex + 1 }}</div>
|
|
<div
|
|
<div
|
|
v-if="timeWorkList[toolIndex].length > 0"
|
|
v-if="timeWorkList[toolIndex].length > 0"
|
|
style="margin: 0 0 0 10px"
|
|
style="margin: 0 0 0 10px"
|
|
@@ -6357,19 +6491,13 @@
|
|
>
|
|
>
|
|
<div class="queTopTitle">新增工具</div>
|
|
<div class="queTopTitle">新增工具</div>
|
|
<div class="queTopRight">
|
|
<div class="queTopRight">
|
|
- <div
|
|
|
|
- class="queTopClose"
|
|
|
|
- v-if="isClose == 0"
|
|
|
|
- >
|
|
|
|
|
|
+ <div class="queTopClose" v-if="isClose == 0">
|
|
展开
|
|
展开
|
|
<div class="closeImg">
|
|
<div class="closeImg">
|
|
<img src="../assets/icon/newIcon/close.png" alt="" />
|
|
<img src="../assets/icon/newIcon/close.png" alt="" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
- <div
|
|
|
|
- class="queTopClose"
|
|
|
|
- v-if="isClose == 1"
|
|
|
|
- >
|
|
|
|
|
|
+ <div class="queTopClose" v-if="isClose == 1">
|
|
收缩
|
|
收缩
|
|
<div class="openImg">
|
|
<div class="openImg">
|
|
<img src="../assets/icon/newIcon/open.png" alt="" />
|
|
<img src="../assets/icon/newIcon/open.png" alt="" />
|
|
@@ -7341,7 +7469,7 @@
|
|
v-if="pzDialog == false && (tType == 4 || ispzType == 4)"
|
|
v-if="pzDialog == false && (tType == 4 || ispzType == 4)"
|
|
>
|
|
>
|
|
<!-- 批 -->
|
|
<!-- 批 -->
|
|
- <img src="../assets/pzBtn2.png" style="width: 25px" alt="" />
|
|
|
|
|
|
+ <img src="../assets/mlBtn.png" style="width: 25px" alt="" />
|
|
</div>
|
|
</div>
|
|
<div v-if="pzDialog == true" class="newDialogCss">
|
|
<div v-if="pzDialog == true" class="newDialogCss">
|
|
<div class="pzTop2">
|
|
<div class="pzTop2">
|
|
@@ -8123,7 +8251,9 @@
|
|
class="dialog_diy"
|
|
class="dialog_diy"
|
|
>
|
|
>
|
|
<div>
|
|
<div>
|
|
- <div style="margin-bottom: 20px;color: #999;">提示:点击“+”或“-”修改倒计时时长。</div>
|
|
|
|
|
|
+ <div style="margin-bottom: 20px; color: #999">
|
|
|
|
+ 提示:点击“+”或“-”修改倒计时时长。
|
|
|
|
+ </div>
|
|
<Time :preTime="preTime" v-if="timeDialogVisible"></Time>
|
|
<Time :preTime="preTime" v-if="timeDialogVisible"></Time>
|
|
</div>
|
|
</div>
|
|
<div slot="footer">
|
|
<div slot="footer">
|
|
@@ -9063,7 +9193,13 @@
|
|
:key="stIndex"
|
|
:key="stIndex"
|
|
style="padding-bottom: 20px"
|
|
style="padding-bottom: 20px"
|
|
>
|
|
>
|
|
- <div style="padding: 15px 0 10px 20px" class="sentenceTitle" :index="stIndex+1">题目{{stIndex+1}}:请选择正确顺序</div>
|
|
|
|
|
|
+ <div
|
|
|
|
+ style="padding: 15px 0 10px 20px"
|
|
|
|
+ class="sentenceTitle"
|
|
|
|
+ :index="stIndex + 1"
|
|
|
|
+ >
|
|
|
|
+ 题目{{ stIndex + 1 }}:请选择正确顺序
|
|
|
|
+ </div>
|
|
<div class="cardList" v-if="st.chooseSenList">
|
|
<div class="cardList" v-if="st.chooseSenList">
|
|
<div class="cardBox">
|
|
<div class="cardBox">
|
|
<div
|
|
<div
|
|
@@ -9154,7 +9290,13 @@
|
|
:key="stIndex"
|
|
:key="stIndex"
|
|
style="padding-bottom: 20px"
|
|
style="padding-bottom: 20px"
|
|
>
|
|
>
|
|
- <div style="padding: 15px 0 10px 20px" class="sentenceTitle" :index="stIndex+1">题目{{stIndex+1}}:请选择正确顺序</div>
|
|
|
|
|
|
+ <div
|
|
|
|
+ style="padding: 15px 0 10px 20px"
|
|
|
|
+ class="sentenceTitle"
|
|
|
|
+ :index="stIndex + 1"
|
|
|
|
+ >
|
|
|
|
+ 题目{{ stIndex + 1 }}:请选择正确顺序
|
|
|
|
+ </div>
|
|
<div class="cardList" v-if="st.chooseSenList">
|
|
<div class="cardList" v-if="st.chooseSenList">
|
|
<div class="cardBox">
|
|
<div class="cardBox">
|
|
<div
|
|
<div
|
|
@@ -9996,8 +10138,12 @@
|
|
<div class="groupTitle">请设置每组人数</div>
|
|
<div class="groupTitle">请设置每组人数</div>
|
|
<!-- <el-input v-model="groupJson.number" placeholder="2-10人以内"
|
|
<!-- <el-input v-model="groupJson.number" placeholder="2-10人以内"
|
|
style="width: 150px; margin: 10px 10px 0 0"></el-input> -->
|
|
style="width: 150px; margin: 10px 10px 0 0"></el-input> -->
|
|
- <el-input v-model="groupJson.number" style="width:150px"
|
|
|
|
- placeholder="请输入2-10的数字" @change="numberPan"></el-input>
|
|
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="groupJson.number"
|
|
|
|
+ style="width: 150px"
|
|
|
|
+ placeholder="请输入2-10的数字"
|
|
|
|
+ @change="numberPan"
|
|
|
|
+ ></el-input>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<span slot="footer" class="dialog-footer">
|
|
<span slot="footer" class="dialog-footer">
|
|
@@ -10656,7 +10802,7 @@ export default {
|
|
worksSid: "",
|
|
worksSid: "",
|
|
wordCloudData: [],
|
|
wordCloudData: [],
|
|
isPickStudent: [],
|
|
isPickStudent: [],
|
|
- pzStype:1,
|
|
|
|
|
|
+ pzStype: 1,
|
|
};
|
|
};
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
@@ -10723,6 +10869,20 @@ export default {
|
|
document.querySelector(".student_body").offsetTop;
|
|
document.querySelector(".student_body").offsetTop;
|
|
}, 500);
|
|
}, 500);
|
|
},
|
|
},
|
|
|
|
+ jumpGj(i, j, k) {
|
|
|
|
+ for (var z = 0; z < this.navList.length; z++) {
|
|
|
|
+ for (var q = 0; q < this.navList[z].task.length; q++) {
|
|
|
|
+ for (var w = 0; w < this.navList[z].task[q].tool.length; w++) {
|
|
|
|
+ this.navList[z].task[q].tool[w].isTool = false;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ this.navList[i].task[j].tool[k].isTool =
|
|
|
|
+ !this.navList[i].task[j].tool[k].isTool;
|
|
|
|
+ var a = document.getElementsByClassName("study_top")[0];
|
|
|
|
+ var b = this.$refs["bz" + k][0];
|
|
|
|
+ a.scrollTop = b.offsetTop;
|
|
|
|
+ },
|
|
addTools2(i) {
|
|
addTools2(i) {
|
|
if (i == 4) {
|
|
if (i == 4) {
|
|
// this.openTools2(4);
|
|
// this.openTools2(4);
|
|
@@ -13997,6 +14157,12 @@ export default {
|
|
this.courseType = s;
|
|
this.courseType = s;
|
|
this.navId = i;
|
|
this.navId = i;
|
|
this.taskCount = n;
|
|
this.taskCount = n;
|
|
|
|
+ this.chapInfoList[this.courseType].chapterInfo[0].taskJson[
|
|
|
|
+ this.taskCount
|
|
|
|
+ ].isLook =
|
|
|
|
+ !this.chapInfoList[this.courseType].chapterInfo[0].taskJson[
|
|
|
|
+ this.taskCount
|
|
|
|
+ ].isLook;
|
|
if (this.IsLookOpen) {
|
|
if (this.IsLookOpen) {
|
|
this.chapInfoList[this.courseType].chapterInfo[0].taskJson[
|
|
this.chapInfoList[this.courseType].chapterInfo[0].taskJson[
|
|
this.taskCount
|
|
this.taskCount
|
|
@@ -14042,7 +14208,7 @@ export default {
|
|
// }
|
|
// }
|
|
// this.navList[i].isOpen = true;
|
|
// this.navList[i].isOpen = true;
|
|
this.navList[i].isOpen = !this.navList[i].isOpen;
|
|
this.navList[i].isOpen = !this.navList[i].isOpen;
|
|
- if(this.navList[i].isOpen){
|
|
|
|
|
|
+ if (this.navList[i].isOpen) {
|
|
this.openTask(i, 0, i + "-0");
|
|
this.openTask(i, 0, i + "-0");
|
|
}
|
|
}
|
|
},
|
|
},
|
|
@@ -14273,7 +14439,10 @@ export default {
|
|
} else {
|
|
} else {
|
|
if (_chapterData[this.taskCount].length > 0) {
|
|
if (_chapterData[this.taskCount].length > 0) {
|
|
let _url = _chapterData[this.taskCount][0].url;
|
|
let _url = _chapterData[this.taskCount][0].url;
|
|
- if (_chapterData[this.taskCount][0].type == 8 || _chapterData[this.taskCount][0].type == 14) {
|
|
|
|
|
|
+ if (
|
|
|
|
+ _chapterData[this.taskCount][0].type == 8 ||
|
|
|
|
+ _chapterData[this.taskCount][0].type == 14
|
|
|
|
+ ) {
|
|
this.showType = 2;
|
|
this.showType = 2;
|
|
if (
|
|
if (
|
|
_url.indexOf("https://") == -1 &&
|
|
_url.indexOf("https://") == -1 &&
|
|
@@ -14412,7 +14581,10 @@ export default {
|
|
} else {
|
|
} else {
|
|
if (_chapterData[this.taskCount].length > 0) {
|
|
if (_chapterData[this.taskCount].length > 0) {
|
|
let _url = _chapterData[this.taskCount][0].url;
|
|
let _url = _chapterData[this.taskCount][0].url;
|
|
- if (_chapterData[this.taskCount][0].type == 8 || _chapterData[this.taskCount][0].type == 14) {
|
|
|
|
|
|
+ if (
|
|
|
|
+ _chapterData[this.taskCount][0].type == 8 ||
|
|
|
|
+ _chapterData[this.taskCount][0].type == 14
|
|
|
|
+ ) {
|
|
this.showType = 2;
|
|
this.showType = 2;
|
|
if (
|
|
if (
|
|
_url.indexOf("https://") == -1 &&
|
|
_url.indexOf("https://") == -1 &&
|
|
@@ -14851,11 +15023,12 @@ export default {
|
|
setNavList() {
|
|
setNavList() {
|
|
if (this.navList.length == 0) {
|
|
if (this.navList.length == 0) {
|
|
this.navList = [];
|
|
this.navList = [];
|
|
|
|
+ var copyList = [];
|
|
for (var l = 0; l < this.chapInfoList.length; l++) {
|
|
for (var l = 0; l < this.chapInfoList.length; l++) {
|
|
var q = this.chapInfoList[l].dyName;
|
|
var q = this.chapInfoList[l].dyName;
|
|
var w = this.chapInfoList[l].chapterInfo[0].taskJson;
|
|
var w = this.chapInfoList[l].chapterInfo[0].taskJson;
|
|
var e;
|
|
var e;
|
|
- this.navList.push({
|
|
|
|
|
|
+ copyList.push({
|
|
dyName: q,
|
|
dyName: q,
|
|
isOpen: l === 0 ? true : false,
|
|
isOpen: l === 0 ? true : false,
|
|
task: [],
|
|
task: [],
|
|
@@ -14863,23 +15036,34 @@ export default {
|
|
for (var r = 0; r < w.length; r++) {
|
|
for (var r = 0; r < w.length; r++) {
|
|
e = w[r].task;
|
|
e = w[r].task;
|
|
if (this.chapInfoList[l].easy == 1) {
|
|
if (this.chapInfoList[l].easy == 1) {
|
|
- this.navList[l].task.push({
|
|
|
|
|
|
+ copyList[l].task.push({
|
|
taskName: q,
|
|
taskName: q,
|
|
id: l + "-" + r,
|
|
id: l + "-" + r,
|
|
isLook: w[r].isLook,
|
|
isLook: w[r].isLook,
|
|
|
|
+ tool: [],
|
|
});
|
|
});
|
|
} else {
|
|
} else {
|
|
- this.navList[l].task.push({
|
|
|
|
|
|
+ copyList[l].task.push({
|
|
taskName: e,
|
|
taskName: e,
|
|
id: l + "-" + r,
|
|
id: l + "-" + r,
|
|
isLook: w[r].isLook,
|
|
isLook: w[r].isLook,
|
|
|
|
+ tool: [],
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ var t = w[r].toolChoose;
|
|
|
|
+ for (var k = 0; k < t.length; k++) {
|
|
|
|
+ var tool = t[k].tool[0];
|
|
|
|
+ copyList[l].task[r].tool.push({
|
|
|
|
+ tool: tool,
|
|
|
|
+ isTool: false,
|
|
});
|
|
});
|
|
}
|
|
}
|
|
-
|
|
|
|
// this.navId = this.navId ? this.navId : l + "-" + r;
|
|
// this.navId = this.navId ? this.navId : l + "-" + r;
|
|
// this.navId = l + "-" + r;
|
|
// this.navId = l + "-" + r;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ this.navList = copyList;
|
|
this.navList[0].isOpen = false;
|
|
this.navList[0].isOpen = false;
|
|
this.navList[this.courseType].isOpen = true;
|
|
this.navList[this.courseType].isOpen = true;
|
|
this.navId = this.navList[this.courseType].task[this.taskCount].id;
|
|
this.navId = this.navList[this.courseType].task[this.taskCount].id;
|
|
@@ -16803,10 +16987,14 @@ export default {
|
|
this.groupJson2 = JSON.parse(JSON.stringify(this.groupJson));
|
|
this.groupJson2 = JSON.parse(JSON.stringify(this.groupJson));
|
|
this.dialogVisibleGroup2 = true;
|
|
this.dialogVisibleGroup2 = true;
|
|
},
|
|
},
|
|
- numberPan(){
|
|
|
|
- if(/[^\d]/.test(this.groupJson.number) || this.groupJson.number < 2 || this.groupJson.number > 10){
|
|
|
|
- this.$message.error('请输入2-10的数字')
|
|
|
|
- this.groupJson.number = ''
|
|
|
|
|
|
+ numberPan() {
|
|
|
|
+ if (
|
|
|
|
+ /[^\d]/.test(this.groupJson.number) ||
|
|
|
|
+ this.groupJson.number < 2 ||
|
|
|
|
+ this.groupJson.number > 10
|
|
|
|
+ ) {
|
|
|
|
+ this.$message.error("请输入2-10的数字");
|
|
|
|
+ this.groupJson.number = "";
|
|
}
|
|
}
|
|
},
|
|
},
|
|
updateGroupJson() {
|
|
updateGroupJson() {
|
|
@@ -17490,7 +17678,7 @@ export default {
|
|
}
|
|
}
|
|
|
|
|
|
.filebox .tooldetail {
|
|
.filebox .tooldetail {
|
|
- width: calc(100% - 300px);
|
|
|
|
|
|
+ width: calc(100% - 100px);
|
|
margin: 0px 12px;
|
|
margin: 0px 12px;
|
|
padding: 12px 25px 0 13px;
|
|
padding: 12px 25px 0 13px;
|
|
line-height: 30px;
|
|
line-height: 30px;
|
|
@@ -17822,30 +18010,43 @@ export default {
|
|
justify-content: center;
|
|
justify-content: center;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+.reBtnIcon,
|
|
|
|
+.commentIcon,
|
|
|
|
+.vedioIcon,
|
|
|
|
+.vedioIcon1 {
|
|
|
|
+ width: 36px;
|
|
|
|
+ height: 36px;
|
|
|
|
+ border-radius: 4px;
|
|
|
|
+ position: relative;
|
|
|
|
+ background: #e0eafb;
|
|
|
|
+ cursor: pointer;
|
|
|
|
+ margin-right: 12px;
|
|
|
|
+}
|
|
|
|
+.reBtnIcon::before,
|
|
.commentIcon::before,
|
|
.commentIcon::before,
|
|
.vedioIcon::before,
|
|
.vedioIcon::before,
|
|
-.lockIcon::before,
|
|
|
|
-.returnIcon::before {
|
|
|
|
|
|
+.vedioIcon::before {
|
|
content: "";
|
|
content: "";
|
|
display: block;
|
|
display: block;
|
|
background-size: 100% 100%;
|
|
background-size: 100% 100%;
|
|
background-repeat: no-repeat;
|
|
background-repeat: no-repeat;
|
|
width: 20px;
|
|
width: 20px;
|
|
height: 20px;
|
|
height: 20px;
|
|
- margin-right: 5px;
|
|
|
|
|
|
+ position: absolute;
|
|
|
|
+ top: 8px;
|
|
|
|
+ left: 8px;
|
|
|
|
+}
|
|
|
|
+.reBtnIcon::before {
|
|
|
|
+ background-image: url("../assets/icon/newIcons/refresh.png");
|
|
}
|
|
}
|
|
.commentIcon::before {
|
|
.commentIcon::before {
|
|
- background-image: url("../assets/icon/newIcon/comment.png");
|
|
|
|
|
|
+ background-image: url("../assets/icon/newIcons/comment.png");
|
|
}
|
|
}
|
|
.vedioIcon::before {
|
|
.vedioIcon::before {
|
|
- background-image: url("../assets/icon/newIcon/vedio.png");
|
|
|
|
|
|
+ background-image: url("../assets/icon/newIcons/transcribe.png");
|
|
}
|
|
}
|
|
-.lockIcon::before {
|
|
|
|
- background-image: url("../assets/icon/newIcon/lock.png");
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.returnIcon::before {
|
|
|
|
- background-image: url("../assets/icon/newIcon/return.png");
|
|
|
|
|
|
+.vedioIcon1::before {
|
|
|
|
+ background-image: url("../assets/icon/newIcons/istranscribe.png");
|
|
}
|
|
}
|
|
|
|
|
|
.tool {
|
|
.tool {
|
|
@@ -18610,11 +18811,15 @@ export default {
|
|
transform: translateY(-50%);
|
|
transform: translateY(-50%);
|
|
}
|
|
}
|
|
|
|
|
|
-.navActive {
|
|
|
|
|
|
+.navActive,
|
|
|
|
+.toolActive {
|
|
height: auto !important;
|
|
height: auto !important;
|
|
overflow: auto !important;
|
|
overflow: auto !important;
|
|
padding-bottom: 16px;
|
|
padding-bottom: 16px;
|
|
}
|
|
}
|
|
|
|
+.toolActive {
|
|
|
|
+ padding: 0;
|
|
|
|
+}
|
|
|
|
|
|
.navTask {
|
|
.navTask {
|
|
display: flex;
|
|
display: flex;
|
|
@@ -18638,7 +18843,8 @@ export default {
|
|
}
|
|
}
|
|
|
|
|
|
.openTaskActive {
|
|
.openTaskActive {
|
|
- background-color: #3681fc !important;
|
|
|
|
|
|
+ background-color: #e0eafb !important;
|
|
|
|
+ color: #0061ff;
|
|
}
|
|
}
|
|
|
|
|
|
.iframeName {
|
|
.iframeName {
|
|
@@ -18660,7 +18866,7 @@ export default {
|
|
width: 95%;
|
|
width: 95%;
|
|
margin: 17px auto 0;
|
|
margin: 17px auto 0;
|
|
height: calc(100% - 40px - 21px - 20px - 17px);
|
|
height: calc(100% - 40px - 21px - 20px - 17px);
|
|
- background: #f0f4fa;
|
|
|
|
|
|
+ background: #fff;
|
|
border-radius: 8px;
|
|
border-radius: 8px;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -18715,9 +18921,13 @@ export default {
|
|
}
|
|
}
|
|
|
|
|
|
.toolBox {
|
|
.toolBox {
|
|
- padding: 15px 0 10px 25px;
|
|
|
|
|
|
+ margin: 15px 0 0 25px;
|
|
display: flex;
|
|
display: flex;
|
|
position: relative;
|
|
position: relative;
|
|
|
|
+ background: #f0f4fa;
|
|
|
|
+ padding: 18px 20px;
|
|
|
|
+ border-radius: 4px;
|
|
|
|
+ width: 90%;
|
|
}
|
|
}
|
|
|
|
|
|
.btnAll {
|
|
.btnAll {
|
|
@@ -18729,6 +18939,57 @@ export default {
|
|
align-items: center;
|
|
align-items: center;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+.btnLeft,
|
|
|
|
+.btnRight {
|
|
|
|
+ display: flex;
|
|
|
|
+ flex-direction: row;
|
|
|
|
+ flex-wrap: nowrap;
|
|
|
|
+ align-items: center;
|
|
|
|
+ padding: 5px 0;
|
|
|
|
+}
|
|
|
|
+.btnLeft {
|
|
|
|
+ border-right: 1px solid #cad1dc;
|
|
|
|
+}
|
|
|
|
+.btnLeft > .custom-tooltip {
|
|
|
|
+ background: #3681fc;
|
|
|
|
+ color: #fff;
|
|
|
|
+}
|
|
|
|
+.last,
|
|
|
|
+.returnBtn1 {
|
|
|
|
+ width: 90px;
|
|
|
|
+ height: 36px;
|
|
|
|
+ background: #ffffff;
|
|
|
|
+ border-radius: 4px;
|
|
|
|
+ border: 1px solid #0061ff;
|
|
|
|
+ cursor: pointer;
|
|
|
|
+ display: flex;
|
|
|
|
+ flex-direction: row;
|
|
|
|
+ flex-wrap: nowrap;
|
|
|
|
+ align-items: center;
|
|
|
|
+ justify-content: center;
|
|
|
|
+ margin-left: 12px;
|
|
|
|
+}
|
|
|
|
+.returnBtn1 {
|
|
|
|
+ background: #f0f4fa;
|
|
|
|
+ border-radius: 4px;
|
|
|
|
+ border: 1px solid #cad1dc;
|
|
|
|
+ margin: 0 12px;
|
|
|
|
+}
|
|
|
|
+.lastImg {
|
|
|
|
+ min-width: 15px;
|
|
|
|
+ width: 15px;
|
|
|
|
+ height: 15px;
|
|
|
|
+}
|
|
|
|
+.lastText {
|
|
|
|
+ padding: 0 5px 2px 5px;
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
+ color: #0061ff;
|
|
|
|
+ font-size: 14px;
|
|
|
|
+}
|
|
|
|
+.lastImg > img {
|
|
|
|
+ width: 100%;
|
|
|
|
+ height: 100%;
|
|
|
|
+}
|
|
/* .vedioTimeBox {
|
|
/* .vedioTimeBox {
|
|
display: flex;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-direction: row;
|
|
@@ -18745,10 +19006,12 @@ export default {
|
|
}
|
|
}
|
|
|
|
|
|
.worksBox {
|
|
.worksBox {
|
|
- padding: 20px 0 0 10px;
|
|
|
|
|
|
+ margin: 0 0 10px 25px;
|
|
border-bottom: 1px solid #eeeeee;
|
|
border-bottom: 1px solid #eeeeee;
|
|
- width: 96%;
|
|
|
|
- margin: 0 auto;
|
|
|
|
|
|
+ background: #f0f4fa;
|
|
|
|
+ padding: 18px 20px;
|
|
|
|
+ border-radius: 4px;
|
|
|
|
+ width: 90%;
|
|
}
|
|
}
|
|
|
|
|
|
.worksBTitle {
|
|
.worksBTitle {
|
|
@@ -19710,26 +19973,16 @@ export default {
|
|
|
|
|
|
.pButton {
|
|
.pButton {
|
|
position: fixed;
|
|
position: fixed;
|
|
- /* right: 5%; */
|
|
|
|
- /* bottom: 5%; */
|
|
|
|
- color: #fff;
|
|
|
|
- /* width: 50px;
|
|
|
|
- height: 50px; */
|
|
|
|
- /* border-radius: 50%; */
|
|
|
|
text-align: center;
|
|
text-align: center;
|
|
- /* line-height: 50px; */
|
|
|
|
- /* background-image: -webkit-linear-gradient(left, #72aaf4, #4d81d5); */
|
|
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
z-index: 999;
|
|
z-index: 999;
|
|
right: 20px;
|
|
right: 20px;
|
|
top: 110px;
|
|
top: 110px;
|
|
width: 50px;
|
|
width: 50px;
|
|
height: 50px;
|
|
height: 50px;
|
|
- background: #fff;
|
|
|
|
display: flex;
|
|
display: flex;
|
|
align-items: center;
|
|
align-items: center;
|
|
justify-content: center;
|
|
justify-content: center;
|
|
- box-shadow: 0px 0 8px 2px #c5c5c5;
|
|
|
|
border-radius: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -19943,7 +20196,7 @@ export default {
|
|
z-index: 999;
|
|
z-index: 999;
|
|
left: 50%;
|
|
left: 50%;
|
|
top: 50%;
|
|
top: 50%;
|
|
- margin:-18% 0 0 -300px;
|
|
|
|
|
|
+ margin: -18% 0 0 -300px;
|
|
}
|
|
}
|
|
|
|
|
|
.teacherPz {
|
|
.teacherPz {
|
|
@@ -20763,7 +21016,7 @@ ol {
|
|
.navCorOpen {
|
|
.navCorOpen {
|
|
padding-right: 15px;
|
|
padding-right: 15px;
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
- width: 28px;
|
|
|
|
|
|
+ width: 45px;
|
|
display: flex;
|
|
display: flex;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -20773,8 +21026,8 @@ ol {
|
|
}
|
|
}
|
|
|
|
|
|
.mlImg {
|
|
.mlImg {
|
|
- width: 25px !important;
|
|
|
|
- min-width: 25px;
|
|
|
|
|
|
+ width: 45px !important;
|
|
|
|
+ min-width: 45px;
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
transform: rotate(180deg);
|
|
transform: rotate(180deg);
|
|
}
|
|
}
|
|
@@ -20851,7 +21104,8 @@ ol {
|
|
.el-table >>> .even_row {
|
|
.el-table >>> .even_row {
|
|
background-color: #f0f4fa;
|
|
background-color: #f0f4fa;
|
|
}
|
|
}
|
|
-.stageBoxCss {
|
|
|
|
|
|
+.stageBoxCss,
|
|
|
|
+.stageBoxIsCss {
|
|
display: flex;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
flex-wrap: nowrap;
|
|
@@ -20862,16 +21116,21 @@ ol {
|
|
width: 100%;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+.stageBoxIsCss {
|
|
|
|
+ background: #0061ff;
|
|
|
|
+ color: #fff;
|
|
|
|
+ border-radius: 8px;
|
|
|
|
+}
|
|
|
|
+
|
|
.stageItemTitle {
|
|
.stageItemTitle {
|
|
display: flex;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
flex-wrap: nowrap;
|
|
align-items: center;
|
|
align-items: center;
|
|
- margin-left: 6px;
|
|
|
|
- width: calc(100% - 60px);
|
|
|
|
|
|
+ margin-left: 15px;
|
|
|
|
+ width: calc(100% - 50px);
|
|
}
|
|
}
|
|
.stageItemTitle > div:first-child {
|
|
.stageItemTitle > div:first-child {
|
|
- color: #0e1e33;
|
|
|
|
font-size: 16px;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
font-weight: bold;
|
|
min-width: 55px;
|
|
min-width: 55px;
|
|
@@ -20879,7 +21138,6 @@ ol {
|
|
.stageItemTitle > div:last-child {
|
|
.stageItemTitle > div:last-child {
|
|
font-size: 15px;
|
|
font-size: 15px;
|
|
font-weight: 600;
|
|
font-weight: 600;
|
|
- color: #2d2c2c;
|
|
|
|
max-width: 242px;
|
|
max-width: 242px;
|
|
white-space: nowrap;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
overflow: hidden;
|
|
@@ -20887,57 +21145,103 @@ ol {
|
|
word-break: break-word;
|
|
word-break: break-word;
|
|
width: calc(100% - 55px);
|
|
width: calc(100% - 55px);
|
|
}
|
|
}
|
|
-.closeTri {
|
|
|
|
- min-width: 20px;
|
|
|
|
- width: 20px;
|
|
|
|
- height: 20px;
|
|
|
|
- padding-left: 15px;
|
|
|
|
|
|
+.closeTri,
|
|
|
|
+.closeTri1 {
|
|
|
|
+ min-width: 15px;
|
|
|
|
+ width: 15px;
|
|
|
|
+ height: 15px;
|
|
}
|
|
}
|
|
|
|
|
|
-.closeTri > img {
|
|
|
|
|
|
+.closeTri1 {
|
|
|
|
+ padding-left: 10px;
|
|
|
|
+ cursor: pointer;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.closeTri > img,
|
|
|
|
+.closeTri1 > img {
|
|
width: 100%;
|
|
width: 100%;
|
|
height: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
|
|
-.stageChild {
|
|
|
|
|
|
+.stageChild,
|
|
|
|
+.toolChild {
|
|
height: 0;
|
|
height: 0;
|
|
overflow: hidden;
|
|
overflow: hidden;
|
|
transition: all 0.5s;
|
|
transition: all 0.5s;
|
|
}
|
|
}
|
|
|
|
+.toolChild {
|
|
|
|
+ margin: 0 0 0 17px;
|
|
|
|
+ padding: 0 0 0 20px;
|
|
|
|
+ border-left: 1px solid #d7d7d7;
|
|
|
|
+}
|
|
|
|
+.gjCss {
|
|
|
|
+ display: flex;
|
|
|
|
+ flex-direction: row;
|
|
|
|
+ flex-wrap: nowrap;
|
|
|
|
+ align-items: center;
|
|
|
|
+ padding: 15px 0;
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
+ font-size: 14px;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.gjCss > div:last-child {
|
|
|
|
+ cursor: pointer;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.toolChild > div {
|
|
|
|
+ position: relative;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.toolChild > div::before {
|
|
|
|
+ content: "";
|
|
|
|
+ width: 15px;
|
|
|
|
+ height: 1px;
|
|
|
|
+ background: #cad1dc;
|
|
|
|
+ position: absolute;
|
|
|
|
+ top: 24px;
|
|
|
|
+ left: -20px;
|
|
|
|
+ display: block;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.isGjCss {
|
|
|
|
+ color: #0061ff;
|
|
|
|
+}
|
|
|
|
|
|
.navItem {
|
|
.navItem {
|
|
background: #ffffff;
|
|
background: #ffffff;
|
|
border-radius: 4px;
|
|
border-radius: 4px;
|
|
- width: 95%;
|
|
|
|
|
|
+ width: 100%;
|
|
margin: 10px auto 0;
|
|
margin: 10px auto 0;
|
|
position: relative;
|
|
position: relative;
|
|
|
|
+ height: 48px;
|
|
|
|
+ display: flex;
|
|
|
|
+ flex-direction: row;
|
|
|
|
+ flex-wrap: nowrap;
|
|
|
|
+ align-items: center;
|
|
}
|
|
}
|
|
.navItemList {
|
|
.navItemList {
|
|
display: flex;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
flex-wrap: nowrap;
|
|
- align-items: flex-start;
|
|
|
|
- padding: 6px 13px;
|
|
|
|
|
|
+ align-items: center;
|
|
|
|
+ padding: 0 13px;
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
|
|
+ width: calc(100% - 60px);
|
|
|
|
+ height: 100%;
|
|
}
|
|
}
|
|
.navItemList > div:first-child {
|
|
.navItemList > div:first-child {
|
|
- font-weight: 400;
|
|
|
|
- color: #474747;
|
|
|
|
- padding-bottom: 4px;
|
|
|
|
min-width: 60px;
|
|
min-width: 60px;
|
|
}
|
|
}
|
|
.navItemList > div:last-child {
|
|
.navItemList > div:last-child {
|
|
- width: auto;
|
|
|
|
- font-weight: 400;
|
|
|
|
- color: #0e1e33;
|
|
|
|
|
|
+ width: calc(100% - 80px);
|
|
white-space: nowrap;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
text-overflow: ellipsis;
|
|
word-break: break-word;
|
|
word-break: break-word;
|
|
}
|
|
}
|
|
-.isItemList > div {
|
|
|
|
|
|
+/* .isItemList > div {
|
|
color: #fff !important;
|
|
color: #fff !important;
|
|
-}
|
|
|
|
|
|
+} */
|
|
|
|
|
|
.tool_work_box {
|
|
.tool_work_box {
|
|
width: 100%;
|
|
width: 100%;
|
|
@@ -20986,7 +21290,7 @@ ol {
|
|
flex-direction: column;
|
|
flex-direction: column;
|
|
flex-wrap: nowrap;
|
|
flex-wrap: nowrap;
|
|
align-items: center;
|
|
align-items: center;
|
|
- font-size:14px;
|
|
|
|
|
|
+ font-size: 14px;
|
|
}
|
|
}
|
|
|
|
|
|
.whiteBIcon > img {
|
|
.whiteBIcon > img {
|
|
@@ -21023,8 +21327,8 @@ ol {
|
|
width: 20px;
|
|
width: 20px;
|
|
height: 20px;
|
|
height: 20px;
|
|
position: absolute;
|
|
position: absolute;
|
|
- right: 0;
|
|
|
|
- top: 7px;
|
|
|
|
|
|
+ right: 10px;
|
|
|
|
+ top: 15px;
|
|
}
|
|
}
|
|
.lockTaskIcon > img {
|
|
.lockTaskIcon > img {
|
|
width: 100%;
|
|
width: 100%;
|
|
@@ -21043,24 +21347,24 @@ ol {
|
|
margin: 0 10px 0 auto;
|
|
margin: 0 10px 0 auto;
|
|
}
|
|
}
|
|
|
|
|
|
-.selectBox>>>.el-input__inner {
|
|
|
|
|
|
+.selectBox >>> .el-input__inner {
|
|
height: 30px;
|
|
height: 30px;
|
|
line-height: 30px;
|
|
line-height: 30px;
|
|
}
|
|
}
|
|
|
|
|
|
-.selectBox>>>.el-input__icon {
|
|
|
|
|
|
+.selectBox >>> .el-input__icon {
|
|
line-height: 30px;
|
|
line-height: 30px;
|
|
}
|
|
}
|
|
|
|
|
|
-.sentenceTitle{
|
|
|
|
|
|
+.sentenceTitle {
|
|
display: flex;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
flex-wrap: nowrap;
|
|
align-items: center;
|
|
align-items: center;
|
|
}
|
|
}
|
|
|
|
|
|
-.sentenceTitle::before{
|
|
|
|
- content:attr(index);
|
|
|
|
|
|
+.sentenceTitle::before {
|
|
|
|
+ content: attr(index);
|
|
background: #3681fc;
|
|
background: #3681fc;
|
|
border-radius: 50%;
|
|
border-radius: 50%;
|
|
color: #fff;
|
|
color: #fff;
|