worksDetail.vue 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331
  1. <template>
  2. <div class="pb_content" style="background: unset">
  3. <div
  4. class="pb_content_body"
  5. style="
  6. background: #fff;
  7. padding: 0px 25px;
  8. box-sizing: border-box;
  9. border-radius: 5px;
  10. "
  11. >
  12. <div class="pb_head">
  13. <span>评价管理</span>
  14. <!-- <span>备注:教师可以根据课程、班级条件筛选学生并查看该学生信息</span> -->
  15. </div>
  16. <div class="student_head">
  17. <div style="padding: 10px 0px 20px 0">
  18. <el-breadcrumb separator-class="el-icon-arrow-right">
  19. <el-breadcrumb-item :to="{ path: '/works?userid=' + userid + '&oid=' + oid }">评价管理</el-breadcrumb-item>
  20. <el-breadcrumb-item>作业管理</el-breadcrumb-item>
  21. </el-breadcrumb>
  22. </div>
  23. <div class="student_search">
  24. <div>项目筛选</div>
  25. <!-- <el-select
  26. v-model="subject"
  27. placeholder="请选择课程"
  28. @change="searchWork"
  29. >
  30. <el-option label="所有课程" value=""></el-option>
  31. <el-option
  32. v-for="(item, index) in subjectJuri"
  33. :key="index"
  34. :label="item.name"
  35. :value="item.id"
  36. ></el-option>
  37. </el-select>-->
  38. <el-select v-model="sClass" placeholder="请选择班级" @change="searchWork">
  39. <el-option label="所有班级" value></el-option>
  40. <el-option
  41. v-for="(item, index) in grade"
  42. :key="index"
  43. :label="item.name"
  44. :value="item.id"
  45. ></el-option>
  46. </el-select>
  47. </div>
  48. </div>
  49. </div>
  50. <div class="pb_content_body">
  51. <div class="student_table">
  52. <el-table
  53. ref="table"
  54. :data="tableData"
  55. border
  56. :height="tableHeight"
  57. :fit="true"
  58. v-loading="isLoading"
  59. style="width: 100%"
  60. :header-cell-style="{ background: '#f1f1f1' }"
  61. :row-class-name="tableRowClassName"
  62. stripe
  63. >
  64. <el-table-column prop="sName" label="姓名" min-width="15" align="center"></el-table-column>
  65. <el-table-column prop="class" label="班级" min-width="20" align="center"></el-table-column>
  66. <el-table-column prop="course" label="项目" min-width="20" align="center"></el-table-column>
  67. <el-table-column prop="time" label="时间" min-width="15" align="center"></el-table-column>
  68. <el-table-column label="操作" min-width="30">
  69. <template slot-scope="scope">
  70. <el-button
  71. type="primary"
  72. size="small"
  73. @click="lookWork(scope.row.id, scope.row.userid)"
  74. >查看作业</el-button>
  75. <el-button type="primary" size="small" @click="lookData(scope.row.userid)">生成报告</el-button>
  76. <!-- <el-button
  77. class="de_button"
  78. type="primary"
  79. size="small"
  80. @click="deleteWork(scope.row.id)"
  81. >删除</el-button>-->
  82. </template>
  83. </el-table-column>
  84. </el-table>
  85. <el-dialog
  86. :visible.sync="dialogVisible3"
  87. :append-to-body="true"
  88. :before-close="handleClose"
  89. class="add_work"
  90. >
  91. <div class="zyBoxC" v-for="(item,index) in worksDetail" :key="index">
  92. <div class="courseTitle">
  93. {{
  94. '第'+(item.stage+1)+'阶段'+item.chapterTitle
  95. }}
  96. </div>
  97. <div class="zyBox">
  98. <div class="left">
  99. <div class="bigImg" v-if="item.tType == 0">
  100. <video-player
  101. class="video-player vjs-custom-skin"
  102. ref="videoPlayer"
  103. :playsinline="true"
  104. :options="item.playerO"
  105. @play="onPlayerPlay($event)"
  106. style="width: 100%; height: 100%"
  107. ></video-player>
  108. </div>
  109. <div class="bigImg" v-else>
  110. <img
  111. :src="
  112. item.thumbnail.length > 0 ? item.thumbnail[1][0].url
  113. : ''
  114. "
  115. alt
  116. />
  117. </div>
  118. <div class="thumbnail">
  119. <div
  120. style="background: #a3d4ff"
  121. v-if="item.upVedio.length"
  122. :class="item.tType == 0 ? 'isClick' : ''"
  123. >
  124. <img src="../../assets/icon/spIcon.png" alt @click="item.tType = 0" />
  125. </div>
  126. <div :class="item.tType == 1 ? 'isClick' : ''">
  127. <img
  128. :src="
  129. item.thumbnail.length > 0 ? item.thumbnail[1][0].url
  130. : ''
  131. "
  132. alt
  133. @click="item.tType = 1"
  134. />
  135. </div>
  136. </div>
  137. <div style="margin: 5px 10px">{{ sInfo.course }}</div>
  138. <div class="student_Answer">
  139. <div class="toux">
  140. <img :src="sInfo.tx != null ? sInfo.tx : tx" alt />
  141. </div>
  142. <div class="nav">
  143. <div class="studentName">{{ sInfo.sName }}</div>
  144. <div class="studentAnswer">
  145. {{
  146. item.content != ""
  147. ? item.content
  148. : "暂无内容"
  149. }}
  150. <!-- 雨荒深院菊,霜倒半池莲.唐杜甫《宿赞公房》 -->
  151. </div>
  152. </div>
  153. </div>
  154. </div>
  155. <div style="width: 290px;margin-right: 10px;">
  156. <div class="sd_score" style="box-sizing: border-box; width: 100%; box-shadow: none">
  157. <div class="score_box">
  158. <span>意识能力</span>
  159. <el-rate v-model="item.rate.ca"></el-rate>
  160. </div>
  161. <div class="score_box">
  162. <span>科学探究能力</span>
  163. <el-rate v-model="item.rate.sia"></el-rate>
  164. </div>
  165. <div class="score_box">
  166. <span>实践创新能力</span>
  167. <el-rate v-model="item.rate.eta"></el-rate>
  168. </div>
  169. <div class="score_box">
  170. <span>学习反思能力</span>
  171. <el-rate v-model="item.rate.pia"></el-rate>
  172. </div>
  173. <div class="score_box">
  174. <span>工程思维能力</span>
  175. <el-rate v-model="item.rate.lra"></el-rate>
  176. </div>
  177. </div>
  178. <div class="data_body">
  179. <div class="title">
  180. <span>量规评分</span>
  181. </div>
  182. <div style="width: 100%">
  183. <!-- <img src="../../assets/dataimage/1.png" style="width:90%" /> -->
  184. <div
  185. class="echart charts_canvas"
  186. style="width: 100%; height: 100%; margin: 0 0 0 1rem"
  187. ></div>
  188. </div>
  189. </div>
  190. </div>
  191. <div class="right">
  192. <div class="comment">
  193. <div class="comment_title">
  194. 评论
  195. <span>({{ commentCount }})</span>
  196. </div>
  197. <div class="other_Answer">暂无学生评论</div>
  198. <!-- <div class="other_Answer">
  199. <div class="toux">
  200. <img src="../../assets/portal.png" alt="" />
  201. </div>
  202. <div class="nav">
  203. <div class="nameAndTime">
  204. <div class="otherName">{{ this.commentName }}</div>
  205. <div class="time">{{ this.commentTime }}</div>
  206. </div>
  207. <div class="otherAnswer">{{ this.commentAnswer }}</div>
  208. </div>
  209. </div>-->
  210. </div>
  211. <div
  212. class="lastTop"
  213. style="
  214. width: 100%;
  215. padding: 5px 0px 0px;
  216. box-sizing: border-box;
  217. height: 225px;
  218. margin-top: 10px;
  219. box-shadow: none;
  220. "
  221. >
  222. <div class="moreSay">更多评价</div>
  223. <div class="more_say_input">
  224. <el-input
  225. type="textarea"
  226. placeholder="还有要说的吗..."
  227. :rows="8"
  228. resize="none"
  229. v-model="item.rate.content"
  230. style="background: #fafafa"
  231. ></el-input>
  232. </div>
  233. </div>
  234. </div>
  235. <!-- <div class="rbButtom" @click="giveScore">评分</div> -->
  236. <div class="rbButtom" @click="updateWorks(item.id,item.rate,index)">评分</div>
  237. </div>
  238. </div>
  239. </el-dialog>
  240. <el-dialog
  241. :visible.sync="dialogVisible2"
  242. :append-to-body="true"
  243. width="700px"
  244. :before-close="handleClose"
  245. class="add_work talkScore"
  246. >
  247. <div slot="title" class="header-title">
  248. <!-- <div class="logoImg">
  249. <img src="../../assets/logo.png" alt="" />
  250. </div>-->
  251. <div class="title_add_student">"评分"</div>
  252. </div>
  253. <div class="firstTop">
  254. <div class="score_top">
  255. <div class="userTou">
  256. <img :src="sInfo.tx != null ? sInfo.tx : tx" alt />
  257. </div>
  258. <div class="score_user_name">{{ sInfo.sName }}</div>
  259. </div>
  260. <div class="course_top">
  261. <div>课程名称</div>
  262. <div>
  263. {{
  264. chapInfo[publicIndex] != null
  265. ? chapInfo[publicIndex].dyName
  266. : "暂无课程"
  267. }}
  268. </div>
  269. </div>
  270. </div>
  271. <div class="sd_score">
  272. <div class="score_box">
  273. <span>意识能力</span>
  274. <el-rate
  275. v-model="rateList.ca"
  276. :disabled="rateParams[5] != '' && rateParams[5] != undefined"
  277. ></el-rate>
  278. </div>
  279. <div class="score_box">
  280. <span>科学探究能力</span>
  281. <el-rate
  282. v-model="rateList.sia"
  283. :disabled="rateParams[5] != '' && rateParams[5] != undefined"
  284. ></el-rate>
  285. </div>
  286. <div class="score_box">
  287. <span>实践创新能力</span>
  288. <el-rate
  289. v-model="rateList.eta"
  290. :disabled="rateParams[5] != '' && rateParams[5] != undefined"
  291. ></el-rate>
  292. </div>
  293. <div class="score_box">
  294. <span>学习反思能力</span>
  295. <el-rate
  296. v-model="rateList.pia"
  297. :disabled="rateParams[5] != '' && rateParams[5] != undefined"
  298. ></el-rate>
  299. </div>
  300. <div class="score_box">
  301. <span>工程思维能力</span>
  302. <el-rate
  303. v-model="rateList.lra"
  304. :disabled="rateParams[5] != '' && rateParams[5] != undefined"
  305. ></el-rate>
  306. </div>
  307. </div>
  308. <div class="lastTop">
  309. <div class="moreSay">更多评价</div>
  310. <div class="more_say_input">
  311. <el-input
  312. type="textarea"
  313. placeholder="还有要说的吗..."
  314. :rows="3"
  315. resize="none"
  316. v-model="rateList.content"
  317. :readonly="rateParams[5] != '' && rateParams[5] != undefined"
  318. style="background: #fafafa"
  319. ></el-input>
  320. </div>
  321. </div>
  322. <div class="assess_right" @click="updateWorks" v-if="!uploadBoolean">提交</div>
  323. <div class="assess_right" @click="updateWorks" v-else>提交</div>
  324. </el-dialog>
  325. </div>
  326. <div class="student_page">
  327. <el-pagination
  328. background
  329. layout="prev, pager, next"
  330. :page-size="10"
  331. :total="total"
  332. v-if="page"
  333. @current-change="handleCurrentChange"
  334. ></el-pagination>
  335. </div>
  336. </div>
  337. <el-dialog :visible.sync="pictureDialog" size="tiny">
  338. <img width="100%" :src="dialogImageUrl" alt />
  339. </el-dialog>
  340. <el-dialog
  341. title="项目评分"
  342. :visible.sync="dataVisible"
  343. :append-to-body="true"
  344. width="1100px"
  345. :before-close="handleClose"
  346. class="dialog_diy"
  347. >
  348. <div>
  349. <div class="a_addBox">
  350. <StudentData :studentInfo="studentInfo"></StudentData>
  351. </div>
  352. </div>
  353. <span slot="footer" class="dialog-footer">
  354. <el-button @click="dataVisible = false">关 闭</el-button>
  355. </span>
  356. </el-dialog>
  357. </div>
  358. </template>
  359. <script>
  360. import StudentData from "./components/studentData";
  361. export default {
  362. components: {
  363. StudentData,
  364. },
  365. data() {
  366. return {
  367. tableHeight: "500px",
  368. isLoading: false,
  369. id: this.$route.query.cid,
  370. userid: this.$route.query.userid,
  371. oid: this.$route.query.oid,
  372. formLabelWidth: "100px",
  373. dialogImageUrl: "",
  374. pictureDialog: false,
  375. dialogVisible: false,
  376. dialogVisible1: false,
  377. dialogVisible2: false,
  378. dialogVisible3: false,
  379. dataVisible: false,
  380. studentInfo: {},
  381. courseByUser: "诗词中的植物",
  382. userName: "林点",
  383. answerName: "宿赞公房",
  384. studentAnswer: "雨荒深院菊,霜倒半池莲.唐杜甫《宿赞公房》",
  385. commentCount: 0,
  386. publicIndex: 0,
  387. playerOptions: {
  388. playbackRates: [0.7, 1.0, 1.5, 2.0], //播放速度
  389. autoplay: false, //如果true,浏览器准备好时开始回放。
  390. muted: false, // 默认情况下将会消除任何音频。
  391. loop: false, // 导致视频一结束就重新开始。
  392. preload: "auto", // 建议浏览器在<video>加载元素后是否应该开始下载视频数据。auto浏览器选择最佳行为,立即开始加载视频(如果浏览器支持)
  393. language: "zh-CN",
  394. aspectRatio: "16:9", // 将播放器置于流畅模式,并在计算播放器的动态大小时使用该值。值应该代表一个比例 - 用冒号分隔的两个数字(例如"16:9"或"4:3")
  395. fluid: true, // 当true时,Video.js player将拥有流体大小。换句话说,它将按比例缩放以适应其容器。
  396. sources: [
  397. {
  398. type: "video/mp4", //这里的种类支持很多种:基本视频格式、直播、流媒体等,具体可以参看git网址项目 || "video/ogg"|| "video/webm"
  399. src: "", //url地址require("../../assets/media/aaa.mp4")
  400. },
  401. ],
  402. // poster: require("../../assets/tu31.png"), //你的封面地址
  403. // poster: dataRes.imgUrl, //你的封面地址
  404. notSupportedMessage: "此视频暂无法播放,请稍后再试", //允许覆盖Video.js无法播放媒体源时显示的默认信息。
  405. controlBar: {
  406. timeDivider: true, //当前时间和持续时间的分隔符
  407. durationDisplay: true, //显示持续时间
  408. remainingTimeDisplay: false, //是否显示剩余时间功能
  409. fullscreenToggle: true, //全屏按钮
  410. },
  411. },
  412. playerO: {},
  413. commentName: "谭子松",
  414. commentTime: "2021/2/5",
  415. commentAnswer:
  416. "作为家长我很高兴看到孩子的进步,希望这个进步只是一个开始,在新学期能够继续延续,这样才能不负老师的期望",
  417. tableData: [],
  418. uploadBoolean: false,
  419. studentMessage: [],
  420. subject: "",
  421. sClass: "",
  422. subjectJuri: [],
  423. projectJuri: [],
  424. grade: [],
  425. mr: require("../../assets/icon/wheel.png"),
  426. tx: require("../../assets/portal.png"),
  427. projectchoose: "",
  428. scopeId: "",
  429. thumbnail: [],
  430. rateList: {
  431. ca: 0,
  432. sia: 0,
  433. eta: 0,
  434. pia: 0,
  435. lra: 0,
  436. content: "",
  437. },
  438. rateParams: [],
  439. page: 1,
  440. total: 0,
  441. worksDetail: [],
  442. suserId: "",
  443. sInfo: {},
  444. chapInfo: [],
  445. vedio: [],
  446. file: [],
  447. tType: 0,
  448. chartObj: [],
  449. ooption: [
  450. { value: 0, name: "意识能力" },
  451. { value: 0, name: "科学探究能力" },
  452. { value: 0, name: "实践创新能力" },
  453. { value: 0, name: "学习反思能力" },
  454. { value: 0, name: "工程思维能力" },
  455. ],
  456. option: {
  457. tooltip: {
  458. trigger: "item",
  459. },
  460. series: [
  461. {
  462. name: "量规评分",
  463. type: "pie",
  464. radius: "70%",
  465. center: ["50%", "50%"],
  466. data: [
  467. { value: 0, name: "意识能力" },
  468. { value: 0, name: "科学探究能力" },
  469. { value: 0, name: "实践创新能力" },
  470. { value: 0, name: "学习房媳能力" },
  471. { value: 0, name: "工程思维能力" },
  472. ],
  473. itemStyle: {
  474. emphasis: {
  475. shadowBlur: 10,
  476. shadowOffsetX: 0,
  477. shadowColor: "rgba(0, 0, 0, 0.5)",
  478. },
  479. normal: {
  480. label: {
  481. show: true,
  482. formatter: "{d}%",
  483. inside: true,
  484. position: "inner",
  485. },
  486. labelLine: { show: false },
  487. },
  488. },
  489. },
  490. ],
  491. },
  492. };
  493. },
  494. mounted() {
  495. this.$nextTick(function () {
  496. this.tableHeight =
  497. window.innerHeight - this.$refs.table.$el.offsetTop - 200;
  498. if (this.tableHeight <= 530) {
  499. this.tableHeight = 530;
  500. }
  501. // 监听窗口大小变化
  502. let self = this;
  503. window.onresize = function () {
  504. self.tableHeight =
  505. window.innerHeight - self.$refs.table.$el.offsetTop - 200;
  506. if (self.tableHeight <= 530) {
  507. self.tableHeight = 530;
  508. }
  509. };
  510. });
  511. },
  512. methods: {
  513. lookData(uid) {
  514. let params = {
  515. uid: uid,
  516. cid: this.id,
  517. };
  518. this.ajax
  519. .get(this.$store.state.api + "selectWorksDetail", params)
  520. .then((res) => {
  521. this.studentInfo = res.data[0][0];
  522. this.dataVisible = true;
  523. })
  524. .catch((err) => {
  525. console.error(err);
  526. });
  527. },
  528. tableRowClassName({ row, rowIndex }) {
  529. if ((rowIndex + 1) % 2 === 0) {
  530. return "even_row";
  531. } else {
  532. return "";
  533. }
  534. },
  535. handleClose(done) {
  536. done();
  537. },
  538. tableRowClassName({ row, rowIndex }) {
  539. if ((rowIndex + 1) % 2 === 0) {
  540. return "even_row";
  541. } else {
  542. return "";
  543. }
  544. },
  545. handleCurrentChange(val) {
  546. this.page = val;
  547. this.getWorks();
  548. },
  549. lookWork(id, uid) {
  550. this.scopeId = id;
  551. let params = {
  552. uid: uid,
  553. cid: this.id,
  554. };
  555. this.ajax
  556. .get(this.$store.state.api + "selectWorksDetail", params)
  557. .then((res) => {
  558. this.sInfo = res.data[0][0];
  559. this.chapInfo = JSON.parse(res.data[0][0].chapters);
  560. var worksDetail = res.data[1];
  561. this.chapInfo.filter((value, index, array) => {
  562. for (var i = 0; i < worksDetail.length; i++) {
  563. if (index == worksDetail[i].stage) {
  564. var c = JSON.parse(worksDetail[i].content)[0];
  565. var d =
  566. worksDetail[i].rate != null && worksDetail[i].rate != ""
  567. ? JSON.parse(worksDetail[i].rate)
  568. : { ca: 0, sia: 0, eta: 0, pia: 0, lra: 0, content: "" };
  569. var e =
  570. worksDetail[i].rate != null && worksDetail[i].rate != ""
  571. ? 0
  572. : 1;
  573. value.rateWrong = e;
  574. value.content = c.content;
  575. value.rate = d;
  576. value.cover = c.cover;
  577. value.upVedio = c.upVedio;
  578. this.thumbnail.push(value.upVedio);
  579. this.thumbnail.push(value.cover);
  580. break;
  581. }
  582. }
  583. });
  584. worksDetail.filter((value, index, array) => {
  585. var c = JSON.parse(value.content)[0];
  586. var d =
  587. value.rate != null && value.rate != ""
  588. ? JSON.parse(value.rate)
  589. : { ca: 0, sia: 0, eta: 0, pia: 0, lra: 0, content: "" };
  590. var e = value.rate != null && value.rate != "" ? 0 : 1;
  591. value.rateWrong = e;
  592. value.chapterTitle = this.chapInfo[value.stage].dyName;
  593. value.content = c.content;
  594. value.rate = d;
  595. value.cover = c.cover;
  596. value.upVedio = c.upVedio;
  597. value.thumbnail = [c.upVedio, c.cover];
  598. if (c.upVedio.length) {
  599. value.tType = 0;
  600. } else {
  601. value.tType = 1;
  602. }
  603. value.playerO = JSON.parse(JSON.stringify(this.playerOptions));
  604. value.playerO.sources[0].src =
  605. c.upVedio.length > 0
  606. ? c.upVedio[0].url
  607. : require("../../assets/icon/kc1.png");
  608. });
  609. this.worksDetail = worksDetail;
  610. this.courseDetail = res.data[0][0];
  611. this.playerOptions.sources[0].src =
  612. this.chapInfo[this.publicIndex].upVedio.length > 0
  613. ? this.chapInfo[this.publicIndex].upVedio[0].url
  614. : require("../../assets/icon/kc1.png");
  615. console.log(this.playerOptions.sources[0].src);
  616. this.playerO = this.playerOptions;
  617. // this.dialogVisible = true;
  618. this.rateList = this.chapInfo[this.publicIndex].rate;
  619. this.dialogVisible3 = true;
  620. // this.ooption[0].value = this.rateList.ca;
  621. // this.ooption[1].value = this.rateList.sia;
  622. // this.ooption[2].value = this.rateList.eta;
  623. // this.ooption[3].value = this.rateList.pia;
  624. // this.ooption[4].value = this.rateList.lra;
  625. // if (this.chartObj) {
  626. // this.option.series[0].data = this.ooption;
  627. // this.chartObj.setOption(this.option);
  628. // } else {
  629. // this.setChart(this.ooption);
  630. // }
  631. setTimeout(() => {
  632. worksDetail.filter((value, index, array) => {
  633. var _ooption = JSON.parse(JSON.stringify(this.ooption));
  634. var _option = JSON.parse(JSON.stringify(this.option));
  635. _ooption[0].value = value.rate.ca;
  636. _ooption[1].value = value.rate.sia;
  637. _ooption[2].value = value.rate.eta;
  638. _ooption[3].value = value.rate.pia;
  639. _ooption[4].value = value.rate.lra;
  640. if (this.chartObj[index]) {
  641. _option.series[0].data = _ooption;
  642. this.chartObj[index].setOption(_option);
  643. } else {
  644. _option.series[0].data = _ooption;
  645. this.setChart(index, _option);
  646. }
  647. });
  648. }, 0);
  649. })
  650. .catch((err) => {
  651. console.error(err);
  652. });
  653. },
  654. setChart(index, option) {
  655. let _this = this;
  656. // 雷达图显示的标签
  657. let newPromise = new Promise((resolve) => {
  658. resolve();
  659. });
  660. //然后异步执行echarts的初始化函数
  661. newPromise.then(() => {
  662. console.log(_this.option);
  663. const chartObj = _this.$echarts.init(
  664. //劳动课程
  665. // _this.$el.querySelector("#charts_canvas")
  666. document.getElementsByClassName("charts_canvas")[index]
  667. );
  668. // 初始化雷达图
  669. _this.chartObj[index] = chartObj;
  670. _this.chartObj[index].setOption(option);
  671. });
  672. },
  673. // doingAssess(index) {
  674. // this.publicIndex = index;
  675. // this.playerOptions.sources[0].src =
  676. // this.chapInfo[this.publicIndex].upVedio.length > 0
  677. // ? this.chapInfo[this.publicIndex].upVedio[0].url
  678. // : require("../../assets/icon/kc1.png");
  679. // console.log(this.playerOptions.sources[0].src);
  680. // this.playerO = this.playerOptions;
  681. // this.dialogVisible1 = true;
  682. // },
  683. giveScore() {
  684. this.rateList = this.chapInfo[this.publicIndex].rate;
  685. this.dialogVisible2 = true;
  686. },
  687. //获取班级列表
  688. getClass() {
  689. this.isLoading = true;
  690. let params = {
  691. oid: this.oid,
  692. };
  693. this.ajax
  694. .get(this.$store.state.api + "selectClassBySchool", params)
  695. .then((res) => {
  696. this.isLoading = false;
  697. this.grade = res.data[0];
  698. })
  699. .catch((err) => {
  700. this.isLoading = false;
  701. console.error(err);
  702. });
  703. },
  704. //获取分组分类
  705. getGroup() {
  706. let params = {};
  707. this.ajax
  708. .get(this.$store.state.api + "getGroup", params)
  709. .then((res) => {
  710. this.subjectJuri = res.data[0];
  711. this.projectJuri = res.data[0];
  712. })
  713. .catch((err) => {
  714. console.error(err);
  715. });
  716. },
  717. searchWork() {
  718. this.page = 1;
  719. this.getWorks();
  720. },
  721. //获取作业
  722. getWorks() {
  723. this.isLoading = true;
  724. var mr = this.mr;
  725. let params = {
  726. cn: this.sClass,
  727. cid: this.id,
  728. page: this.page,
  729. };
  730. this.ajax
  731. .get(this.$store.state.api + "getWorks", params)
  732. .then((res) => {
  733. this.isLoading = false;
  734. this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
  735. this.tableData = res.data[0];
  736. })
  737. .catch((err) => {
  738. this.isLoading = false;
  739. console.error(err);
  740. });
  741. },
  742. getCourseDetail() {
  743. const loading = this.$loading.service({
  744. background: "rgba(255, 255, 255, 0.7)",
  745. target: document.querySelector(".student_table"),
  746. });
  747. let params = {
  748. courseId: this.id,
  749. };
  750. this.ajax
  751. .get(this.$store.state.api + "selectCourseDetail", params)
  752. .then((res) => {
  753. loading.close();
  754. this.chapInfo = JSON.parse(res.data[0][0].chapters);
  755. // element.imgUrl = JSON.parse(element.chapters).poster;
  756. })
  757. .catch((err) => {
  758. loading.close();
  759. console.error(err);
  760. });
  761. },
  762. handlePictureCardPreview(url) {
  763. this.dialogImageUrl = url;
  764. this.pictureDialog = true;
  765. },
  766. updateWorks(id, rate, index) {
  767. let params = {
  768. rate: rate,
  769. tuid: this.userid,
  770. id: id,
  771. };
  772. this.ajax
  773. .get(this.$store.state.api + "updateWorks", params)
  774. .then((res) => {
  775. this.$message({
  776. message: "评价成功",
  777. type: "success",
  778. });
  779. var _ooption = JSON.parse(JSON.stringify(this.ooption));
  780. var _option = JSON.parse(JSON.stringify(this.option));
  781. _ooption[0].value = rate.ca;
  782. _ooption[1].value = rate.sia;
  783. _ooption[2].value = rate.eta;
  784. _ooption[3].value = rate.pia;
  785. _ooption[4].value = rate.lra;
  786. if (this.chartObj[index]) {
  787. _option.series[0].data = _ooption;
  788. this.chartObj[index].setOption(_option);
  789. } else {
  790. this.setChart(index, _ooption);
  791. }
  792. // this.uploadBoolean = false;
  793. // this.dialogVisible2 = false;
  794. })
  795. .catch((err) => {
  796. this.$message.error("评价失败");
  797. console.error(err);
  798. });
  799. },
  800. switchVideo(media, index) {
  801. this.playerO = {};
  802. this.playerOptions.poster = "";
  803. this.playerOptions.sources[0].src = media;
  804. this.playerO = this.playerOptions;
  805. },
  806. onPlayerPlay() {},
  807. },
  808. created() {
  809. this.page = 1;
  810. this.getClass();
  811. this.getGroup();
  812. this.getWorks();
  813. // this.getCourseDetail();
  814. },
  815. };
  816. </script>
  817. <style scoped>
  818. .pb_head > span:nth-child(2) {
  819. font-size: 16px;
  820. margin-left: 80px;
  821. color: #ab582f;
  822. }
  823. .pb_head {
  824. margin: 0 !important;
  825. width: 100% !important;
  826. }
  827. .student_page {
  828. margin-top: 10px;
  829. }
  830. .student_head {
  831. margin-top: 10px;
  832. padding-bottom: 15px;
  833. }
  834. .student_search {
  835. display: flex;
  836. }
  837. .student_search > div:nth-child(1) {
  838. line-height: 35px;
  839. font-size: 14px;
  840. }
  841. .student_search >>> .el-input__inner {
  842. width: 190px;
  843. height: 35px;
  844. margin-left: 10px;
  845. }
  846. .student_table >>> .el-table--border td {
  847. border-right: 0px !important;
  848. }
  849. .add_work >>> .el-dialog__header {
  850. padding: 20px 20px 10px;
  851. text-align: center;
  852. background: #32455b;
  853. }
  854. .add_work >>> .el-dialog__title {
  855. font-size: 14px !important;
  856. color: #fff !important;
  857. }
  858. .add_work >>> .el-dialog__headerbtn {
  859. font-size: 20px !important;
  860. top: 5px !important;
  861. right: 8px !important;
  862. }
  863. .add_work >>> .el-form-item__label {
  864. margin-left: 65px;
  865. }
  866. .add_work >>> .el-form-item {
  867. display: flex;
  868. }
  869. .add_work >>> .el-form-item__content {
  870. margin: 0 !important;
  871. }
  872. .add_work >>> .el-dialog__footer {
  873. text-align: center !important;
  874. }
  875. .add_work >>> .el-dialog {
  876. min-width: 650px !important;
  877. width: 1080px;
  878. }
  879. .add_work >>> .el-dialog__body {
  880. background: #fff;
  881. height: 660px;
  882. overflow: auto;
  883. }
  884. .header-title {
  885. display: flex;
  886. }
  887. .logoImg {
  888. width: 30px;
  889. }
  890. .logoImg > img {
  891. width: 100%;
  892. height: 100%;
  893. }
  894. .title_add_student {
  895. margin: 0 auto;
  896. color: #fff;
  897. }
  898. .top {
  899. display: flex;
  900. justify-content: space-between;
  901. padding-bottom: 10px;
  902. border-bottom: 2px solid #eee;
  903. }
  904. .top > div:nth-child(1) {
  905. font-size: 18px;
  906. }
  907. .top > div:nth-child(2) {
  908. font-size: 14px;
  909. line-height: 28px;
  910. }
  911. .first {
  912. margin-top: 25px;
  913. border-bottom: 1px solid #c5c5c5;
  914. }
  915. .one_top {
  916. display: flex;
  917. justify-content: space-between;
  918. }
  919. .one_top > div:nth-child(1) {
  920. color: #2490bf;
  921. font-size: 16px;
  922. }
  923. .one_top > button {
  924. width: 100px;
  925. background: #24a0a4;
  926. height: 30px;
  927. color: #e0e0e0;
  928. font-size: 13px;
  929. padding: 0 !important;
  930. }
  931. .work_Img {
  932. width: 150px;
  933. margin: 10px 0;
  934. }
  935. .assess_Img {
  936. width: 400px;
  937. margin: 0 auto;
  938. padding: 15px 0;
  939. }
  940. .work_Img > img,
  941. .assess_Img > img {
  942. width: 100%;
  943. height: 100%;
  944. }
  945. .work_input {
  946. border: 1px solid;
  947. width: 135px;
  948. height: 20px;
  949. line-height: 20px;
  950. font-size: 13px;
  951. padding: 5px;
  952. }
  953. .poetry {
  954. margin: 10px 0 15px 0;
  955. }
  956. .assess {
  957. background: #169bd5 !important;
  958. }
  959. .assess_top {
  960. border-bottom: 2px solid #eee;
  961. padding-bottom: 10px;
  962. }
  963. .assess_top > div:nth-child(1) {
  964. color: #2490bf;
  965. font-size: 16px;
  966. }
  967. .student_Answer {
  968. display: flex;
  969. margin: 5px 10px;
  970. /* padding-bottom: 25px; */
  971. }
  972. .workName {
  973. font-size: 18px;
  974. font-weight: bold;
  975. margin: 5px 10px;
  976. }
  977. .toux {
  978. width: 35px;
  979. /* margin: auto 0; */
  980. height: 35px;
  981. }
  982. .toux > img {
  983. width: 100%;
  984. height: 100%;
  985. }
  986. .nav {
  987. display: flex;
  988. flex-wrap: wrap;
  989. margin-top: 10px;
  990. flex-direction: column;
  991. }
  992. .studentName {
  993. margin-left: 10px;
  994. font-size: 13px;
  995. }
  996. .studentAnswer {
  997. font-size: 12px;
  998. margin: 5px 0 0 10px;
  999. height: 42px;
  1000. overflow: auto;
  1001. }
  1002. .comment {
  1003. /* margin: 20px 0 0 10px;
  1004. overflow: auto;
  1005. height: 75%;
  1006. max-height: 330px; */
  1007. overflow: auto;
  1008. height: 290px;
  1009. background: #fff;
  1010. border-radius: 5px;
  1011. padding: 10px;
  1012. box-sizing: border-box;
  1013. }
  1014. .comment > .comment_title {
  1015. font-size: 18px;
  1016. }
  1017. .comment > .comment_title > span {
  1018. font-size: 14px;
  1019. }
  1020. .other_Answer {
  1021. display: flex;
  1022. margin: 5px 10px;
  1023. border-bottom: 1px solid #ccc;
  1024. padding-bottom: 15px;
  1025. }
  1026. .nav {
  1027. margin-left: 5px;
  1028. width: 80%;
  1029. }
  1030. .nameAndTime {
  1031. display: flex;
  1032. }
  1033. .otherName {
  1034. font-weight: bold;
  1035. margin-left: 10px;
  1036. font-size: 13px;
  1037. }
  1038. .time {
  1039. margin-left: 25px;
  1040. font-size: 12px;
  1041. margin-top: 3px;
  1042. }
  1043. .otherAnswer {
  1044. width: 80%;
  1045. word-wrap: break-word;
  1046. word-break: break-all;
  1047. overflow: hidden;
  1048. font-size: 12px;
  1049. margin: 5px 0 0 10px;
  1050. }
  1051. .doingAssess {
  1052. margin: 0 auto;
  1053. width: 300px;
  1054. background: #169bd5;
  1055. height: 35px;
  1056. line-height: 35px;
  1057. border-radius: 3px;
  1058. font-size: 13px;
  1059. text-align: center;
  1060. color: #fff;
  1061. margin-top: 30px;
  1062. cursor: pointer;
  1063. }
  1064. .score_top {
  1065. display: flex;
  1066. margin-bottom: 10px;
  1067. }
  1068. .userTou {
  1069. width: 50px;
  1070. }
  1071. .userTou > img {
  1072. width: 100%;
  1073. height: 100%;
  1074. }
  1075. .score_user_name {
  1076. line-height: 53px;
  1077. margin-left: 15px;
  1078. }
  1079. .course_top {
  1080. display: flex;
  1081. align-items: center;
  1082. }
  1083. .course_top > div:nth-child(1) {
  1084. line-height: 25px;
  1085. }
  1086. .course_top > div:nth-child(2) {
  1087. border: 1px solid #ccc;
  1088. width: 250px;
  1089. text-align: center;
  1090. height: 25px;
  1091. line-height: 25px;
  1092. margin-left: 30px;
  1093. }
  1094. .sd_score {
  1095. font-size: 15px;
  1096. background: #fff;
  1097. padding: 18px 25px 1px;
  1098. margin-bottom: 15px;
  1099. border-radius: 5px;
  1100. width: 90%;
  1101. box-shadow: 2px 2px 5px #909090;
  1102. }
  1103. .sd_score .score_box {
  1104. display: flex;
  1105. align-items: center;
  1106. margin-bottom: 18px;
  1107. }
  1108. .sd_score span {
  1109. width: 100px;
  1110. text-align: justify;
  1111. text-align-last: justify;
  1112. display: block;
  1113. margin-right: 20px;
  1114. }
  1115. .moreSay {
  1116. margin: 0px 0 5px 20px;
  1117. }
  1118. .more_say_input {
  1119. margin-left: 20px;
  1120. width: 80%;
  1121. }
  1122. .more_say_input >>> .el-input__inner {
  1123. height: 75px;
  1124. font-size: 13px;
  1125. padding: 0 0 0 10px;
  1126. }
  1127. .assess_right {
  1128. width: 200px;
  1129. background: #82b0ee;
  1130. color: #fff;
  1131. text-align: center;
  1132. height: 30px;
  1133. line-height: 30px;
  1134. border-radius: 5px;
  1135. margin: 0 auto;
  1136. margin-top: 20px;
  1137. font-size: 13px;
  1138. cursor: pointer;
  1139. }
  1140. .student_page {
  1141. margin-top: 10px;
  1142. }
  1143. .display {
  1144. display: none;
  1145. }
  1146. .firstTop {
  1147. background: #fff;
  1148. display: flex;
  1149. margin-bottom: 15px;
  1150. flex-direction: column;
  1151. align-items: flex-start;
  1152. height: 90px;
  1153. padding: 10px 25px;
  1154. border-radius: 5px;
  1155. width: 90%;
  1156. box-shadow: 2px 2px 5px #909090;
  1157. }
  1158. .talkScore >>> .el-dialog__body {
  1159. background: #efefef;
  1160. margin: 0 !important;
  1161. }
  1162. .lastTop {
  1163. background: #fff;
  1164. border-radius: 5px;
  1165. width: 98%;
  1166. height: 120px;
  1167. box-shadow: 2px 2px 5px #909090;
  1168. }
  1169. .left,
  1170. .right {
  1171. background: #fff;
  1172. border-radius: 5px;
  1173. padding: 10px;
  1174. box-sizing: border-box;
  1175. }
  1176. .left {
  1177. /* width: 60%;
  1178. margin-right: 10px;
  1179. min-width: 350px;
  1180. min-height: 425px; */
  1181. margin-right: 10px;
  1182. width: 450px;
  1183. min-height: 425px;
  1184. }
  1185. .right {
  1186. /* width: 40%;
  1187. height: 75%;
  1188. min-width: 230px;
  1189. min-height: 370px; */
  1190. width: 25%;
  1191. /* margin-right: 10px; */
  1192. background: none;
  1193. padding: 0;
  1194. }
  1195. .courseTitle {
  1196. font-size: 19px;
  1197. font-weight: 600;
  1198. width: 93%;
  1199. margin-bottom: 20px;
  1200. }
  1201. .bigImg {
  1202. margin-top: 10px;
  1203. height: 300px;
  1204. }
  1205. .bigImg > img,
  1206. .thumbnail > div > img {
  1207. width: 100%;
  1208. height: 100%;
  1209. object-fit: contain;
  1210. }
  1211. .thumbnail {
  1212. display: flex;
  1213. flex-direction: row;
  1214. justify-content: flex-start;
  1215. margin: 10px 0;
  1216. }
  1217. .isClick {
  1218. border: 3px solid #5f89d4;
  1219. border-radius: 5px;
  1220. }
  1221. .thumbnail > div {
  1222. width: 80px;
  1223. margin-right: 5px;
  1224. cursor: pointer;
  1225. }
  1226. .zyBoxC {
  1227. background: #ededed;
  1228. display: flex;
  1229. align-items: center;
  1230. justify-content: center;
  1231. padding: 20px 0px;
  1232. flex-direction: column;
  1233. }
  1234. .zyBox {
  1235. display: flex;
  1236. /* width: 100%; */
  1237. position: relative;
  1238. min-width: 585px;
  1239. min-height: 425px;
  1240. }
  1241. .zyBoxC + .zyBoxC {
  1242. margin-top: 10px;
  1243. }
  1244. .rbButtom {
  1245. position: absolute;
  1246. bottom: 0;
  1247. right: 0;
  1248. background: #06a7ff;
  1249. width: 150px;
  1250. height: 30px;
  1251. border-radius: 5px;
  1252. text-align: center;
  1253. color: #fff;
  1254. line-height: 30px;
  1255. font-size: 14px;
  1256. cursor: pointer;
  1257. right: 27px;
  1258. }
  1259. .bigImg >>> .vjs-tech,
  1260. .bigImg >>> .video-js {
  1261. height: 300px !important;
  1262. }
  1263. .el-table >>> .even_row {
  1264. background-color: #f1f1f1;
  1265. }
  1266. .data_body {
  1267. height: 340px;
  1268. display: flex;
  1269. position: relative;
  1270. border-radius: 5px;
  1271. /* border: 1px solid #eee; */
  1272. /* margin: 10px auto; */
  1273. box-sizing: border-box;
  1274. padding: 10px;
  1275. width: 100%;
  1276. background: #fff;
  1277. }
  1278. .data_body .title {
  1279. position: absolute;
  1280. top: 10px;
  1281. left: 10px;
  1282. }
  1283. .dialog_diy >>> .el-dialog__header {
  1284. padding: 9px 20px 10px;
  1285. background: #32455b !important;
  1286. }
  1287. .dialog_diy >>> .el-dialog__title {
  1288. color: #fff;
  1289. font-size: 15px;
  1290. }
  1291. .dialog_diy >>> .el-dialog__headerbtn {
  1292. top: 14px;
  1293. }
  1294. .dialog_diy >>> .el-dialog__headerbtn .el-dialog__close {
  1295. color: #fff;
  1296. }
  1297. .dialog_diy >>> .el-dialog__headerbtn .el-dialog__close:hover {
  1298. color: #fff;
  1299. }
  1300. </style>