courseDetailGM.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708
  1. <template>
  2. <div class="pb_content">
  3. <div class="pb_content_body" style="height: 100%">
  4. <div class="body_student">
  5. <div class="student_head">
  6. <div style="background:#5c538a" v-if="tType != 4" class="return" @click.stop="
  7. goTo(
  8. '/indexGM?userid=' +
  9. userid +
  10. '&oid=' +
  11. oid +
  12. '&org='+
  13. org +
  14. '&cid=' +
  15. classId +
  16. '&tType=' +
  17. tType +
  18. '&screenType=' +
  19. screenType
  20. )
  21. ">
  22. Back
  23. <!-- <img src="../assets/icon/return.png" alt="" /> -->
  24. </div>
  25. <div class="box_course">
  26. <div class="wheel">
  27. <img style="object-fit: contain" :src="
  28. this.courseDetail.cover != null &&
  29. this.courseDetail.cover != ''
  30. ? JSON.parse(this.courseDetail.cover).length > 0
  31. ? JSON.parse(this.courseDetail.cover)[0].url
  32. : mr
  33. : mr
  34. " alt />
  35. </div>
  36. <div class="right_box">
  37. <div class="rightT">
  38. <div class="right_box_title">{{ courseDetail.title }}</div>
  39. <div class="jd">{{ chapInfo.length }}Stage</div>
  40. <div class="jd">{{ rw }}Task</div>
  41. </div>
  42. <div class="cType">
  43. <div class="all_choose" v-for="(item, index) in courseType" :key="index">
  44. <span style="color: #6c6c6c">{{ item + ":" }}</span>
  45. <span class="type_children" v-for="(item2, index2) in courseTypeJson[item]" :key="index2">{{ item2
  46. }}</span>
  47. </div>
  48. </div>
  49. <div class="cType" style="font-size: 18px; color: #6c6c6c">
  50. <div style="min-width:150px">
  51. Creator:<span style="color: #000">{{
  52. courseDetail.username
  53. }}</span>
  54. </div>
  55. <div class="Tname" v-if="Tname.length > 0">
  56. Collaborators:<span v-for="(tname, tIndex) in Tname" :key="tIndex" style="margin: 0 5px; color: #000">{{ tname
  57. }}</span>
  58. </div>
  59. </div>
  60. <div class="people">
  61. <div class="man">
  62. <img src="@/assets/people.png" alt />
  63. </div>
  64. <div class="person">
  65. {{ courseDetail.vcount != null ? courseDetail.vcount : 0 }}人
  66. </div>
  67. </div>
  68. <div class="now_study" @click="dialogVisible = true">
  69. Start Learning Now
  70. </div>
  71. </div>
  72. </div>
  73. </div>
  74. <div class="student_body">
  75. <div class="sLeft" v-if="courseDetail.brief">
  76. <div class="courseT">Project Details</div>
  77. <div class="courseTd">{{ courseDetail.brief }}</div>
  78. </div>
  79. <div :class="courseDetail.brief != '' ? 'rightTd' : 'noBRight'">
  80. <div class="blue_box_one" v-for="(item, index) in chapInfo" :key="index" @click="addUserRate(index)">
  81. <div>No.{{ index + 1 }}Stage</div>
  82. <div :title="item.dyName">{{ item.dyName }}</div>
  83. <div>{{ item.chapterInfo[0].taskJson.length }}Tasks</div>
  84. </div>
  85. </div>
  86. </div>
  87. <!-- <div
  88. style="
  89. text-align: center;
  90. padding: 30px 0 20px 0;
  91. box-sizing: border-box;
  92. "
  93. >
  94. 此处滚动加载..
  95. </div>-->
  96. <el-dialog title="Stage Selection" :visible.sync="dialogVisible" :append-to-body="true" width="700px"
  97. :before-close="handleClose" class="dialog_change">
  98. <div style="font-size: 20px">Please Select a Stage</div>
  99. <div style="
  100. padding: 20px 30px;
  101. display: flex;
  102. flex-direction: row;
  103. flex-wrap: wrap;
  104. ">
  105. <div class="blue_box" v-for="(item, index) in chapInfo" :key="index" @click="addUserRate(index)">
  106. <div>No.{{ index + 1 }}Stage</div>
  107. <div>{{ item.dyName }}</div>
  108. <div>{{ item.chapterInfo[0].taskJson.length }}Tasks</div>
  109. </div>
  110. </div>
  111. </el-dialog>
  112. </div>
  113. </div>
  114. </div>
  115. </template>
  116. <script>
  117. export default {
  118. data() {
  119. return {
  120. choose: 0,
  121. dialogVisible: false,
  122. id: this.$route.query.courseId,
  123. userid: this.$route.query.userid,
  124. oid: this.$route.query.oid,
  125. org: this.$route.query.org,
  126. classId: this.$route.query.cid,
  127. tType: this.$route.query.tType,
  128. screenType: this.$route.query.screenType,
  129. courseDetail: {},
  130. aStudentName: [],
  131. chapInfo: [],
  132. courseType: [],
  133. Tname: [],
  134. courseTypeJson: {},
  135. userinfo: [],
  136. mr: require("@/assets/icon/wheel.png"),
  137. rw: 0,
  138. };
  139. },
  140. methods: {
  141. handleClose(done) {
  142. done();
  143. },
  144. goTo(path) {
  145. this.$router.push(path);
  146. },
  147. addUserRate(i) {
  148. // var suid = this.userid;
  149. // if (
  150. // JSON.parse(this.courseDetail.course_student).indexOf(suid) == -1 &&
  151. // JSON.parse(this.courseDetail.userid) != suid
  152. // ) {
  153. // this.$message.error("你没有该权限");
  154. // return;
  155. // }
  156. // var a =
  157. // this.courseDetail.course_student != ""
  158. // ? JSON.parse(this.courseDetail.course_student)
  159. // : "";
  160. // if (this.courseDetail.userid != suid) {
  161. // if (this.userinfo.type == 2) {
  162. // if (a != "") {
  163. // if (
  164. // JSON.parse(this.courseDetail.course_student).indexOf(suid) == -1
  165. // ) {
  166. // this.$message.error("你没有该权限");
  167. // return;
  168. // }
  169. // } else {
  170. // this.$message.error("暂无项目学员,请联系老师添加项目学员!");
  171. // return;
  172. // }
  173. // }
  174. // }
  175. let params = {
  176. uid: this.userid,
  177. cid: this.id,
  178. };
  179. this.ajax
  180. .get(this.$store.state.api + "addUserR", params)
  181. .then((res) => {
  182. console.log(res.data);
  183. this.updateVc();
  184. if (this.tType == 1 || this.tType == 2 || this.tType == 4) {
  185. this.goTo(
  186. "/studyStudentGM?type=" +
  187. i +
  188. "&courseId=" +
  189. this.id +
  190. "&userid=" +
  191. this.userid +
  192. "&oid=" +
  193. this.oid +
  194. "&org=" +
  195. this.org +
  196. "&cid=" +
  197. this.classId +
  198. "&tType=" +
  199. this.tType +
  200. "&screenType=" +
  201. this.screenType
  202. );
  203. }
  204. // else {
  205. // this.goTo(
  206. // "/study?type=" +
  207. // i +
  208. // "&courseId=" +
  209. // this.id +
  210. // "&userid=" +
  211. // this.userid +
  212. // "&oid=" +
  213. // this.oid +
  214. // "&org=" +
  215. // this.org +
  216. // "&cid=" +
  217. // this.classId +
  218. // "&tType=" +
  219. // this.tType +
  220. // "&screenType=" +
  221. // this.screenType
  222. // );
  223. // }
  224. })
  225. .catch((err) => {
  226. console.error(err);
  227. });
  228. },
  229. updateVc() {
  230. let params = {
  231. cid: this.id,
  232. };
  233. this.ajax
  234. .get(this.$store.state.api + "updateVc", params)
  235. .then((res) => {
  236. console.log(res.data);
  237. })
  238. .catch((err) => {
  239. console.error(err);
  240. });
  241. },
  242. getCourseDetail() {
  243. const loading = this.$loading.service({
  244. background: "rgba(255, 255, 255, 0.7)",
  245. target: document.querySelector(".student_table"),
  246. });
  247. let params = {
  248. courseId: this.id,
  249. };
  250. this.ajax
  251. .get(this.$store.state.api + "selectCourseDetail", params)
  252. .then((res) => {
  253. loading.close();
  254. // this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
  255. this.courseDetail = res.data[0][0];
  256. var a = res.data[0];
  257. var b = res.data[1];
  258. var c = res.data[2];
  259. for (var i = 0; i < b.length; i++) {
  260. // if (!this.id) {
  261. // this.courseType[b[i].id] = [];
  262. // }
  263. for (var j = 0; j < a.length; j++) {
  264. if (b[i].id == a[j].pid) {
  265. if (!this.courseTypeJson[b[i].name]) {
  266. this.courseType.push(b[i].name);
  267. this.courseTypeJson[b[i].name] = [];
  268. }
  269. this.courseTypeJson[b[i].name].push(a[j].name);
  270. }
  271. }
  272. }
  273. for (var k = 0; k < c.length; k++) {
  274. this.Tname.push(c[k].name);
  275. }
  276. console.log(this.courseTypeJson.length);
  277. this.aStudentName = res.data[2];
  278. this.chapInfo = JSON.parse(this.courseDetail.chapters);
  279. for (var z = 0; z < this.chapInfo.length; z++) {
  280. this.rw += this.chapInfo[z].chapterInfo[0].taskJson.length;
  281. }
  282. })
  283. .catch((err) => {
  284. loading.close();
  285. console.error(err);
  286. });
  287. },
  288. getUser() {
  289. let params = { uid: this.userid };
  290. this.ajax
  291. .get(this.$store.state.api + "getUser", params)
  292. .then((res) => {
  293. this.userinfo = res.data[0][0];
  294. })
  295. .catch((err) => {
  296. console.error(err);
  297. });
  298. },
  299. // getSName() {
  300. // let params = {
  301. // uid: JSON.stringify(this.courseDetail.course_student),
  302. // };
  303. // this.ajax
  304. // .get(this.$store.state.api + "selectSName", params)
  305. // .then((res) => {
  306. // this.aStudentName = res.data[0];
  307. // })
  308. // .catch((err) => {
  309. // console.error(err);
  310. // });
  311. // },
  312. },
  313. created() {
  314. this.getCourseDetail();
  315. this.getUser();
  316. document.scrollingElement.scrollTop = 0;
  317. // this.getSName();
  318. },
  319. };
  320. </script>
  321. <style scoped>
  322. @media screen and (max-width: 1024px) {
  323. .Tname {
  324. width: 500px;
  325. white-space: nowrap;
  326. overflow: hidden;
  327. text-overflow: ellipsis;
  328. }
  329. }
  330. .body_student {
  331. margin: 10px auto;
  332. width: 98%;
  333. height: 100%;
  334. }
  335. .student_head {
  336. width: 100%;
  337. background: #fff;
  338. height: 30%;
  339. position: relative;
  340. }
  341. .wheel {
  342. width: 250px;
  343. max-height: 146px;
  344. display: flex;
  345. align-items: center;
  346. }
  347. .man {
  348. width: 16px;
  349. height: 16px;
  350. }
  351. .wheel>img,
  352. .man>img {
  353. width: 100%;
  354. height: 100%;
  355. }
  356. .box_course {
  357. display: flex;
  358. padding: 25px 0 20px 60px;
  359. }
  360. .right_box {
  361. display: flex;
  362. flex-direction: column;
  363. margin-left: 30px;
  364. align-items: flex-start;
  365. width: calc(100% - 350px);
  366. }
  367. .right_box_title {
  368. font-size: 23px;
  369. max-width: calc(100% - 190px);
  370. white-space: nowrap;
  371. overflow: hidden;
  372. text-overflow: ellipsis;
  373. }
  374. .people {
  375. display: flex;
  376. margin-top: 20px;
  377. }
  378. .person {
  379. margin-left: 10px;
  380. line-height: 18px;
  381. }
  382. .now_study {
  383. width: 150px;
  384. height: 35px;
  385. color: #fff;
  386. background: #5c538a;
  387. text-align: center;
  388. line-height: 35px;
  389. border-radius: 5px;
  390. font-size: 13px;
  391. cursor: pointer;
  392. margin-top: 30px;
  393. }
  394. .choose_who {
  395. display: flex;
  396. margin: 15px 0 0 25px;
  397. }
  398. .who_choose {
  399. height: 28px;
  400. cursor: pointer;
  401. }
  402. .choose_who>div:nth-child(2) {
  403. margin-left: 35px;
  404. }
  405. .choose {
  406. border-bottom: 5px solid #4a9eed;
  407. color: #4a9eed;
  408. }
  409. .student_body {
  410. display: flex;
  411. }
  412. .student_body,
  413. .right {
  414. width: 100%;
  415. margin: 10px auto;
  416. min-height: 688px;
  417. }
  418. .nav {
  419. margin: auto 25px;
  420. width: 80%;
  421. padding-top: 5px;
  422. text-indent: 25px;
  423. }
  424. .pic {
  425. width: 100%;
  426. display: flex;
  427. flex-direction: row;
  428. flex-wrap: wrap;
  429. height: 100%;
  430. justify-content: space-evenly;
  431. }
  432. .Img {
  433. /*width: 30%; */
  434. width: 300px;
  435. margin: 20px 50px;
  436. margin: 20px 10px;
  437. border: 1px solid #dbdbdb;
  438. border-radius: 5px;
  439. overflow: hidden;
  440. }
  441. .Img>img {
  442. width: 100%;
  443. height: 100%;
  444. }
  445. .student_body_one,
  446. .right_one {
  447. width: 100%;
  448. margin: 0 auto;
  449. background: #fff;
  450. margin-top: 10px;
  451. min-height: 688px;
  452. }
  453. .student {
  454. width: 85%;
  455. display: flex;
  456. flex-direction: row;
  457. flex-wrap: wrap;
  458. justify-content: flex-start;
  459. margin: auto 10px;
  460. }
  461. .student>div {
  462. width: 12%;
  463. height: 35px;
  464. background: #e3759a;
  465. text-align: center;
  466. border: 1px solid #e3759a;
  467. border-radius: 5px;
  468. color: #fff;
  469. line-height: 35px;
  470. margin: 10px;
  471. }
  472. .dialog_change>>>.el-dialog {
  473. border-radius: 5px;
  474. }
  475. .dialog_change>>>.el-dialog__header {
  476. background: #303030;
  477. height: 36px;
  478. line-height: 36px;
  479. padding-left: 10px;
  480. padding: 0px 10px 0px;
  481. }
  482. .dialog_change>>>.el-dialog__headerbtn {
  483. top: 10px !important;
  484. right: 10px !important;
  485. }
  486. .dialog_change>>>.el-dialog__title {
  487. color: #fff;
  488. font-size: 14px;
  489. line-height: 5px;
  490. }
  491. .dialog_change>>>.el-dialog__body {
  492. background: #f5f5f5;
  493. }
  494. .blue_box {
  495. align-items: center;
  496. display: flex;
  497. flex-direction: column;
  498. justify-content: center;
  499. }
  500. .blue_box,
  501. .blue_box_one {
  502. width: 30%;
  503. height: 100px;
  504. text-align: center;
  505. color: #fff;
  506. background-image: linear-gradient(90deg, #967fe0, #65b9fc);
  507. border-radius: 15px;
  508. margin: 15px 0 15px 15px;
  509. cursor: pointer;
  510. }
  511. .blue_box_one {
  512. width: 200px;
  513. height: 200px;
  514. background-image: linear-gradient(90deg, #967fe0, #65b9fc);
  515. display: flex;
  516. flex-direction: column;
  517. flex-wrap: nowrap;
  518. align-items: center;
  519. justify-content: center;
  520. }
  521. .blue_box_one>div {
  522. margin: 5px 0;
  523. }
  524. .blue_box_one>div:nth-child(1) {
  525. font-size: 20px;
  526. font-weight: bold;
  527. }
  528. .blue_box>div:nth-child(2) {
  529. margin-top: 10px;
  530. }
  531. .blue_box_one>div:nth-child(2) {
  532. white-space: nowrap;
  533. text-overflow: ellipsis;
  534. overflow: hidden;
  535. word-break: break-all;
  536. width: 100%;
  537. text-align: center;
  538. max-width: calc(100% - 85px);
  539. margin: 0 auto;
  540. }
  541. .return {
  542. background: #205cc6;
  543. width: 70px;
  544. height: 30px;
  545. color: #fff;
  546. text-align: center;
  547. line-height: 32px;
  548. margin-right: 20px;
  549. cursor: pointer;
  550. border-radius: 5px;
  551. position: absolute;
  552. right: 0;
  553. top: 24px;
  554. font-size: 14px;
  555. }
  556. .return>img {
  557. width: 100%;
  558. height: 100%;
  559. }
  560. .cType {
  561. display: flex;
  562. flex-direction: row;
  563. justify-content: center;
  564. align-items: center;
  565. margin-top: 20px;
  566. }
  567. .cType>div>span {
  568. font-size: 18px;
  569. }
  570. .type_children+.type_children {
  571. margin-left: 10px;
  572. }
  573. .all_choose {
  574. margin-right: 10px;
  575. max-width: 250px;
  576. white-space: nowrap;
  577. overflow: hidden;
  578. text-overflow: ellipsis;
  579. }
  580. .rightT {
  581. display: flex;
  582. flex-direction: row;
  583. flex-wrap: nowrap;
  584. align-items: center;
  585. width: calc(100% - 20px);
  586. }
  587. .jd {
  588. background: #5c538a;
  589. margin-left: 15px;
  590. border-radius: 10px;
  591. color: #fff;
  592. width: 70px;
  593. height: 25px;
  594. text-align: center;
  595. line-height: 25px;
  596. }
  597. .sLeft {
  598. width: 14%;
  599. margin-right: 10px;
  600. background: rgb(255, 255, 255);
  601. padding: 20px 0 0 15px;
  602. border-radius: 10px;
  603. }
  604. .courseT {
  605. border-left: 3px solid #7960d5;
  606. padding-left: 5px;
  607. color: #7960d5;
  608. font-weight: bold;
  609. }
  610. .courseTd {
  611. padding-top: 15px;
  612. height: 700px;
  613. overflow: auto;
  614. word-break: break-word;
  615. }
  616. .courseTd::-webkit-scrollbar {
  617. /*滚动条整体样式*/
  618. width: 6px;
  619. /*高宽分别对应横竖滚动条的尺寸*/
  620. height: 6px;
  621. }
  622. /*定义滚动条轨道 内阴影+圆角*/
  623. .courseTd::-webkit-scrollbar {
  624. border-radius: 10px;
  625. background-color: #eee;
  626. }
  627. /*定义滑块 内阴影+圆角*/
  628. .courseTd::-webkit-scrollbar-thumb {
  629. border-radius: 10px;
  630. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  631. background-color: rgba(0, 0, 0, 0.1);
  632. }
  633. .rightTd,
  634. .noBRight {
  635. width: 84%;
  636. background: #fff;
  637. display: flex;
  638. flex-direction: row;
  639. flex-wrap: wrap;
  640. align-content: flex-start;
  641. align-items: center;
  642. justify-content: flex-start;
  643. }
  644. .noBRight {
  645. width: 100%;
  646. }
  647. .Tname {
  648. margin-left: 40px;
  649. word-break: break-all;
  650. }
  651. </style>