test.vue 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107
  1. <template>
  2. <div class="i_body_box">
  3. <div class="check_nav">
  4. <div class="nav all" v-show="false" :class="{ active: type == '1' }" @click="checkType('1')">
  5. 年度考核
  6. </div>
  7. <div class="nav all" :class="{ active: type == '' }" @click="checkType('')">
  8. 全部
  9. </div>
  10. <div class="nav" :class="{
  11. active: type == item.id,
  12. gr: item.id == 'afc3f97f-2429-408d-8dcd-5e63a44d355a',
  13. md: item.id == '478bcccd-e3a1-472b-aa29-3ed7bc479469',
  14. jy: item.id == '178a377a-b4f1-4a75-b3c3-2787a7c98784',
  15. yy: item.id == 'dda9728e-5f11-469e-89ee-aca518daf223',
  16. bj: item.id == 'afc3f97f-2429-408d-8dcd-5e63a44d355c'
  17. }" @click="checkType(item.id)" v-for="(item, index) in typeArray" :key="index">
  18. {{ item.name }}
  19. </div>
  20. <div class="nav all" :class="{ active: type == '0' }" @click="checkType('0')">
  21. 其他
  22. </div>
  23. </div>
  24. <div class="check_box" v-loading="loading">
  25. <examine v-if="type==1"></examine>
  26. <div class="noneData" v-if="!worksArray.length && type!=1" style="text-align: center; margin-top: 20px;">
  27. 暂无数据
  28. </div>
  29. <div class="test_panel" v-if="type!=1" v-for="(item, index) in worksArray" :key="index">
  30. <div class="test_panel_title">
  31. <div class="title" :style="{paddingLeft: (item.array.length > 0 || item.carray.length > 0) ? '0' : '30px'}" @click="openWork(index)">
  32. <span class="open" :class="{active: item.open}" v-if="item.array.length > 0 || item.carray.length > 0"></span>
  33. <el-tooltip :content="item.username" placement="top" effect="dark">
  34. <span class="titleN">{{ item.title }}</span>
  35. </el-tooltip>
  36. </div>
  37. <div class="state">
  38. <span :class="{ is: item.array.length > 0, no: !item.array.length }">{{ item.array.length > 0 ? "已完成" : "未完成" }}</span>
  39. </div>
  40. <div class="time">
  41. <span v-if="item.overtime" :class="{isDead: isDeadlinePassed(item.overtime)}">截止时间:{{ item.overtime }}</span>
  42. <span v-else></span>
  43. </div>
  44. <div class="creator" :style="{paddingRight:(!item.carray.length > 0) ? '0' : '0px'}">
  45. <el-tooltip :content="item.username" placement="top" effect="dark">
  46. <span>创建者:{{ item.username }}</span>
  47. </el-tooltip>
  48. </div>
  49. <div @click="doTest2(item.courseid)" class="editBtn" :style="`${item.open?'display:flex':''}`" v-if="!item.carray.length > 0">
  50. <span v-if="item.array.length === 0">去填写</span>
  51. <span v-else>再填一份</span>
  52. </div>
  53. </div>
  54. <div class="test_panel_box" v-if="item.open">
  55. <div class="test_add_box"
  56. v-if="item.array">
  57. <div class="test" v-for="(test, index) in item.array" :key="test.id">
  58. <div class="time">
  59. <span>提交记录{{item.array.length - index}}</span>
  60. </div>
  61. <!-- <img @click="deleteTest(test.id)" class="delete"
  62. src="../../../../assets/icon/test/delete.png" alt="" /> -->
  63. <div class="utime">
  64. <span>{{ test.utime }}</span>
  65. </div>
  66. <div class="mask">
  67. <div @click="doTest(test.courseid, test.id)">
  68. <span>编辑</span>
  69. </div>
  70. <div @click="deleteTest(test.id)" class="delete">
  71. <span>删除</span>
  72. </div>
  73. <!-- <div @click="checkTest(test.courseid, test.id)">
  74. <span></span><span>查看</span>
  75. </div>
  76. <div @click="copyTest(test.id)">
  77. <span></span><span>复制</span>
  78. </div> -->
  79. </div>
  80. </div>
  81. </div>
  82. <div class="test_add_box"
  83. v-else-if="item.carray" v-loading="!item.carray.length">
  84. <!-- <div class="courseLength" v-for="(course, index) in item.carray" :key="index" @click="doTest3(item, course)">
  85. <span class="finish" :class="{is: course.array.length}"></span>
  86. <span>{{ index+1 }}、</span>
  87. <span>{{ course.title }}</span>
  88. <span>{{ course.username }}</span>
  89. </div> -->
  90. <div class="test courseLength" v-for="(course, index) in item.carray" :key="index">
  91. <div class="time">
  92. <el-tooltip :content="course.title+'-'+course.username" placement="top" effect="dark">
  93. <span>{{ course.title }}-{{ course.username }}</span>
  94. </el-tooltip>
  95. </div>
  96. <div class="finishBox" :class="{is: course.array.length}">
  97. <span class="finish"></span>
  98. <span v-if="course.array.length">已评分</span>
  99. <span v-else>未评分</span>
  100. </div>
  101. <div class="utime" style="margin-left: 30px;">
  102. <span v-if="course.array.length">{{ course.array[0].utime }}</span>
  103. <span v-else></span>
  104. </div>
  105. <div class="mask">
  106. <div @click="doTest3(item, course)">
  107. <span>评分</span>
  108. </div>
  109. </div>
  110. </div>
  111. </div>
  112. </div>
  113. </div>
  114. </div>
  115. </div>
  116. </template>
  117. <script>
  118. import examine from '../examine/index'
  119. export default {
  120. props: {
  121. userid: {
  122. type: String,
  123. },
  124. oid: {
  125. type: String,
  126. },
  127. },
  128. components:{
  129. examine
  130. },
  131. data() {
  132. return {
  133. type: "",
  134. typeArray: [],
  135. typeArrayCheck: [],
  136. worksArray: [],
  137. org: this.$route.query.org,
  138. role: this.$route.query.role,
  139. loading: false
  140. };
  141. },
  142. computed: {
  143. getNum() {
  144. return function (array) {
  145. let _array = JSON.parse(array);
  146. let num = 0;
  147. _array.forEach(el => {
  148. if ((el.ttype == 3 || el.ttype == 2) && el.array.length > 0) {
  149. el.array.forEach(item => {
  150. if (item.ttype == 2 && item.array.length > 0) {
  151. item.array.forEach(item2 => {
  152. if (item2.ttype == 1 && item2.json) {
  153. num++;
  154. }
  155. });
  156. } else if (item.ttype == 1 && item.json) {
  157. num++;
  158. }
  159. });
  160. } else if (el.ttype == 1 && el.json) {
  161. num++;
  162. }
  163. });
  164. return num;
  165. };
  166. },
  167. getScore() {
  168. return function (array) {
  169. // let _array = JSON.parse(array)
  170. let _score = 0;
  171. let scoreArray = [];
  172. for (var i = 0; i < array.length; i++) {
  173. let _array = JSON.parse(array[i].courseJson);
  174. let score = 0;
  175. for (var j = 0; j < _array.length; j++) {
  176. let el = _array[j];
  177. if ((el.ttype == 3 || el.ttype == 2) && el.array.length > 0) {
  178. for (var k = 0; k < el.array.length; k++) {
  179. let item = el.array[k];
  180. if (item.ttype == 2 && item.array.length > 0) {
  181. for (var z = 0; z < item.array.length; z++) {
  182. let item2 = item.array[z];
  183. if (item2.ttype == 1 && item2.json && item2.json.score2) {
  184. score += parseInt(item2.json.score2);
  185. }
  186. }
  187. } else if (item.ttype == 1 && item.json && item.json.score2) {
  188. score += parseInt(item.json.score2);
  189. }
  190. }
  191. } else if (el.ttype == 1 && el.json && el.json.score2) {
  192. score += parseInt(el.json.score2);
  193. }
  194. }
  195. scoreArray.push(score);
  196. }
  197. scoreArray.forEach(el => {
  198. _score += el;
  199. });
  200. console.log(scoreArray);
  201. return _score ? _score / scoreArray.length : 0;
  202. };
  203. },
  204. getImg() {
  205. return function (array) {
  206. let _array = JSON.parse(array);
  207. let _img = "";
  208. s: for (var j = 0; j < _array.length; j++) {
  209. let el = _array[j];
  210. if ((el.ttype == 3 || el.ttype == 2) && el.array.length > 0) {
  211. for (var k2 = 0; k2 < el.array.length; k2++) {
  212. let item = el.array[k2];
  213. console.log(k2);
  214. if (item.ttype == 2 && item.array.length > 0) {
  215. for (var z = 0; z < item.array.length; z++) {
  216. let item2 = item.array[z];
  217. if (
  218. item2.ttype == 1 &&
  219. item2.type == 5 &&
  220. item2.json &&
  221. item2.json.file &&
  222. item2.json.file.length > 0
  223. ) {
  224. for (var k4 = 0; k4 < item2.json.file.length; k4++) {
  225. let ik = item2.json.file[k4];
  226. if (ik.type == 3) {
  227. _img = ik.url;
  228. break s;
  229. }
  230. }
  231. }
  232. }
  233. } else if (
  234. item.ttype == 1 &&
  235. item.type == 5 &&
  236. item.json &&
  237. item.json.file &&
  238. item.json.file.length > 0
  239. ) {
  240. for (var k3 = 0; k3 < item.json.file.length; k3++) {
  241. let ik = item.json.file[k3];
  242. if (ik.type == 3) {
  243. _img = ik.url;
  244. break s;
  245. }
  246. }
  247. }
  248. }
  249. } else if (
  250. el.ttype == 1 &&
  251. el.type == 5 &&
  252. el.json &&
  253. el.json.file &&
  254. el.json.file.length > 0
  255. ) {
  256. for (var k = 0; k < el.json.file.length; k++) {
  257. let ik = el.json.file[k];
  258. if (ik.type == 3) {
  259. _img = ik.url;
  260. break s;
  261. }
  262. }
  263. }
  264. }
  265. return _img;
  266. };
  267. }
  268. },
  269. methods: {
  270. isDeadlinePassed(deadline) {
  271. let _line = new Date(deadline)
  272. const currentDate = new Date();
  273. return currentDate > _line;
  274. },
  275. checkType(type) {
  276. this.type = type;
  277. this.getWorks();
  278. },
  279. selectTestType(type) {
  280. let params = {
  281. oid: this.oid
  282. };
  283. this.ajax
  284. .get(this.$store.state.api + "selectTestType", params)
  285. .then(res => {
  286. this.typeArray = res.data[0];
  287. if(type == 1){
  288. this.type = ''
  289. // if (this.typeArray.length) {
  290. // this.type = this.typeArray[0].id;
  291. // } else {
  292. // this.type = '0';
  293. // }
  294. }
  295. this.getWorks()
  296. })
  297. .catch(err => {
  298. console.error(err);
  299. });
  300. },
  301. getWorks() {
  302. this.loading = true;
  303. let params = {
  304. uid: this.userid,
  305. typeid: this.type
  306. };
  307. this.ajax
  308. .get(this.$store.state.api + "getTestWorksPerson", params)
  309. .then(res => {
  310. let array = res.data[0];
  311. let array2 = res.data[1];
  312. // 用于存储归类后的数据的对象
  313. let worksArray = {};
  314. // 遍历原始数据,根据 parentId 进行分组
  315. array2.forEach(item => {
  316. // console.log(item.chapters);
  317. worksArray[item.courseId] = {
  318. id: item.id,
  319. courseid: item.courseId,
  320. title: item.title,
  321. time: item.time,
  322. utime: item.utime,
  323. overtime: item.overtime,
  324. username: item.username,
  325. chapters: item.chapters,
  326. brief: item.brief,
  327. typeid: item.typeid,
  328. array: item.typeid == 'dda9728e-5f11-469e-89ee-aca518daf123' ? 0 : [],
  329. carray: [],
  330. open: false
  331. };
  332. });
  333. worksArray = Object.values(worksArray);
  334. worksArray.forEach(async el => {
  335. if (el.typeid == 'dda9728e-5f11-469e-89ee-aca518daf123') {
  336. let courseJson = this.returnCourseJSON(el.chapters)
  337. if(courseJson && courseJson.courses.length){
  338. let courses = courseJson.courses.join(',')
  339. let _res = await this.getAllCourse(courses)
  340. console.log(_res);
  341. let _carray = []
  342. for(var i=0;i<_res.length;i++){
  343. _carray.push({
  344. courseid: _res[i].courseId,
  345. title: _res[i].title,
  346. username: _res[i].username,
  347. array: []
  348. })
  349. }
  350. el.carray = _carray
  351. }
  352. }
  353. array.forEach(el2 => {
  354. if (el.courseid == el2.courseid && el.typeid != 'dda9728e-5f11-469e-89ee-aca518daf123') {
  355. el.array.push(el2);
  356. }
  357. if(el.courseid == el2.courseid && el.typeid == 'dda9728e-5f11-469e-89ee-aca518daf123'){
  358. let courseid = this.returnCourseId(el2.courseJson)
  359. for(var c = 0; c<el.carray.length;c++){
  360. if(el.carray[c].courseid == courseid){
  361. el.carray[c].array.push(el2);
  362. break
  363. }
  364. }
  365. }
  366. });
  367. });
  368. // worksArray[item.courseid].array.push(item);
  369. this.worksArray = worksArray;
  370. this.loading = false;
  371. this.$forceUpdate();
  372. })
  373. .catch(err => {
  374. this.loading = false;
  375. console.error(err);
  376. });
  377. },
  378. openWork(index){
  379. if(this.worksArray[index].array.length === 0 && this.worksArray[index].carray.length === 0){
  380. return
  381. }
  382. this.worksArray[index].open = !this.worksArray[index].open
  383. this.$forceUpdate()
  384. },
  385. returnA() {
  386. this.$router.push(
  387. "/testStudent?userid=" +
  388. this.userid +
  389. "&oid=" +
  390. this.oid +
  391. "&org=" +
  392. this.org +
  393. "&role=" +
  394. this.role
  395. );
  396. },
  397. checkTest(cid, tid) {
  398. this.$router.push(
  399. "/checkTest?cid=" +
  400. cid +
  401. "&tid=" +
  402. tid +
  403. "&userid=" +
  404. this.userid +
  405. "&oid=" +
  406. this.oid +
  407. "&org=" +
  408. this.org +
  409. "&type=3" +
  410. "&role=" +
  411. this.role
  412. );
  413. },
  414. doTest(cid, tid) {
  415. this.$router.push(
  416. "/doTest?cid=" +
  417. cid +
  418. "&tid=" +
  419. tid +
  420. "&userid=" +
  421. this.userid +
  422. "&oid=" +
  423. this.oid +
  424. "&org=" +
  425. this.org +
  426. "&type=3" +
  427. "&role=" +
  428. this.role
  429. );
  430. },
  431. doTest2(cid) {
  432. this.$router.push(
  433. "/doTest?cid=" +
  434. cid +
  435. "&userid=" +
  436. this.userid +
  437. "&oid=" +
  438. this.oid +
  439. "&org=" +
  440. this.org +
  441. "&type=3" +
  442. "&role=" +
  443. this.role
  444. );
  445. },
  446. doTest3(item, course){
  447. if(course.array.length){
  448. this.$router.push(
  449. "/doTest?cid=" +
  450. item.courseid +
  451. "&tid=" +
  452. course.array[0].id +
  453. "&userid=" +
  454. this.userid +
  455. "&oid=" +
  456. this.oid +
  457. "&org=" +
  458. this.org +
  459. "&type=3" +
  460. "&role=" +
  461. this.role
  462. );
  463. }else{
  464. this.$router.push(
  465. "/doTest?cid=" +
  466. item.courseid +
  467. "&userid=" +
  468. this.userid +
  469. "&oid=" +
  470. this.oid +
  471. "&org=" +
  472. this.org +
  473. "&type=3" +
  474. "&courseid=" +
  475. course.courseid +
  476. "&role=" +
  477. this.role
  478. );
  479. }
  480. },
  481. copyTest(tid) {
  482. let params = [
  483. {
  484. tid: tid,
  485. uid: this.userid
  486. }
  487. ];
  488. this.ajax
  489. .post(this.$store.state.api + "copyTestWorks", params)
  490. .then(res => {
  491. this.$message.success("复制成功");
  492. this.getWorks();
  493. })
  494. .catch(err => {
  495. console.error(err);
  496. });
  497. },
  498. deleteTest(tid) {
  499. let _this = this;
  500. _this
  501. .$confirm("确定删除此填写的表单么?", "提示", {
  502. confirmButtonText: "确定",
  503. cancelButtonText: "取消",
  504. type: "warning"
  505. })
  506. .then(() => {
  507. let params = [
  508. {
  509. tid: tid
  510. }
  511. ];
  512. _this.ajax
  513. .post(_this.$store.state.api + "deleteTestCourseWorks", params)
  514. .then(res => {
  515. _this.$message.success("删除成功");
  516. _this.getWorks();
  517. })
  518. .catch(err => {
  519. console.error(err);
  520. });
  521. })
  522. .catch(() => {
  523. return;
  524. });
  525. },
  526. returnCourseJSON(array) {
  527. let _array = JSON.parse(array);
  528. let courseJson = '';
  529. s: for (var j = 0; j < _array.length; j++) {
  530. let el = _array[j];
  531. if ((el.ttype == 3 || el.ttype == 2) && el.array.length > 0) {
  532. for (var k2 = 0; k2 < el.array.length; k2++) {
  533. let item = el.array[k2];
  534. console.log(k2);
  535. if (item.ttype == 2 && item.array.length > 0) {
  536. for (var z = 0; z < item.array.length; z++) {
  537. let item2 = item.array[z];
  538. if (
  539. item2.ttype == 1 &&
  540. item2.type == 6 &&
  541. item2.json
  542. ) {
  543. courseJson = item2.json
  544. break s;
  545. }
  546. }
  547. } else if (
  548. item.ttype == 1 &&
  549. item.type == 6 &&
  550. item.json
  551. ) {
  552. courseJson = item.json
  553. break s;
  554. }
  555. }
  556. } else if (
  557. el.ttype == 1 &&
  558. el.type == 6 &&
  559. el.json
  560. ) {
  561. courseJson = el.json
  562. break s;
  563. }
  564. }
  565. return courseJson;
  566. },
  567. returnCourseId(array) {
  568. let _array = JSON.parse(array);
  569. let courseJson = '';
  570. s: for (var j = 0; j < _array.length; j++) {
  571. let el = _array[j];
  572. if ((el.ttype == 3 || el.ttype == 2) && el.array.length > 0) {
  573. for (var k2 = 0; k2 < el.array.length; k2++) {
  574. let item = el.array[k2];
  575. console.log(k2);
  576. if (item.ttype == 2 && item.array.length > 0) {
  577. for (var z = 0; z < item.array.length; z++) {
  578. let item2 = item.array[z];
  579. if (
  580. item2.ttype == 1 &&
  581. item2.type == 6 &&
  582. item2.json && item2.json.answer2
  583. ) {
  584. courseJson = item2.json.answer2
  585. break s;
  586. }
  587. }
  588. } else if (
  589. item.ttype == 1 &&
  590. item.type == 6 &&
  591. item.json && item.json.answer2
  592. ) {
  593. courseJson = item.json.answer2
  594. break s;
  595. }
  596. }
  597. } else if (
  598. el.ttype == 1 &&
  599. el.type == 6 &&
  600. el.json && el.json.answer2
  601. ) {
  602. courseJson = el.json.answer2
  603. break s;
  604. }
  605. }
  606. return courseJson;
  607. },
  608. async getAllCourse(id) {
  609. let params = {
  610. cid: id,
  611. };
  612. let res = await this.ajax.get(this.$store.state.api + "getCourseInfoTestAll", params)
  613. return res.data[0]
  614. },
  615. },
  616. mounted() {
  617. this.selectTestType(1);
  618. },
  619. activated(){
  620. console.log('testperson',1111111111111111111111);
  621. this.selectTestType(2);
  622. },
  623. };
  624. </script>
  625. <style scoped>
  626. .i_body_box {
  627. height: calc(100% - 30px);
  628. padding: 30px 0 0;
  629. box-sizing: border-box;
  630. }
  631. .check_nav {
  632. display: flex;
  633. height: 50px;
  634. align-items: center;
  635. padding: 0;
  636. box-sizing: border-box;
  637. width: 100%;
  638. }
  639. .check_nav>.nav {
  640. width: 120px;
  641. height: 100%;
  642. display: flex;
  643. align-items: center;
  644. justify-content: center;
  645. color: rgb(167, 167, 167);
  646. /* background: #000000; */
  647. cursor: pointer;
  648. }
  649. .check_nav>.active {
  650. color: #3681fc;
  651. background: rgb(248, 250, 254);
  652. border-radius: 10px 10px 0 0;
  653. }
  654. .check_nav>.all::before,
  655. .check_nav>.gr::before,
  656. .check_nav>.md::before,
  657. .check_nav>.jy::before,
  658. .check_nav>.bj::before,
  659. .check_nav>.yy::before {
  660. content: "";
  661. display: block;
  662. width: 18px;
  663. height: 18px;
  664. background-size: 100% 100%;
  665. margin-right: 5px;
  666. }
  667. .check_nav>.all::before {
  668. background-image: url('../../../../assets/icon/test/all_icon.png');
  669. }
  670. .check_nav>.active.all::before {
  671. background-image: url('../../../../assets/icon/test/all_icon_active.png');
  672. }
  673. .check_nav>.gr::before {
  674. background-image: url('../../../../assets/icon/test/gr_icon.png');
  675. }
  676. .check_nav>.active.gr::before {
  677. background-image: url('../../../../assets/icon/test/gr_icon_active.png');
  678. }
  679. .check_nav>.md::before {
  680. background-image: url('../../../../assets/icon/test/md_icon.png');
  681. }
  682. .check_nav>.active.md::before {
  683. background-image: url('../../../../assets/icon/test/md_icon_active.png');
  684. }
  685. .check_nav>.jy::before {
  686. background-image: url('../../../../assets/icon/test/jy_icon.png');
  687. }
  688. .check_nav>.active.jy::before {
  689. background-image: url('../../../../assets/icon/test/jy_icon_active.png');
  690. }
  691. .check_nav>.yy::before {
  692. background-image: url('../../../../assets/icon/test/yy_icon.png');
  693. }
  694. .check_nav>.active.yy::before {
  695. background-image: url('../../../../assets/icon/test/yy_icon_active.png');
  696. }
  697. .check_nav>.bj::before {
  698. background-image: url('../../../../assets/icon/test/bj_icon.png');
  699. }
  700. .check_nav>.active.bj::before {
  701. background-image: url('../../../../assets/icon/test/bj_icon_active.png');
  702. }
  703. .check_box {
  704. height: calc(100% - 50px);
  705. overflow: auto;
  706. padding: 0 0 20px;
  707. box-sizing: border-box;
  708. background: rgb(248, 250, 254);
  709. }
  710. .test_panel {
  711. width: calc(100% - 40px);
  712. margin: 20px auto 0;
  713. background: #fff;
  714. border-radius: 10px;
  715. /* height: 300px; */
  716. overflow: hidden;
  717. box-shadow: 0 2px 5px 1px #0001;
  718. }
  719. .test_panel:hover{
  720. box-shadow: 0 0 2px 1px #3681FC;
  721. }
  722. .test_panel:hover>.test_panel_title>.title{
  723. color:#5996FD
  724. }
  725. .test_panel_title:hover>.editBtn{
  726. display: flex;
  727. }
  728. .test_panel+.test_panel {
  729. margin-top: 15px;
  730. }
  731. .test_panel_title {
  732. height: 50px;
  733. display: flex;
  734. align-items: center;
  735. width: 100%;
  736. /* justify-content: space-between; */
  737. /* padding: 0 20px; */
  738. box-sizing: border-box;
  739. /* border-bottom: 2px solid #f0f0f0; */
  740. }
  741. .test_panel_title>.title {
  742. display: flex;
  743. align-items: center;
  744. width: 300px;
  745. margin-left: 20px;
  746. cursor: pointer;
  747. }
  748. .test_panel_title>.title>.open{
  749. width: 20px;
  750. height:20px;
  751. margin-right: 10px;
  752. background-image: url('../../../../assets/icon/test/chevron-right.png');
  753. background-size: 100% 100%;
  754. cursor:pointer;
  755. transition:all .3s;
  756. opacity: .5;
  757. }
  758. .test_panel_title>.title>.open.active{
  759. transform: rotate(90deg);
  760. opacity: 1;
  761. }
  762. .test_panel_title>.state{
  763. margin-left: auto;
  764. min-width: fit-content;
  765. }
  766. .test_panel_title>.state > span {
  767. font-size: 14px;
  768. padding: 5px 8px;
  769. border-radius: 5px;
  770. margin-right: 0;
  771. }
  772. .test_panel_title>.state>.is:nth-child(1) {
  773. color: #17C469;
  774. background: #EFFCF5;
  775. border: 1px solid #EFFCF5;
  776. }
  777. .test_panel_title>.state>.no:nth-child(1) {
  778. color: #3681FC;
  779. background: #E0EAFB;
  780. border: 1px solid #E0EAFB;
  781. }
  782. .test_panel_title>.title>.titleN {
  783. font-size: 18px;
  784. font-weight: 600;
  785. max-width: calc(100% - 20px - 10px);
  786. overflow: hidden;
  787. text-overflow: ellipsis;
  788. white-space: nowrap;
  789. }
  790. .test_panel_title>.time {
  791. font-size: 16px;
  792. color: #a1a1a1;
  793. min-width: 160px;
  794. margin: 0 30px;
  795. }
  796. .test_panel_title>.creator {
  797. font-size: 16px;
  798. color: #a1a1a1;
  799. max-width: 160px;
  800. min-width: 160px;
  801. overflow: hidden;
  802. text-overflow: ellipsis;
  803. white-space: nowrap;
  804. }
  805. .test_panel_title>.editBtn {
  806. font-size: 16px;
  807. color: #fff;
  808. background: #3681fc;
  809. height: 100%;
  810. display: none;
  811. align-items: center;
  812. padding: 0 15px;
  813. cursor: pointer;
  814. }
  815. .test_panel_title>.time>span+span {
  816. margin-left: 10px;
  817. }
  818. .test_panel_box {
  819. border-top: 2px solid #f0f0f0;
  820. width: 100%;
  821. display: flex;
  822. align-items: center;
  823. padding: 5px 20px;
  824. box-sizing: border-box;
  825. }
  826. .test_panel_box>.detail {
  827. width: calc(100% - 350px - 20px);
  828. margin-right: 20px;
  829. color: #a1a1a1;
  830. font-size: 14px;
  831. line-height: 24px;
  832. word-break: break-all;
  833. display: -webkit-box;
  834. -webkit-line-clamp: 4;
  835. -webkit-box-orient: vertical;
  836. overflow: hidden;
  837. }
  838. .test_panel_box>.panel {
  839. display: flex;
  840. align-items: center;
  841. justify-content: space-between;
  842. width: 350px;
  843. min-width: 350px;
  844. }
  845. .test_panel_box>.panel>.score {
  846. height: 110px;
  847. display: flex;
  848. align-items: center;
  849. justify-content: center;
  850. flex-direction: column;
  851. border: 1px solid #dbdbdb;
  852. background: rgb(252, 252, 252);
  853. width: 120px;
  854. border-radius: 5px;
  855. }
  856. .test_panel_box>.panel>.score:nth-child(1) {
  857. display: flex;
  858. }
  859. .test_panel_box>.panel>.score>div:nth-child(1)>span:nth-child(1) {
  860. font-size: 30px;
  861. font-weight: 700;
  862. }
  863. .test_panel_box>.panel>.score>div:nth-child(1)>span:nth-child(2) {
  864. margin-left: 5px;
  865. }
  866. .test_panel_box>.panel>.score>div:nth-child(2) {
  867. font-size: 14px;
  868. margin-top: 10px;
  869. color: #a1a1a1;
  870. }
  871. .test_panel_box>.panel>.btn {
  872. height: 100px;
  873. display: flex;
  874. flex-direction: column;
  875. justify-content: space-between;
  876. }
  877. .test_panel_box>.panel>.btn>div {
  878. display: flex;
  879. color: rgb(69, 141, 255);
  880. align-items: center;
  881. cursor: pointer;
  882. font-size: 14px;
  883. }
  884. /* .test_panel_box > .panel >.btn > div + div{
  885. margin: 15px 0 0 0;
  886. } */
  887. .test_panel_box>.panel>.btn>div>span:nth-child(1) {
  888. display: block;
  889. width: 13px;
  890. height: 13px;
  891. background-size: 100% 100%;
  892. margin-right: 7px;
  893. }
  894. .test_panel_box>.panel>.btn>div:nth-child(1)>span:nth-child(1) {
  895. background-image: url('../../../../assets/icon/test/edit_icon.png');
  896. }
  897. .test_panel_box>.panel>.btn>div:nth-child(2)>span:nth-child(1) {
  898. background-image: url('../../../../assets/icon/test/check_icon.png');
  899. }
  900. .test_panel_box>.panel>.btn>div:nth-child(3)>span:nth-child(1) {
  901. background-image: url('../../../../assets/icon/test/paste_icon.png');
  902. }
  903. .test_add_box {
  904. width: 100%;
  905. box-sizing: border-box;
  906. }
  907. .test_add_box>.test {
  908. width: 100%;
  909. height: 40px;
  910. border-radius: 5px;
  911. display: flex;
  912. align-items: center;
  913. }
  914. .test_add_box>.test>img {
  915. width: 100%;
  916. height: 100%;
  917. object-fit: cover;
  918. border-radius: 5px;
  919. }
  920. .test_add_box>.test+.test {
  921. /* margin-left: 10px; */
  922. }
  923. .test_add_box>.test>.time {
  924. display: flex;
  925. /* justify-content: center; */
  926. align-items: center;
  927. font-size: 14px;
  928. width: 300px;
  929. padding-left: 30px;
  930. box-sizing: border-box;
  931. }
  932. .test_add_box>.test>.time>span {
  933. /* margin-top: 5px; */
  934. overflow: hidden;
  935. text-overflow: ellipsis;
  936. white-space: nowrap;
  937. }
  938. .test_add_box>.test>.utime {
  939. font-size: 14px;
  940. width: 160px;
  941. min-width: 160px;
  942. margin: 0 30px 0 auto;
  943. }
  944. .test_add_box>.test>.mask {
  945. display: flex;
  946. align-items: center;
  947. padding-right: 58px;
  948. max-width: 160px;
  949. min-width: 160px;
  950. }
  951. .test_add_box>.test>.delete {
  952. position: absolute;
  953. width: 20px;
  954. height: 20px;
  955. right: -5px;
  956. top: -5px;
  957. cursor: pointer;
  958. z-index: 2;
  959. display: none;
  960. }
  961. .test_add_box>.test>.mask>div {
  962. display: flex;
  963. align-items: center;
  964. cursor: pointer;
  965. font-size: 14px;
  966. color: #3681FC;
  967. }
  968. .test_add_box>.test>.mask>.delete {
  969. color: #EE3E3E;
  970. }
  971. .test_add_box>.test>.mask>div+div {
  972. /* margin: 10px 0 0 0; */
  973. margin-left: 15px;
  974. }
  975. /*
  976. .test_add_box>.test>.mask>div>span:nth-child(1) {
  977. display: block;
  978. width: 13px;
  979. height: 13px;
  980. background-size: 100% 100%;
  981. margin-right: 7px;
  982. }
  983. .test_add_box>.test>.mask>div:nth-child(1)>span:nth-child(1) {
  984. background-image: url('../../../../assets/icon/test/edit_icon.png');
  985. }
  986. .test_add_box>.test>.mask>div:nth-child(2)>span:nth-child(1) {
  987. background-image: url('../../../../assets/icon/test/check_icon.png');
  988. }
  989. .test_add_box>.test>.mask>div:nth-child(3)>span:nth-child(1) {
  990. background-image: url('../../../../assets/icon/test/paste_icon.png');
  991. } */
  992. .bgColor {
  993. background: #466b99;
  994. }
  995. /* .courseLength{
  996. width: 100%;
  997. cursor: pointer;
  998. margin-bottom: 10px;
  999. display: flex;
  1000. align-items: center;
  1001. }
  1002. .courseLength > span + span{
  1003. margin-left: 10px;
  1004. } */
  1005. .courseLength > .finishBox {
  1006. display: flex;
  1007. color: #a1a1a1;
  1008. font-size: 14px;
  1009. margin-left: auto;
  1010. align-items: center;
  1011. }
  1012. .courseLength > .finishBox > .finish{
  1013. width: 15px;
  1014. height: 15px;
  1015. background-image: url('../../../../assets/icon/test/icon_course.png');
  1016. background-size: 100% 100%;
  1017. margin-right: 5px;
  1018. }
  1019. .courseLength > .finishBox.is > .finish{
  1020. background-image: url('../../../../assets/icon/test/icon_course_check.png');
  1021. }
  1022. .courseLength > .finishBox.is{
  1023. color: #000
  1024. }
  1025. .isDead{
  1026. color:#EE3E3E;
  1027. }
  1028. </style>