123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827 |
- <template>
- <div class="pb_content">
- <div class="pb_content_body" style="height: 100%">
- <div class="body_student">
- <div class="student_head">
- <div
- v-if="tType != 4"
- class="return"
- @click.stop="
- goTo(
- '/index?userid=' +
- userid +
- '&oid=' +
- oid +
- '&org=' +
- org +
- '&cid=' +
- classId +
- '&tType=' +
- tType +
- '&screenType=' +
- screenType
- )
- "
- >
- 返回
- <!-- <img src="../assets/icon/return.png" alt="" /> -->
- </div>
- <div class="box_course">
- <div class="wheel">
- <img
- style="object-fit: cover"
- :src="
- this.courseDetail.cover != null &&
- this.courseDetail.cover != ''
- ? JSON.parse(this.courseDetail.cover).length > 0
- ? JSON.parse(this.courseDetail.cover)[0].url
- : mr
- : mr
- "
- alt
- />
- </div>
- <div class="right_box">
- <div class="rightT">
- <div class="right_box_title">{{ courseDetail.title }}</div>
- <div class="jd">{{ chapInfo.length }}阶段</div>
- <div class="jd">{{ rw }}任务</div>
- </div>
- <div class="cType">
- <div
- class="all_choose"
- v-for="(item, index) in courseType"
- :key="index"
- >
- <span style="color: #6c6c6c">{{ item + ":" }}</span>
- <span
- class="type_children"
- v-for="(item2, index2) in courseTypeJson[item]"
- :key="index2"
- >{{ item2 }}</span
- >
- </div>
- </div>
- <div class="cType" style="font-size: 18px; color: #6c6c6c">
- <div style="min-width: 150px">
- 创建者:<span style="color: #000">{{
- courseDetail.username
- }}</span>
- </div>
- <div class="Tname" v-if="Tname.length > 0">
- 协同人员:<span
- v-for="(tname, tIndex) in Tname"
- :key="tIndex"
- style="margin: 0 5px; color: #000"
- >{{ tname }}</span
- >
- </div>
- </div>
- <div class="cType" style="font-size: 18px; color: #6c6c6c">
- <div style="display: flex; align-items: center">
- <div>参与人数:</div>
- <div class="man">
- <img src="../assets/people.png" alt />
- </div>
- <div class="person" style="color: #000">
- {{
- courseDetail.vcount != null ? courseDetail.vcount : 0
- }}人
- </div>
- </div>
- <div class="Tname" v-if="courseDetail.classname">
- 授课班级:<span style="margin: 0 5px; color: #000">{{
- courseDetail.classname
- }}</span>
- </div>
- </div>
- <div class="now_study" @click="dialogVisible = true">
- 立即学习
- </div>
- </div>
- </div>
- </div>
- <div class="student_body">
- <div class="sLeft" v-if="courseDetail.brief">
- <div class="courseT">项目详情</div>
- <div class="courseTd">{{ courseDetail.brief }}</div>
- </div>
- <div :class="courseDetail.brief != '' ? 'rightTd' : 'noBRight'">
- <div v-if="tType == 1 || tType == 4" class="checkBox">
- <span :class="{ active: type == 2 }" @click="type = 2"
- >阶段选择</span
- >
- <span :class="{ active: type == 1 }" @click="type = 1"
- >课程分析</span
- >
- </div>
- <div
- v-if="((tType == 1 || tType == 4) && type == 2) || tType == 2"
- :class="courseDetail.brief != '' ? 'rightTd' : 'noBRight'"
- style="width: 100%"
- >
- <div
- class="blue_box_one"
- v-for="(item, index) in chapInfo"
- :key="index"
- @click="addUserRate(index)"
- >
- <div>第{{ index + 1 }}阶段</div>
- <div :title="item.dyName">{{ item.dyName }}</div>
- <div>{{ item.chapterInfo[0].taskJson.length }}个任务</div>
- </div>
- </div>
- <div
- v-if="
- (tType == 1 || tType == 4) &&
- Object.keys(chaptersJson).length &&
- type == 1
- "
- class="detail"
- >
- <div class="detail_box">
- <div class="title">
- <span class="toolIcon">工具分析</span>
- <div class="statebox">
- <div>
- <span class="taskIcon">全部阶段:</span
- ><span>{{ chaptersJson.state.stage }}</span>
- </div>
- <div>
- <span class="finishIcon">已进行:</span
- ><span>{{ chaptersJson.state.finish }}</span>
- </div>
- <div>
- <span class="learningIcon">未进行:</span
- ><span>{{ chaptersJson.state.learing }}</span>
- </div>
- </div>
- </div>
- <div class="box" v-if="chaptersJson.tool.length">
- <div class="progress">
- <div
- v-for="(item, index) in chaptersJson.tool"
- :key="index"
- class="chapter"
- >
- <div
- class="stage"
- style="
- cursor: pointer;
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- justify-content: center;
- align-items: center;
- padding: 0 10px;
- "
- @click="addUserRate(index)"
- >
- <div>第{{ index + 1 }}阶段</div>
- <div>
- <el-tooltip
- class="item"
- effect="light"
- :content="item.name"
- placement="top"
- >
- <div class="titleCss" style="max-width: 260px">{{ item.name }}</div>
- </el-tooltip>
- </div>
- </div>
- <!-- {{ chaptersJson.chapterState[index].isFinsh ? '已完成' : '进行中' }} -->
- <div class="task">
- <div
- v-for="(item2, index2) in item.array"
- :key="index + '-' + index2"
- class="taskBox"
- >
- <div class="taskName">
- <div class="navIndex">任务{{ index2 + 1 }}</div>
- <div>
- <el-tooltip
- class="item"
- effect="light"
- :content="item2.name"
- placement="top"
- >
- <div class="titleCss">{{ item2.name }}</div>
- </el-tooltip>
- </div>
- </div>
- <div class="p_tool_box">
- <span
- v-for="(item3, index3) in item2.array"
- :key="index + '-' + index2 + '-' + index3"
- class="p_tool"
- >
- <div v-if="item3.tool == 1">
- <img
- src="../assets/icon/secondToolList/whiteBoard.png"
- alt
- />
- <div>电子白板</div>
- </div>
- <div v-if="item3.tool == 3">
- <img
- src="../assets/icon/secondToolList/mindMapping.png"
- alt
- />
- <div>思维导图</div>
- </div>
- <div v-if="item3.tool == 6">
- <img
- src="../assets/icon/secondToolList/doc.png"
- alt
- />
- <div>协同文档</div>
- </div>
- <div v-if="item3.tool == 7">
- <img
- src="../assets/icon/secondToolList/mindNetwork.png"
- alt
- />
- <div>思维网格</div>
- </div>
- <div v-if="item3.tool == 8">
- <img
- src="../assets/icon/secondToolList/library.png"
- alt
- />
- <div>素材库</div>
- </div>
- <div v-if="item3.tool == 17">
- <img
- src="../assets/icon/secondToolList/library.png"
- alt
- />
- <div>学习资料</div>
- </div>
- <div v-if="item3.tool == 2">
- <img
- src="../assets/icon/secondToolList/note.png"
- alt
- />
- <div>便签</div>
- </div>
- <div v-if="item3.tool == 4">
- <img
- src="../assets/icon/thirdToolList/ask.png"
- alt
- />
- <div>问卷调查</div>
- </div>
- <div v-if="item3.tool == 45">
- <img
- src="../assets/icon/thirdToolList/choose.png"
- alt
- />
- <div>选择题</div>
- </div>
- <!-- <div v-if="item3.tool == 5">
- <img
-
- src="../assets/icon/thirdToolList/score.png"
- alt
- />
- <div >量规评分</div>
- </div> -->
- <div v-if="item3.tool == 10">
- <img
- src="../assets/icon/thirdToolList/time.png"
- alt
- />
- <div>倒计时</div>
- </div>
- <div v-if="item3.tool == 15">
- <img
- src="../assets/icon/thirdToolList/answer.png"
- alt
- />
- <div>问答工具</div>
- </div>
- <div v-if="item3.tool == 26">
- <img
- src="../assets/icon/thirdToolList/courseDesign.png"
- alt
- />
- <div>课程设计</div>
- </div>
- <div v-if="item3.tool == 18">
- <img
- src="../assets/icon/thirdToolList/trainPlatform.png"
- alt
- />
- <div>训练服务器</div>
- </div>
- <div v-if="item3.tool == 16">
- <img
- src="../assets/icon/thirdToolList/work.png"
- alt
- />
- <div>作业提交</div>
- </div>
- <div v-if="item3.tool == 21">
- <img
- src="../assets/icon/fourthToolList/program.png"
- alt
- />
- <div>编程平台</div>
- </div>
- <div v-if="item3.tool == 22">
- <img
- src="../assets/icon/fourthToolList/program.png"
- alt
- />
- <div>AI体验</div>
- </div>
- <div v-if="item3.tool == 23">
- <img
- src="../assets/icon/fourthToolList/program.png"
- alt
- />
- <div>Python</div>
- </div>
- <div v-if="item3.tool == 24">
- <img
- src="../assets/icon/fourthToolList/AIprogram.png"
- alt
- />
- <div>AI平台</div>
- </div>
- <div v-if="item3.tool == 25">
- <img
- src="../assets/icon/thirdToolList/evalua.png"
- alt
- />
- <div>目标管理</div>
- </div>
- <div v-if="item3.tool == 31">
- <img
- src="../assets/icon/secondToolList/networkPanel.png"
- alt
- />
- <div>数学画板</div>
- </div>
- <div v-if="item3.tool == 28">
- <img
- src="../assets/icon/secondToolList/translation.png"
- alt
- />
- <div>翻译</div>
- </div>
- <div v-if="item3.tool == 37">
- <img
- src="../assets/icon/secondToolList/mohe.png"
- alt
- />
- <div>魔盒识字</div>
- </div>
- <div v-if="item3.tool == 38">
- <img
- src="../assets/icon/secondToolList/24game.png"
- alt
- />
- <div>24点</div>
- </div>
- <div v-if="item3.tool == 39">
- <img
- src="../assets/icon/secondToolList/GeoGebra.png"
- alt
- />
- <div>GeoGebra</div>
- </div>
- <div v-if="item3.tool == 32">
- <img
- src="../assets/icon/thirdToolList/code.png"
- alt
- />
- <div>源码编辑</div>
- </div>
- <div v-if="item3.tool == 40">
- <img
- src="../assets/icon/secondToolList/eval.png"
- alt
- />
- <div>学生评价</div>
- </div>
- <div v-if="item3.tool == 41">
- <img
- src="../assets/icon/thirdToolList/select.png"
- alt
- />
- <div>选择填空</div>
- </div>
- <div v-if="item3.tool == 44">
- <img
- src="../assets/icon/thirdToolList/hanClass.png"
- alt
- />
- <div>汉字宫</div>
- </div>
- <div v-if="item3.tool == 47">
- <img
- src="../assets/icon/fourthToolList/conSentences.png"
- alt
- />
- <div>连词成句</div>
- </div>
- <div v-if="item3.tool == 48">
- <img
- src="../assets/icon/fourthToolList/conSentences.png"
- alt
- />
- <div>表格</div>
- </div>
- <div v-if="item3.tool == 49">
- <img
- src="../assets/icon/fourthToolList/group.png"
- alt
- />
- <div>学生分组</div>
- </div>
- <div v-if="item3.tool == undefined">
- <img
- src="../assets/icon/empytool.png"
- alt
- style="width: 64px; height: 75px"
- />
- </div>
- </span>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div
- class="detail_box"
- v-if="Object.keys(chaptersJson.time).length"
- >
- <div class="title">
- <span class="frequencyIcon">作业频率</span>
- </div>
- <div class="box">
- <div>
- <Heatmap
- :Josn="chaptersJson.time"
- :num="chaptersJson.studentCount"
- ></Heatmap>
- </div>
- </div>
- </div>
- <div class="detail_box">
- <div class="title"><span class="timeIcon">实施时间</span></div>
- <div class="box">
- <div style="font-size: 22px; margin: 15px 0 45px">
- {{ courseDetail.title }}
- </div>
- <div class="chapter_time_box" style="margin-left: 170px">
- <div
- v-for="(item, index) in chaptersJson.work"
- :key="index"
- class="c_box"
- >
- <div class="stage_box" style="left: -195px">
- <div
- style="
- min-width: 150px;
- position: relative;
- left: -5px;
- "
- >
- {{ item.time }}
- </div>
- <div class="yuan"></div>
- <div class="stage">
- 第{{ index + 1 }}阶段 {{ item.name }}
- </div>
- <div
- class="s_up"
- :class="{ s_up2: !item.is }"
- @click="item.is = !item.is"
- >
- <img src="../assets/icon/up.png" alt="" />
- </div>
- </div>
- <div v-show="item.is">
- <div
- v-for="(item2, index2) in item.chapter"
- :key="index + '-' + index2"
- >
- <div
- style="
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- align-items: center;
- "
- >
- <div
- style="
- width: 13px;
- height: 13px;
- background: #5a82cb 100%;
- border-radius: 50%;
- margin-right: 10px;
- "
- ></div>
- <div
- style="
- color: #4376c3;
- font-size: 20px;
- font-weight: bold;
- "
- >
- 任务{{ index2 + 1 }}:{{ item2.name }}
- </div>
- </div>
- <div class="p_tool_box2">
- <span
- v-for="(item3, index3) in item2.task"
- :key="index + '-' + index2 + '-' + index3"
- class="p_tool2"
- >
- <div
- class="toolBigBox"
- style="
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- align-items: center;
- "
- v-if="item3.works.length"
- >
- <div
- style="
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- align-items: flex-end;
- min-width: 140px;
- "
- >
- <div class="lineBox"></div>
- <div class="toolbox">
- <div
- style="font-size: 16px; font-weight: bold"
- >
- 步骤{{ index3 + 1 }}:
- </div>
- <div v-if="item3.tool == 1">电子白板</div>
- <div v-if="item3.tool == 3">思维导图</div>
- <div v-if="item3.tool == 6">协同文档</div>
- <div v-if="item3.tool == 7">思维网格</div>
- <div v-if="item3.tool == 8">素材库</div>
- <div v-if="item3.tool == 17">学习资料</div>
- <div v-if="item3.tool == 2">便签</div>
- <div v-if="item3.tool == 4">问卷调查</div>
- <div v-if="item3.tool == 45">选择题</div>
- <div v-if="item3.tool == 10">倒计时</div>
- <div v-if="item3.tool == 15">问答工具</div>
- <div v-if="item3.tool == 26">课程设计</div>
- <div v-if="item3.tool == 18">
- 训练服务器
- </div>
- <div v-if="item3.tool == 16">作业提交</div>
- <div v-if="item3.tool == 21">编程平台</div>
- <div v-if="item3.tool == 22">AI体验</div>
- <div v-if="item3.tool == 23">Python</div>
- <div v-if="item3.tool == 24">AI平台</div>
- <div v-if="item3.tool == 25">目标管理</div>
- <div v-if="item3.tool == 31">数学画板</div>
- <div v-if="item3.tool == 28">翻译</div>
- <div v-if="item3.tool == 37">魔盒识字</div>
- <div v-if="item3.tool == 38">24点</div>
- <div v-if="item3.tool == 39">GeoGebra</div>
- <div v-if="item3.tool == 32">源码编辑</div>
- <div v-if="item3.tool == 40">学生评价</div>
- <div v-if="item3.tool == 41">选择填空</div>
- <div v-if="item3.tool == 44">汉字宫</div>
- <div v-if="item3.tool == 47">连词成句</div>
- <div v-if="item3.tool == 48">表格</div>
- <div v-if="item3.tool == 49">学生分组</div>
- </div>
- </div>
- <div
- v-if="item3.works.length"
- style="
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- align-items: center;
- margin-left: 10px;
- "
- >
- <!-- works:[],likeCount: 0, commentCount: 0, score: 0, isScore: 0 -->
- <div class="disCss">
- <div class="blueBtn">
- 作业数量:{{ item3.works.length }}
- </div>
- <div
- v-if="chaptersJson.studentCount"
- class="blueBtn"
- >
- 任务完成率:{{
- (
- (item3.works.length /
- chaptersJson.studentCount) *
- 100
- ).toFixed(2) + "%"
- }}
- </div>
- <div class="blueBtn">
- <div>点赞:{{ item3.likeCount }}</div>
- <div style="margin-left: 15px">
- 评论:{{ item3.commentCount }}
- </div>
- </div>
- </div>
- <div v-if="item3.isScore">
- <div class="disCss">
- <div class="blueBtn">
- 作业评价量:{{ item3.isScore }}
- </div>
- <div class="blueBtn">
- 评价平均分:{{
- (item3.score / item3.isScore).toFixed(
- 2
- )
- }}分
- </div>
- </div>
- </div>
- </div>
- </div>
- </span>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!-- <div v-for="(item, index) in Object.keys(chaptersJson.time)" :key="index">
- {{ '时间:' + item + '次数:' + chaptersJson.time[item] }}</div> -->
- <!-- <div>实施时间:{{ chaptersJson.startTime }}</div> -->
- </div>
- </div>
- </div>
- <!-- <div
- style="
- text-align: center;
- padding: 30px 0 20px 0;
- box-sizing: border-box;
- "
- >
- 此处滚动加载..
- </div>-->
- <el-dialog
- title="阶段选择"
- :visible.sync="dialogVisible"
- :append-to-body="true"
- width="700px"
- :before-close="handleClose"
- class="dialog_change"
- >
- <div style="font-size: 20px">请选择阶段</div>
- <div
- style="
- padding: 20px 30px;
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- "
- >
- <div
- class="blue_box"
- v-for="(item, index) in chapInfo"
- :key="index"
- @click="addUserRate(index)"
- >
- <div>第{{ index + 1 }}阶段</div>
- <div>{{ item.dyName }}</div>
- <div>{{ item.chapterInfo[0].taskJson.length }}个任务</div>
- </div>
- </div>
- </el-dialog>
- </div>
- </div>
- </div>
- </template>
- <script>
- import Heatmap from "./tools/heatmap.vue";
- export default {
- components: {
- Heatmap,
- },
- data() {
- return {
- choose: 0,
- dialogVisible: false,
- id: this.$route.query.courseId,
- userid: this.$route.query.userid,
- oid: this.$route.query.oid,
- org: this.$route.query.org,
- classId: this.$route.query.cid,
- tType: this.$route.query.tType,
- screenType: this.$route.query.screenType,
- courseDetail: {},
- aStudentName: [],
- chapInfo: [],
- courseType: [],
- Tname: [],
- courseTypeJson: {},
- userinfo: [],
- mr: require("../assets/icon/wheel.png"),
- rw: 0,
- chaptersJson: {},
- type: 2,
- };
- },
- methods: {
- handleClose(done) {
- done();
- },
- goTo(path) {
- this.$router.push(path);
- },
- addUserRate(i) {
- // var suid = this.userid;
- // if (
- // JSON.parse(this.courseDetail.course_student).indexOf(suid) == -1 &&
- // JSON.parse(this.courseDetail.userid) != suid
- // ) {
- // this.$message.error("你没有该权限");
- // return;
- // }
- // var a =
- // this.courseDetail.course_student != ""
- // ? JSON.parse(this.courseDetail.course_student)
- // : "";
- // if (this.courseDetail.userid != suid) {
- // if (this.userinfo.type == 2) {
- // if (a != "") {
- // if (
- // JSON.parse(this.courseDetail.course_student).indexOf(suid) == -1
- // ) {
- // this.$message.error("你没有该权限");
- // return;
- // }
- // } else {
- // this.$message.error("暂无项目学员,请联系老师添加项目学员!");
- // return;
- // }
- // }
- // }
- let params = {
- uid: this.userid,
- cid: this.id,
- };
- this.ajax
- .get(this.$store.state.api + "addUserR", params)
- .then((res) => {
- console.log(res.data);
- this.updateVc();
- if (this.tType == 1 || this.tType == 2 || this.tType == 4) {
- this.goTo(
- "/studyStudent?type=" +
- i +
- "&courseId=" +
- this.id +
- "&userid=" +
- this.userid +
- "&oid=" +
- this.oid +
- "&org=" +
- this.org +
- "&cid=" +
- this.classId +
- "&tType=" +
- this.tType +
- "&screenType=" +
- this.screenType
- );
- } else {
- this.goTo(
- "/study?type=" +
- i +
- "&courseId=" +
- this.id +
- "&userid=" +
- this.userid +
- "&oid=" +
- this.oid +
- "&org=" +
- this.org +
- "&cid=" +
- this.classId +
- "&tType=" +
- this.tType +
- "&screenType=" +
- this.screenType
- );
- }
- })
- .catch((err) => {
- console.error(err);
- });
- },
- updateVc() {
- let params = {
- cid: this.id,
- };
- this.ajax
- .get(this.$store.state.api + "updateVc", params)
- .then((res) => {
- console.log(res.data);
- })
- .catch((err) => {
- console.error(err);
- });
- },
- getCourseDetail() {
- const loading = this.$loading.service({
- background: "rgba(255, 255, 255, 0.7)",
- target: document.querySelector(".student_table"),
- });
- let params = {
- courseId: this.id,
- };
- this.ajax
- .get(this.$store.state.api + "selectCourseDetail", params)
- .then((res) => {
- loading.close();
- // this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
- this.courseDetail = res.data[0][0];
- var a = res.data[0];
- var b = res.data[1];
- var c = res.data[2];
- for (var i = 0; i < b.length; i++) {
- // if (!this.id) {
- // this.courseType[b[i].id] = [];
- // }
- for (var j = 0; j < a.length; j++) {
- if (b[i].id == a[j].pid) {
- if (!this.courseTypeJson[b[i].name]) {
- this.courseType.push(b[i].name);
- this.courseTypeJson[b[i].name] = [];
- }
- this.courseTypeJson[b[i].name].push(a[j].name);
- }
- }
- }
- for (var k = 0; k < c.length; k++) {
- this.Tname.push(c[k].name);
- }
- console.log(this.courseTypeJson.length);
- this.aStudentName = res.data[2];
- this.chapInfo = JSON.parse(this.courseDetail.chapters);
- for (var z = 0; z < this.chapInfo.length; z++) {
- this.rw += this.chapInfo[z].chapterInfo[0].taskJson.length;
- }
- let _chapters = JSON.parse(a[0].chapters);
- let _works = res.data[3];
- let _sCont = res.data[4];
- let _comment = res.data[5];
- let _chaptersJson = {
- chapterState: _chapters,
- state: {
- stage: _chapters.length,
- finish: 0,
- learing: 0,
- },
- tool: [],
- chapter: [],
- time: {},
- startTime: _works.length ? _works[0].time : "",
- work: [],
- studentCount: _sCont[0].usercount,
- };
- let timeAarry = [];
- for (var j = 0; j < _works.length; j++) {
- timeAarry.push(_works[j].vtime);
- }
- timeAarry.forEach((item) => {
- _chaptersJson.time[item] = _chaptersJson.time[item] + 1 || 1;
- });
- for (var i = 0; i < _chapters.length; i++) {
- _chaptersJson.chapterState[i].isFinsh = false;
- // _chaptersJson.tool[i] = []
- _chaptersJson.tool[i] = { array: [], name: _chapters[i].dyName };
- _chaptersJson.chapter[i] = [];
- _chaptersJson.work[i] = {
- name: _chapters[i].dyName,
- chapter: [],
- time: "",
- };
- for (var j = 0; j < _works.length; j++) {
- if (i == _works[j].stage) {
- _chaptersJson.chapterState[i].isFinsh = true;
- _chaptersJson.work[i].time = _works[j].time;
- _chaptersJson.state.finish++;
- break;
- }
- }
- let el = _chapters[i].chapterInfo[0].taskJson;
- for (var z = 0; z < el.length; z++) {
- // _chaptersJson.tool[i][z] = [];
- _chaptersJson.tool[i].array[z] = { array: [], name: el[z].task };
- _chaptersJson.chapter[i][z] = [];
- _chaptersJson.work[i].chapter[z] = { name: el[z].task, task: [] };
- _chaptersJson.work[i].is = false;
- let tools = el[z].toolChoose;
- for (var k = 0; k < tools.length; k++) {
- _chaptersJson.work[i].chapter[z].task[k] = {
- tool: tools[k].tool[0],
- works: [],
- likeCount: 0,
- commentCount: 0,
- score: 0,
- isScore: 0,
- };
- for (var j = 0; j < _works.length; j++) {
- if (
- i == _works[j].stage &&
- z == _works[j].task &&
- k == _works[j].tool
- ) {
- _chaptersJson.work[i].chapter[z].task[k].works.push(
- _works[j]
- );
- if (_works[j].score) {
- _chaptersJson.work[i].chapter[z].task[k].score +=
- JSON.parse(_works[j].score).wScore;
- _chaptersJson.work[i].chapter[z].task[k].isScore++;
- }
- }
- }
- for (var j = 0; j < _comment.length; j++) {
- if (
- i == _comment[j].stage &&
- z == _comment[j].task &&
- k == _comment[j].tool
- ) {
- if (_comment[j].cType == 1) {
- _chaptersJson.work[i].chapter[z].task[k].likeCount++;
- }
- if (_comment[j].cType == 2) {
- _chaptersJson.work[i].chapter[z].task[k].commentCount++;
- }
- }
- }
- // if (_chaptersJson.chapter[i][z].indexOf(tools[k].tool[0]) == -1) {
- // _chaptersJson.tool[i][z].push(tools[k].tool[0])
- // }
- _chaptersJson.chapter[i][z][k] = { tool: tools[k].tool[0] };
- // _chaptersJson.tool[i][z][k] = { tool: tools[k].tool[0] };
- _chaptersJson.tool[i].array[z].array[k] = {
- tool: tools[k].tool[0],
- };
- }
- }
- }
- _chaptersJson.state.learing =
- _chaptersJson.state.stage - _chaptersJson.state.finish;
- this.chaptersJson = _chaptersJson;
- // debugger
- })
- .catch((err) => {
- loading.close();
- console.error(err);
- });
- },
- getUser() {
- let params = { uid: this.userid };
- this.ajax
- .get(this.$store.state.api + "getUser", params)
- .then((res) => {
- this.userinfo = res.data[0][0];
- })
- .catch((err) => {
- console.error(err);
- });
- },
- // getSName() {
- // let params = {
- // uid: JSON.stringify(this.courseDetail.course_student),
- // };
- // this.ajax
- // .get(this.$store.state.api + "selectSName", params)
- // .then((res) => {
- // this.aStudentName = res.data[0];
- // })
- // .catch((err) => {
- // console.error(err);
- // });
- // },
- },
- created() {
- this.getCourseDetail();
- this.getUser();
- document.scrollingElement.scrollTop = 0;
- // this.getSName();
- },
- };
- </script>
- <style scoped>
- @media screen and (max-width: 1024px) {
- .Tname {
- width: 500px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- }
- .body_student {
- margin: 10px auto;
- width: 98%;
- height: 100%;
- }
- .student_head {
- width: 100%;
- background: #fff;
- height: 30%;
- position: relative;
- }
- .wheel {
- width: 250px;
- max-height: 146px;
- display: flex;
- align-items: center;
- }
- .man {
- width: 16px;
- height: 16px;
- }
- .wheel > img,
- .man > img {
- width: 100%;
- height: 100%;
- }
- .box_course {
- display: flex;
- padding: 25px 0 20px 60px;
- }
- .right_box {
- display: flex;
- flex-direction: column;
- margin-left: 30px;
- align-items: flex-start;
- width: calc(100% - 350px);
- }
- .right_box_title {
- font-size: 23px;
- max-width: calc(100% - 190px);
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .people {
- display: flex;
- margin-top: 20px;
- }
- .person {
- margin-left: 10px;
- /* line-height: 18px; */
- }
- .now_study {
- width: 150px;
- height: 35px;
- color: #fff;
- background: #4a9eed;
- text-align: center;
- line-height: 35px;
- border-radius: 5px;
- font-size: 13px;
- cursor: pointer;
- margin-top: 30px;
- }
- .choose_who {
- display: flex;
- margin: 15px 0 0 25px;
- }
- .who_choose {
- height: 28px;
- cursor: pointer;
- }
- .choose_who > div:nth-child(2) {
- margin-left: 35px;
- }
- .choose {
- border-bottom: 5px solid #4a9eed;
- color: #4a9eed;
- }
- .student_body {
- display: flex;
- }
- .student_body,
- .right {
- width: 100%;
- margin: 10px auto;
- min-height: 688px;
- }
- .nav {
- margin: auto 25px;
- width: 80%;
- padding-top: 5px;
- text-indent: 25px;
- }
- .pic {
- width: 100%;
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- height: 100%;
- justify-content: space-evenly;
- }
- .Img {
- /*width: 30%; */
- width: 300px;
- margin: 20px 50px;
- margin: 20px 10px;
- border: 1px solid #dbdbdb;
- border-radius: 5px;
- overflow: hidden;
- }
- .Img > img {
- width: 100%;
- height: 100%;
- }
- .student_body_one,
- .right_one {
- width: 100%;
- margin: 0 auto;
- background: #fff;
- margin-top: 10px;
- min-height: 688px;
- }
- .student {
- width: 85%;
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- justify-content: flex-start;
- margin: auto 10px;
- }
- .student > div {
- width: 12%;
- height: 35px;
- background: #e3759a;
- text-align: center;
- border: 1px solid #e3759a;
- border-radius: 5px;
- color: #fff;
- line-height: 35px;
- margin: 10px;
- }
- .dialog_change >>> .el-dialog {
- border-radius: 5px;
- }
- .dialog_change >>> .el-dialog__header {
- background: #303030;
- height: 36px;
- line-height: 36px;
- padding-left: 10px;
- padding: 0px 10px 0px;
- }
- .dialog_change >>> .el-dialog__headerbtn {
- top: 10px !important;
- right: 10px !important;
- }
- .dialog_change >>> .el-dialog__title {
- color: #fff;
- font-size: 14px;
- line-height: 5px;
- }
- .dialog_change >>> .el-dialog__body {
- background: #f5f5f5;
- }
- .blue_box {
- align-items: center;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .blue_box,
- .blue_box_one {
- width: 30%;
- height: 100px;
- text-align: center;
- color: #fff;
- background-image: linear-gradient(90deg, #477cd7, #65b9fc);
- border-radius: 15px;
- margin: 15px 0 15px 15px;
- cursor: pointer;
- }
- .blue_box_one {
- width: 200px;
- height: 200px;
- background-image: linear-gradient(90deg, #477cd7, #65b9fc);
- display: flex;
- flex-direction: column;
- flex-wrap: nowrap;
- align-items: center;
- justify-content: center;
- }
- .blue_box_one > div {
- margin: 5px 0;
- }
- .blue_box_one > div:nth-child(1) {
- font-size: 20px;
- font-weight: bold;
- }
- .blue_box > div:nth-child(2) {
- margin-top: 10px;
- }
- .blue_box_one > div:nth-child(2) {
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- word-break: break-all;
- width: 100%;
- text-align: center;
- max-width: calc(100% - 85px);
- margin: 0 auto;
- }
- .return {
- background: #205cc6;
- width: 70px;
- height: 30px;
- color: #fff;
- text-align: center;
- line-height: 32px;
- margin-right: 20px;
- cursor: pointer;
- border-radius: 5px;
- position: absolute;
- right: 0;
- top: 24px;
- font-size: 14px;
- }
- .return > img {
- width: 100%;
- height: 100%;
- }
- .cType {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- margin-top: 20px;
- }
- .cType > div > span {
- font-size: 18px;
- }
- .type_children + .type_children {
- margin-left: 10px;
- }
- .all_choose {
- margin-right: 10px;
- max-width: 250px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .rightT {
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- align-items: center;
- width: calc(100% - 20px);
- }
- .jd {
- background: #4a9eed;
- margin-left: 15px;
- border-radius: 10px;
- color: #fff;
- width: 70px;
- height: 25px;
- text-align: center;
- line-height: 25px;
- }
- .sLeft {
- width: 14%;
- margin-right: 10px;
- background: rgb(255, 255, 255);
- padding: 20px 15px 0 15px;
- box-sizing: border-box;
- border-radius: 10px;
- }
- .courseT {
- border-left: 3px solid #2e66c9;
- padding-left: 5px;
- color: #2e66c9;
- font-weight: bold;
- }
- .courseTd {
- padding-top: 15px;
- height: 700px;
- overflow: auto;
- word-break: break-word;
- }
- .courseTd::-webkit-scrollbar {
- /*滚动条整体样式*/
- width: 6px;
- /*高宽分别对应横竖滚动条的尺寸*/
- height: 6px;
- }
- /*定义滚动条轨道 内阴影+圆角*/
- .courseTd::-webkit-scrollbar {
- border-radius: 10px;
- background-color: #eee;
- }
- /*定义滑块 内阴影+圆角*/
- .courseTd::-webkit-scrollbar-thumb {
- border-radius: 10px;
- -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
- background-color: rgba(0, 0, 0, 0.1);
- }
- .rightTd,
- .noBRight {
- width: calc(100% - 14% - 10px);
- background: #fff;
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- align-content: flex-start;
- align-items: center;
- justify-content: flex-start;
- }
- .noBRight {
- width: 100%;
- }
- .Tname {
- margin-left: 40px;
- word-break: break-all;
- }
- .detail {
- width: 100%;
- padding: 15px;
- box-sizing: border-box;
- }
- .statebox {
- display: flex;
- align-items: center;
- box-sizing: border-box;
- margin-left: 30px;
- }
- .statebox div {
- padding: 10px 20px;
- border-radius: 5px;
- background: #fff;
- display: flex;
- align-items: center;
- }
- .statebox div + div {
- margin-left: 20px;
- }
- .statebox div span {
- font-size: 16px;
- display: flex;
- align-items: center;
- }
- .statebox div span + span {
- margin-left: 10px;
- color: #1463eb;
- }
- .p_tool_box {
- display: flex;
- flex-wrap: wrap;
- background: rgb(217, 227, 239);
- /* color: #fff; */
- padding: 0 15px 10px;
- align-items: center;
- justify-content: space-evenly;
- border-radius: 5px;
- height: 200px;
- overflow: auto;
- }
- .p_tool {
- display: flex;
- margin-top: 10px;
- }
- .p_tool > div {
- display: flex;
- flex-direction: column;
- align-items: center;
- min-width: 60px;
- }
- .p_tool > div img {
- width: 50px;
- height: 50px;
- }
- .p_tool > div > div {
- margin-top: 5px;
- font-size: 12px;
- }
- .p_tool_box2 {
- padding: 10px 15px;
- }
- .p_tool2 {
- margin-right: 20px;
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- /* margin-bottom: 10px; */
- }
- .p_tool2 > div:nth-child(1) {
- margin-bottom: 10px;
- }
- .toolBigBox {
- display: flex;
- flex-direction: column;
- }
- .toolSta {
- display: flex;
- margin: 20px 0 0;
- }
- .toolSta > div {
- display: flex;
- }
- .toolSta > div + div {
- margin-left: 50px;
- }
- .toolSta > div > div:nth-child(1) {
- margin: 10px 10px 0 0;
- }
- .blueBtn {
- background: rgb(79, 140, 223);
- color: #fff;
- display: flex;
- padding: 10px 15px;
- /* min-width: 150px; */
- min-width: 165px;
- font-size: 16px;
- align-items: center;
- border-radius: 5px;
- }
- .toolSta > div > div:nth-child(2) > div + div {
- margin-top: 10px;
- }
- .toolSta > div > div:nth-child(2) > div > div + div {
- margin: 0 20px;
- }
- .p_tool2 .toolbox {
- display: flex;
- align-items: center;
- margin-top: 10px;
- }
- .p_tool2 .toolbox > div {
- font-size: 16px;
- font-weight: bold;
- }
- .checkBox {
- display: flex;
- padding: 20px 0 0 20px;
- box-sizing: border-box;
- width: 100%;
- }
- .checkBox span {
- padding: 0 10px 5px;
- cursor: pointer;
- font-size: 18px;
- }
- .checkBox span + span {
- margin-left: 20px;
- }
- .checkBox .active {
- border-bottom: 2px solid rgb(75, 151, 229);
- cursor: pointer;
- }
- .detail_box {
- background-color: rgb(231, 240, 247);
- padding: 15px 20px;
- box-sizing: border-box;
- width: 100%;
- }
- .detail_box + .detail_box {
- margin-top: 20px;
- }
- .detail_box .title {
- display: flex;
- align-items: center;
- }
- .detail_box .title > span:nth-child(1) {
- font-size: 20px;
- display: flex;
- align-items: center;
- }
- .detail_box .box {
- margin-top: 20px;
- background-color: #fff;
- padding: 15px 20px;
- border-radius: 5px;
- /* width: 100%; */
- box-sizing: border-box;
- overflow: auto;
- }
- .progress {
- display: -webkit-box;
- display: -ms-flexbox;
- width: 100%;
- overflow: auto;
- padding: 15px 0;
- }
- .chapter {
- margin-right: 30px;
- }
- .chapter + .chapter {
- padding-left: 10px;
- border-left: 1px solid rgb(220, 220, 220);
- }
- .chapter .stage {
- width: 100%;
- color: #fff;
- background: linear-gradient(90deg, #477cd7, #65b9fc);
- border-radius: 5px;
- height: 50px;
- line-height: 50px;
- font-size: 18px;
- text-align: center;
- }
- .chapter .task {
- display: flex;
- width: 100%;
- }
- .chapter .task .taskBox {
- min-width: 110px;
- max-width: 180px;
- height: 100%;
- }
- .chapter .task .taskBox + .taskBox {
- margin-left: 10px;
- }
- .chapter .task .taskBox .taskName {
- text-align: center;
- margin: 10px;
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- align-items: center;
- }
- .toolIcon::before {
- content: "";
- width: 26px;
- height: 26px;
- display: inline-block;
- background-image: url(../assets/icon/toolion.png);
- background-size: 100% 100%;
- }
- .toolIcon::before {
- content: "";
- width: 26px;
- height: 26px;
- display: inline-block;
- background-image: url(../assets/icon/toolion.png);
- background-size: 100% 100%;
- }
- .taskIcon::before {
- content: "";
- width: 26px;
- height: 26px;
- display: inline-block;
- background-image: url(../assets/icon/task.png);
- background-size: 100% 100%;
- }
- .finishIcon::before {
- content: "";
- width: 26px;
- height: 26px;
- display: inline-block;
- background-image: url(../assets/icon/finish.png);
- background-size: 100% 100%;
- }
- .learningIcon::before {
- content: "";
- width: 22px;
- height: 22px;
- display: inline-block;
- background-image: url(../assets/icon/learning.png);
- background-size: 100% 100%;
- }
- .frequencyIcon::before {
- content: "";
- width: 26px;
- height: 26px;
- display: inline-block;
- background-image: url(../assets/icon/frequency.png);
- background-size: 100% 100%;
- }
- .timeIcon::before {
- content: "";
- width: 26px;
- height: 26px;
- display: inline-block;
- background-image: url(../assets/icon/time.png);
- background-size: 100% 100%;
- }
- .chapter_time_box {
- border-left: 5px solid #f0f0f0;
- padding: 0 30px;
- box-sizing: border-box;
- margin-top: 35px;
- }
- .c_box {
- padding-top: 40px;
- position: relative;
- margin-top: 45px;
- }
- .c_box .stage_box {
- display: flex;
- align-items: center;
- position: absolute;
- top: -20px;
- left: -45px;
- }
- .c_box .stage_box .yuan {
- width: 25px;
- height: 25px;
- background: rgb(244, 244, 244);
- border-radius: 25px;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-right: 10px;
- }
- .c_box .stage_box .yuan::before {
- content: "";
- width: 15px;
- height: 15px;
- background: rgb(59, 149, 238);
- border-radius: 25px;
- }
- .c_box .stage_box .stage {
- background: linear-gradient(90deg, #477cd7, #65b9fc);
- border-radius: 5px;
- height: 50px;
- line-height: 50px;
- font-size: 18px;
- color: #fff;
- width: fit-content;
- padding: 0 20px;
- }
- .s_up {
- cursor: pointer;
- transition: all 0.5s;
- }
- .s_up img {
- width: 35px;
- }
- .s_up2 {
- transform: rotate(90deg);
- }
- .lineBox {
- width: 5px;
- height: 20px;
- background-image: linear-gradient(180deg, #3c65ba, #a1c6ec);
- margin-right: 5px;
- }
- .disCss {
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- align-items: center;
- }
- .disCss > div {
- margin: 10px 10px 0 0;
- }
- .titleCss {
- text-align: center;
- max-width: 100px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-word;
- margin-left: 10px;
- }
- .navIndex {
- border-bottom: 1px solid #d7d7d7;
- padding-bottom: 5px;
- background: #96d1ff;
- width: 55px;
- min-width: 55px;
- border-radius: 5px;
- color: #fff;
- text-align: center;
- height: 20px;
- line-height: 26px;
- font-size: 14px;
- }
- </style>
|