course.vue 26 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085
  1. <template>
  2. <div class="pb_content" style="height: auto">
  3. <div class="pb_head top">
  4. <div>
  5. <span>{{orgArray.indexOf(org) != -1 || oidArray.indexOf(oid) != -1 ? "师生项目" : "学生项目"}}</span>
  6. <!-- <span class="subClick" @click="
  7. goTo('/works?userid=' + userid + '&oid=' + oid + '&org=' + org)
  8. ">评价管理</span> -->
  9. </div>
  10. <div class="student_button">
  11. <!-- <el-button type="primary" class="bgColor" @click="openCourse">协同编辑</el-button> -->
  12. <el-button type="primary" class="bgColor" @click="goToCourse()">添加项目</el-button>
  13. </div>
  14. </div>
  15. <div class="pb_content_body" style="height: 100%">
  16. <div class="student_head">
  17. <div class="choose">
  18. <!-- <div class="student_search">
  19. <span>项目筛选</span>
  20. <el-select v-model="groupA" @change="search">
  21. <el-option value="0" label="我的项目"></el-option>
  22. <el-option value="1" label="他人项目"></el-option>
  23. </el-select>
  24. </div> -->
  25. <div class="all_choose" v-for="(item, index) in CourseType[0]" :key="index">
  26. <span>{{ item.name }}</span>
  27. <el-select v-model="courseTypeId[item.id]" placeholder="请选择" @change="getTypeName">
  28. <el-option label="全部" value="1">全部</el-option>
  29. <el-option v-for="item1 in CourseTypeJson[item.id]" :key="item1.id" :label="item1.name" :value="item1.id">
  30. </el-option>
  31. </el-select>
  32. </div>
  33. <div @click="clear" class="clear">重置</div>
  34. </div>
  35. <div class="student_right">
  36. <div class="head_left">
  37. <el-input v-model="courseName" class="student_input" placeholder="请输入项目名称"></el-input>
  38. <el-button class="course_button" @click="searchCourse">查询</el-button>
  39. </div>
  40. </div>
  41. </div>
  42. <div class="student_table" v-loading="isLoading">
  43. <div class="course_box">
  44. <div class="out_box" v-for="(item, index) in course" :key="index">
  45. <div class="myCourse" v-if="item.isCourseType == 1 && groupA == 0">
  46. 我的项目
  47. </div>
  48. <div class="myCourse" v-else-if="groupA == 1">
  49. 他人项目
  50. </div>
  51. <div class="xtCourse" v-else>协同项目</div>
  52. <div class="tup">
  53. <img :src="
  54. item.cover != null && item.cover != ''
  55. ? JSON.parse(item.cover).length > 0
  56. ? JSON.parse(item.cover)[0].url
  57. : mr
  58. : mr
  59. " alt />
  60. </div>
  61. <!-- <div class="bottom_box">
  62. <div>{{ item.title }}</div>
  63. <div class="kc_t" v-if="groupA == '1'">
  64. 创建老师:{{ item.uname }}
  65. </div>
  66. <div class="kc_time">{{ item.time }}</div>
  67. </div> -->
  68. <div class="bottom_box">
  69. <div>{{ item.title }}</div>
  70. <div class="kc_t" v-if="item.isCourseType == 2 || groupA == 1">
  71. 负责人:{{ item.uname }}
  72. </div>
  73. <div class="kc_time">
  74. <span style="color: #4b4b4b">创建日期:</span>{{ item.time }}
  75. </div>
  76. <div class="kc_time">
  77. <span style="color: #4b4b4b">修改日期:</span>{{ item.utime }}
  78. </div>
  79. </div>
  80. <div class="three_bottom">
  81. <div @click="jump(item.courseId)">评论</div>
  82. <div @click="get(item.courseId)">预览</div>
  83. <div @click="getA(item.courseId)">项目进展</div>
  84. <div v-if="groupA == '0'" @click="goToCourse(item.courseId)">
  85. 修改
  86. </div>
  87. <!-- <div v-if="groupA == '0'" @click="
  88. goTo(
  89. '/works?cid=' +
  90. item.courseId +
  91. '&userid=' +
  92. userid +
  93. '&oid=' +
  94. oid +
  95. '&org=' +
  96. org
  97. )
  98. ">
  99. 报告
  100. </div> -->
  101. <div v-if="(item.isCourseType == 1)" @click="deleteCourse(item.courseId)">
  102. 删除
  103. </div>
  104. <!-- <div class="more">
  105. <span style="font-size:18px;font-weight:700">...</span>
  106. <div>
  107. <span @click="copyCourse(item.courseId)">复制</span>
  108. <span @click="get(item.courseId)">查看</span>
  109. </div>
  110. </div> -->
  111. </div>
  112. </div>
  113. <div class="course_empty" v-if="course.length == 0">暂无数据</div>
  114. </div>
  115. </div>
  116. </div>
  117. <div class="student_page">
  118. <el-pagination background layout="prev, pager, next" :page-size="10" :total="total" v-if="page && course.length"
  119. style="padding-bottom: 20px" @current-change="handleCurrentChange"></el-pagination>
  120. </div>
  121. <el-dialog :visible.sync="dialogVisible1" size="tiny">
  122. <img width="100%" :src="dialogImageUrl" alt />
  123. </el-dialog>
  124. <el-dialog title="查看提问" :visible.sync="dialogVisible" :append-to-body="true" width="750px"
  125. :before-close="handleClose" class="dialog_diy">
  126. <div>
  127. <div class="a_addBox">
  128. <CourseProblem :problemCourse="problemCourse"></CourseProblem>
  129. </div>
  130. </div>
  131. <span slot="footer" class="dialog-footer">
  132. <el-button @click="dialogVisible = false">关 闭</el-button>
  133. </span>
  134. </el-dialog>
  135. <el-dialog title="查看协同项目" :visible.sync="dialogVisibleCourse" :append-to-body="true" width="850px"
  136. :before-close="handleClose" class="dialog_diy">
  137. <div class="ct_box">
  138. <div class="out_box" v-for="(item, index) in courseTeam" :key="index" style="margin-left: 15px">
  139. <div class="tup">
  140. <img :src="
  141. item.cover != null && item.cover != ''
  142. ? JSON.parse(item.cover).length > 0
  143. ? JSON.parse(item.cover)[0].url
  144. : mr
  145. : mr
  146. " alt />
  147. </div>
  148. <div class="bottom_box">
  149. <div>{{ item.title }}</div>
  150. <div class="kc_t">创建人:{{ item.uname }}</div>
  151. <div class="kc_time">{{ item.time }}</div>
  152. </div>
  153. <div class="three_bottom">
  154. <div @click="get(item.courseId)">查看内容</div>
  155. <div @click="getA(item.courseId)">项目进展</div>
  156. <div @click="
  157. goTo(
  158. '/studentAddCourse?cid=' +
  159. item.courseId +
  160. '&userid=' +
  161. userid +
  162. '&oid=' +
  163. oid +
  164. '&org=' +
  165. org
  166. )
  167. ">
  168. 编辑
  169. </div>
  170. </div>
  171. </div>
  172. <div class="course_empty" v-if="courseTeam.length == 0">暂无数据</div>
  173. </div>
  174. <span slot="footer" class="dialog-footer">
  175. <el-button @click="dialogVisibleCourse = false">关 闭</el-button>
  176. </span>
  177. </el-dialog>
  178. </div>
  179. </template>
  180. <script>
  181. import "../../../common/aws-sdk-2.235.1.min";
  182. import EditorBar from "../../../components/tools/wangEnduit";
  183. import CourseProblem from "../components/courseProblem";
  184. export default {
  185. components: { EditorBar, CourseProblem },
  186. data() {
  187. return {
  188. itemCount: 1,
  189. courseTitle: "",
  190. courseText: "",
  191. courseTime: "",
  192. isLoading: false,
  193. fileList: [],
  194. fileList1: [],
  195. homeworkList: [{ name: "" }],
  196. formLabelWidth: "100px",
  197. dialogVisible: false,
  198. dialogVisible1: false,
  199. dialogVisibleCourse: false,
  200. dialogImageUrl: "",
  201. group: "",
  202. userid: this.$route.query.userid,
  203. oid: this.$route.query.oid,
  204. org: this.$route.query.org,
  205. orgArray:["150e3120-9195-11ed-b13d-005056b86db5"],
  206. oidArray:[],
  207. Juri: "",
  208. groupList: [],
  209. JuriList: [],
  210. page: 1,
  211. total: 0,
  212. tableData: [],
  213. now: "",
  214. courseDetail: {},
  215. addCourse: {},
  216. groupA: "0",
  217. classX: "",
  218. course: [],
  219. courseName: "",
  220. mr: require("../../../assets/icon/kc1.png"),
  221. CourseType: [],
  222. CourseTypeJson: {},
  223. courseTypeId: {},
  224. courseTypeSon: [],
  225. isChoose: 0,
  226. problemCourse: null, //查看提问的项目
  227. courseTeam: [],
  228. };
  229. },
  230. methods: {
  231. change(val) {
  232. console.log(val);
  233. },
  234. time() {
  235. if (!this.now) {
  236. this.now = new Date().getTime();
  237. return true;
  238. } else {
  239. let time = new Date().getTime();
  240. if (time - this.now > 3000) {
  241. this.now = time;
  242. return true;
  243. } else {
  244. return false;
  245. }
  246. }
  247. },
  248. addHomeworkBox() {
  249. this.homeworkList.push({ name: "" });
  250. this.itemCount++;
  251. },
  252. reduceHomeworkBox() {
  253. var a = this.homeworkList;
  254. a.splice(a.length - 1);
  255. this.itemCount--;
  256. },
  257. goTo(path) {
  258. this.$router.push(path);
  259. },
  260. goToCourse(courseId) {
  261. if (courseId) {
  262. this.$router.push(
  263. "/studentAddCourse?cid=" +
  264. courseId +
  265. "&userid=" +
  266. this.userid +
  267. "&oid=" +
  268. this.oid +
  269. "&org=" +
  270. this.org
  271. );
  272. } else {
  273. this.$router.push(
  274. "/studentAddCourse?userid=" +
  275. this.userid +
  276. "&oid=" +
  277. this.oid +
  278. "&org=" +
  279. this.org
  280. );
  281. }
  282. // this.$router.push(path);
  283. },
  284. tableRowClassName({ row, rowIndex }) {
  285. if ((rowIndex + 1) % 2 === 0) {
  286. return "even_row";
  287. } else {
  288. return "";
  289. }
  290. },
  291. jump(cid) {
  292. // window.open(
  293. // "//pbl.cocorobo.cn/pbl-student-table/dist/#/courseDetail?courseId=" +
  294. // cid +
  295. // "&userid=" +
  296. // this.userid
  297. // );
  298. window.parent.postMessage({ cid: cid, screenType: "2s" }, "*");
  299. },
  300. get(cid) {
  301. window.parent.postMessage({ cid: cid, screenType: "3s" }, "*");
  302. },
  303. getA(cid) {
  304. this.$router.push("/courseProgress?cid=" + cid + "&userid=" +
  305. this.userid +
  306. "&oid=" +
  307. this.oid +
  308. "&org=" +
  309. this.org)
  310. },
  311. handle_remove(file, fileList) {
  312. var _tmp = this.fileList;
  313. for (var i = 0, len = _tmp.length; i < len; i++) {
  314. if (_tmp[i].uid == file.uid) {
  315. _tmp.splice(i, 1);
  316. break;
  317. }
  318. this.fileList = _tmp;
  319. }
  320. },
  321. handle_remove1(file, fileList) {
  322. var _tmp = this.fileList1;
  323. for (var i = 0, len = _tmp.length; i < len; i++) {
  324. if (_tmp[i].uid == file.uid) {
  325. _tmp.splice(i, 1);
  326. break;
  327. }
  328. this.fileList1 = _tmp;
  329. }
  330. },
  331. handleCurrentChange(val) {
  332. // console.log(`当前页: ${val}`);
  333. this.page = val;
  334. this.getCourse();
  335. },
  336. init() { },
  337. handleClose(done) {
  338. done();
  339. },
  340. handleRemove(file, fileList) {
  341. console.log(file, fileList);
  342. },
  343. handlePictureCardPreview(file) {
  344. this.dialogImageUrl = file.url;
  345. this.dialogVisible1 = true;
  346. },
  347. onExceed() {
  348. this.$message.error("项目海报仅支持上传一张,请删除后再进行上传");
  349. },
  350. //uuid生成
  351. guid() {
  352. return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(
  353. /[xy]/g,
  354. function (c) {
  355. var r = (Math.random() * 16) | 0,
  356. v = c == "x" ? r : (r & 0x3) | 0x8;
  357. return v.toString(16);
  358. }
  359. );
  360. },
  361. time() {
  362. if (!this.now) {
  363. this.now = new Date().getTime();
  364. return true;
  365. } else {
  366. let time = new Date().getTime();
  367. if (time - this.now > 3000) {
  368. this.now = time;
  369. return true;
  370. } else {
  371. return false;
  372. }
  373. }
  374. },
  375. searchCourse() {
  376. this.page = 1;
  377. this.getCourse();
  378. },
  379. clear() {
  380. for (var i = 0; i < this.CourseType[0].length; i++) {
  381. this.courseTypeId[this.CourseType[0][i].id] = "";
  382. }
  383. this.getCourse();
  384. },
  385. getCourse() {
  386. var typeE = [];
  387. var typea, typeb, typec, typed;
  388. if (this.isChoose == 1) {
  389. for (var i = 0; i < this.CourseType[0].length; i++) {
  390. if (this.courseTypeId[this.CourseType[0][i].id] == "1") {
  391. typeE.push(this.CourseType[0][i].id);
  392. } else if (this.courseTypeId[this.CourseType[0][i].id] != "") {
  393. if (this.CourseType[0][i].name == "年级") {
  394. typea = this.courseTypeId[this.CourseType[0][i].id];
  395. } else if (this.CourseType[0][i].name == "专栏") {
  396. typeb = this.courseTypeId[this.CourseType[0][i].id];
  397. } else if (this.CourseType[0][i].name == "栏目") {
  398. typeb = this.courseTypeId[this.CourseType[0][i].id];
  399. } else if (this.CourseType[0][i].name == "学院") {
  400. typeb = this.courseTypeId[this.CourseType[0][i].id];
  401. } else if (this.CourseType[0][i].name == "新技能") {
  402. typec = this.courseTypeId[this.CourseType[0][i].id];
  403. } else if (this.CourseType[0][i].name == "学科") {
  404. typed = this.courseTypeId[this.CourseType[0][i].id];
  405. }
  406. this.courseTypeSon.push(
  407. this.courseTypeId[this.CourseType[0][i].id]
  408. );
  409. }
  410. }
  411. }
  412. this.isLoading = true;
  413. let params = {
  414. type: this.groupA,
  415. uid: this.userid,
  416. oid: this.oid,
  417. org: this.org,
  418. typea: typea != undefined ? typea : "",
  419. typeb: typeb != undefined ? typeb : "",
  420. typec: typec != undefined ? typec : "",
  421. typed: typed != undefined ? typed : "",
  422. typeE: typeE.join(","),
  423. cu: "",
  424. cn: this.courseName,
  425. page: this.page,
  426. };
  427. this.ajax
  428. .get(this.$store.state.api + "selectStudentCourseNew2", params)
  429. .then((res) => {
  430. this.isLoading = false;
  431. this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
  432. this.course = res.data[0];
  433. })
  434. .catch((err) => {
  435. console.error(err);
  436. });
  437. },
  438. getTypeName() {
  439. this.$forceUpdate();
  440. this.page = 1;
  441. this.isChoose = 1;
  442. this.getCourse();
  443. },
  444. // searchCourse() {
  445. // this.isLoading = true;
  446. // let params = {
  447. // cu: "",
  448. // cn: this.courseName,
  449. // page: this.page,
  450. // };
  451. // this.ajax
  452. // .get(this.$store.state.api + "searchCourse", params)
  453. // .then((res) => {
  454. // this.isLoading = false;
  455. // this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
  456. // this.course = res.data[0];
  457. // })
  458. // .catch((err) => {
  459. // this.isLoading = false;
  460. // console.error(err);
  461. // });
  462. // },
  463. deleteCourse(cid) {
  464. // if (this.time()) {
  465. this.$confirm("确定删除此项目吗?", "提示", {
  466. confirmButtonText: "确定",
  467. cancelButtonText: "取消",
  468. type: "warning",
  469. })
  470. .then(() => {
  471. this.isLoading = true;
  472. let params = {
  473. cid: cid,
  474. };
  475. this.ajax
  476. .get(this.$store.state.api + "deleteStudentCourse", params)
  477. .then((res) => {
  478. this.isLoading = false;
  479. this.$message.success("删除成功");
  480. if(this.tableData.length == 1 && this.page>1){
  481. this.page--
  482. }
  483. this.getCourse();
  484. })
  485. .catch((err) => {
  486. console.error(err);
  487. });
  488. })
  489. .catch(() => {
  490. loading.close();
  491. this.isLoading = false;
  492. return;
  493. });
  494. // }
  495. },
  496. selectType() {
  497. this.ajax
  498. .get(this.$store.state.api + "selectType")
  499. .then((res) => {
  500. this.CourseType = res.data;
  501. for (var i = 0; i < res.data[0].length; i++) {
  502. if (!this.cid) {
  503. this.courseTypeId[res.data[0][i].id] = "";
  504. }
  505. if (this.oid == "69893dca-1d47-11ed-8c78-005056b86db5") {
  506. if (res.data[0][i].name == "栏目") {
  507. this.CourseType[0][i].name = "主题";
  508. }
  509. }
  510. for (var j = 0; j < res.data[1].length; j++) {
  511. if (res.data[0][i].id == res.data[1][j].pid) {
  512. if (!this.CourseTypeJson[res.data[0][i].id]) {
  513. this.CourseTypeJson[res.data[0][i].id] = [];
  514. }
  515. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]); //去除公共分类
  516. }
  517. }
  518. }
  519. this.selectTypeByOid();
  520. this.selectTypeByOrg();
  521. })
  522. .catch((err) => {
  523. console.error(err);
  524. });
  525. },
  526. selectTypeByOid() {
  527. let params = {
  528. oid: this.oid,
  529. };
  530. this.ajax
  531. .get(this.$store.state.api + "selectTypeByOid", params)
  532. .then((res) => {
  533. for (var i = 0; i < res.data[0].length; i++) {
  534. for (var j = 0; j < res.data[1].length; j++) {
  535. if (res.data[0][i].id == res.data[1][j].pid) {
  536. if (!this.CourseTypeJson[res.data[0][i].id]) {
  537. this.CourseTypeJson[res.data[0][i].id] = [];
  538. }
  539. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]);
  540. }
  541. }
  542. }
  543. this.$forceUpdate();
  544. })
  545. .catch((err) => {
  546. console.error(err);
  547. });
  548. },
  549. selectTypeByOrg() {
  550. let params = {
  551. oid: this.org,
  552. };
  553. this.ajax
  554. .get(this.$store.state.api + "selectTypeByOrg", params)
  555. .then((res) => {
  556. for (var i = 0; i < res.data[0].length; i++) {
  557. for (var j = 0; j < res.data[1].length; j++) {
  558. if (res.data[0][i].id == res.data[1][j].pid) {
  559. if (!this.CourseTypeJson[res.data[0][i].id]) {
  560. this.CourseTypeJson[res.data[0][i].id] = [];
  561. }
  562. this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]);
  563. }
  564. }
  565. }
  566. this.$forceUpdate();
  567. })
  568. .catch((err) => {
  569. console.error(err);
  570. });
  571. },
  572. openCourse() {
  573. this.dialogVisibleCourse = true;
  574. this.getTeamCourse();
  575. },
  576. getTeamCourse() {
  577. let params = {
  578. uid: this.userid,
  579. oid: this.oid,
  580. };
  581. this.ajax
  582. .get(this.$store.state.api + "selectCourseTeam", params)
  583. .then((res) => {
  584. this.courseTeam = res.data[0];
  585. })
  586. .catch((err) => {
  587. console.error(err);
  588. });
  589. },
  590. search() {
  591. this.page = 1;
  592. this.getCourse();
  593. },
  594. checkProblem(res) {
  595. this.problemCourse = res;
  596. this.dialogVisible = true;
  597. },
  598. copyCourse(cid) {
  599. let params = [{
  600. cid: cid,
  601. uid: this.userid
  602. }]
  603. this.ajax
  604. .post(this.$store.state.api + "copyCourse", params)
  605. .then((res) => {
  606. this.page = 1
  607. this.groupA = '0'
  608. this.clear()
  609. })
  610. .catch((err) => {
  611. console.error(err);
  612. });
  613. }
  614. },
  615. created() {
  616. this.page = 1;
  617. this.selectType();
  618. this.getCourse();
  619. },
  620. };
  621. </script>
  622. <style scoped>
  623. .dialog_diy>>>.el-dialog__header {
  624. background: #3d67bc !important;
  625. padding: 15px 20px;
  626. }
  627. .dialog_diy>>>.el-dialog__title {
  628. color: #fff;
  629. }
  630. .dialog_diy>>>.el-dialog__headerbtn {
  631. top: 19px;
  632. }
  633. .dialog_diy>>>.el-dialog__headerbtn .el-dialog__close {
  634. color: #fff;
  635. }
  636. .dialog_diy>>>.el-dialog__headerbtn .el-dialog__close:hover {
  637. color: #fff;
  638. }
  639. .student_head>>>.el-button--primary {
  640. background-color: #2268bc;
  641. }
  642. .xls_button {
  643. font-size: 14px;
  644. cursor: pointer;
  645. text-decoration: underline;
  646. color: rgb(34, 104, 188);
  647. }
  648. .student_head {
  649. display: flex;
  650. justify-content: space-between;
  651. align-items: baseline;
  652. flex-direction: row;
  653. flex-wrap: wrap;
  654. }
  655. .top {
  656. display: flex;
  657. justify-content: space-between;
  658. }
  659. .bgColor {
  660. background: #466b99;
  661. }
  662. .student_search {
  663. display: flex;
  664. align-items: center;
  665. width: calc(100% / 3);
  666. }
  667. .student_search span {
  668. margin: 0 10px 0 0;
  669. min-width: 65px;
  670. }
  671. .student_button {
  672. display: flex;
  673. overflow: hidden;
  674. height: 40px;
  675. }
  676. .upload-demo {
  677. display: flex;
  678. flex-direction: column;
  679. align-items: end;
  680. /* position: relative; */
  681. width: 100px;
  682. overflow: hidden;
  683. }
  684. .student_table {
  685. padding: 20px 0;
  686. height: 100%;
  687. /* overflow: auto; */
  688. min-height: 360px;
  689. }
  690. .student_empty {
  691. display: flex;
  692. justify-content: center;
  693. align-items: center;
  694. }
  695. .el-table>>>.even_row {
  696. background-color: #f1f1f1;
  697. }
  698. .time {
  699. font-size: 13px;
  700. color: #999;
  701. }
  702. .course_button {
  703. padding: 10px 20px;
  704. }
  705. .course_button_box {
  706. display: flex;
  707. margin-top: 5px;
  708. justify-content: space-between;
  709. }
  710. .course_rate {
  711. margin-top: 5px;
  712. }
  713. .course_view {
  714. display: flex;
  715. align-items: center;
  716. margin: 5px 0 0 0;
  717. }
  718. .course_view i {
  719. background-image: url("../../../assets/liulan.png");
  720. width: 25px;
  721. height: 25px;
  722. background-size: 100% 100%;
  723. /* margin-top: 1px; */
  724. line-height: 25px;
  725. vertical-align: text-top;
  726. background-repeat: no-repeat;
  727. }
  728. .image {
  729. width: 100%;
  730. height: 150px;
  731. display: block;
  732. }
  733. .course_box {
  734. display: flex;
  735. flex-wrap: wrap;
  736. }
  737. .student_page {
  738. width: 95%;
  739. margin: 0 auto;
  740. }
  741. .course_create_box {
  742. font-size: 18px;
  743. }
  744. .course_name {
  745. margin-top: 10px;
  746. }
  747. .course_name span {
  748. margin-bottom: 10px;
  749. display: block;
  750. }
  751. .homework_box {
  752. display: flex;
  753. align-items: center;
  754. flex-wrap: wrap;
  755. }
  756. .course_homework {
  757. width: 130px;
  758. display: flex;
  759. justify-content: center;
  760. flex-direction: column;
  761. align-items: center;
  762. margin: 0 10px 10px 0;
  763. }
  764. .course_type {
  765. margin-top: 10px;
  766. display: flex;
  767. }
  768. .course_type1 span {
  769. margin-bottom: 10px;
  770. display: block;
  771. }
  772. .course_type2 {
  773. margin-left: 20px;
  774. }
  775. .course_type2 span {
  776. margin-bottom: 10px;
  777. display: block;
  778. }
  779. .course_empty {
  780. color: rgb(110, 110, 110);
  781. width: 100%;
  782. height: 100%;
  783. display: flex;
  784. align-items: center;
  785. justify-content: center;
  786. }
  787. .el_cards>>>.el-card__body {
  788. height: 100%;
  789. }
  790. .courseBtnBox {
  791. display: flex;
  792. flex-direction: column;
  793. justify-content: space-between;
  794. height: calc(100% - 170px);
  795. padding: 10px;
  796. }
  797. .wordUpload {
  798. display: flex;
  799. }
  800. .wordUpload>.buttonUp {
  801. margin-right: 5px;
  802. }
  803. .out_box {
  804. display: flex;
  805. flex-direction: column;
  806. flex-wrap: nowrap;
  807. width: 250px;
  808. background: #fff;
  809. margin-right: 25px;
  810. border: 1px solid #ccc;
  811. height: fit-content;
  812. box-sizing: border-box;
  813. border-radius: 0px 0px 5px 5px;
  814. /* overflow: hidden; */
  815. margin-bottom: 15px;
  816. position: relative;
  817. }
  818. .bottom_box {
  819. display: flex;
  820. padding: 10px 0 10px 10px;
  821. flex-direction: column;
  822. box-sizing: border-box;
  823. height: 121px;
  824. flex-wrap: nowrap;
  825. justify-content: space-evenly;
  826. }
  827. .bottom_box>div:nth-child(1) {
  828. width: 230px;
  829. overflow: hidden;
  830. text-overflow: ellipsis;
  831. white-space: nowrap;
  832. }
  833. .tup {
  834. width: 100%;
  835. height: 141.06px;
  836. margin: 0 auto;
  837. overflow: hidden;
  838. display: flex;
  839. align-items: center;
  840. }
  841. .tup>img {
  842. width: 100%;
  843. height: 100%;
  844. object-fit: contain;
  845. }
  846. .kc_time {
  847. margin-top: 8px;
  848. font-size: 14px;
  849. color: #999;
  850. }
  851. .kc_t {
  852. margin-top: 5px;
  853. }
  854. .three_bottom {
  855. display: flex;
  856. flex-direction: row;
  857. justify-content: space-around;
  858. height: 40px;
  859. align-items: center;
  860. background: #f5f4f4;
  861. font-size: 14px;
  862. }
  863. .three_bottom>div {
  864. cursor: pointer;
  865. }
  866. .three_bottom>div:hover {
  867. color: #79a2ff;
  868. }
  869. .head_left {
  870. display: flex;
  871. }
  872. .student_input>>>.el-input__inner {
  873. height: 40px;
  874. width: 190px;
  875. font-size: 13px;
  876. padding: 0 10px;
  877. }
  878. .course_button {
  879. color: #fff;
  880. background: #2268bc;
  881. width: 75px;
  882. height: 40px;
  883. padding: 0 !important;
  884. font-size: 12px;
  885. line-height: 40px;
  886. }
  887. .all_choose {
  888. margin: 15px 0 10px;
  889. height: 20%;
  890. display: flex;
  891. flex-direction: row;
  892. align-items: center;
  893. width: calc(100% / 3 - 50px);
  894. }
  895. .all_choose>span {
  896. width: 50px;
  897. display: block;
  898. }
  899. .choose {
  900. display: flex;
  901. flex-direction: row;
  902. flex-wrap: wrap;
  903. align-content: space-between;
  904. height: 100%;
  905. justify-content: flex-start;
  906. width: 60%;
  907. min-width: 868px;
  908. align-items: center;
  909. }
  910. .choose>div:nth-child(2) {
  911. margin-left: 1%;
  912. width: 32.33333%;
  913. }
  914. /* .choose>div:nth-child(4) {
  915. margin-right: 1%;
  916. width: 32.33333%;
  917. } */
  918. .choose>div:nth-child(5) {
  919. margin: 5px 0 0 1%;
  920. }
  921. .choose>div:nth-child(4)>span {
  922. width: 74px !important;
  923. min-width: 74px;
  924. }
  925. .choose>div:nth-child(4)>>>.el-select {
  926. width: 217.5px;
  927. min-width: 215.06px;
  928. }
  929. .clear {
  930. width: 70px;
  931. height: 35px;
  932. background: #2268bc;
  933. color: #fff;
  934. text-align: center;
  935. border-radius: 5px;
  936. line-height: 35px;
  937. cursor: pointer;
  938. margin-left: 20px;
  939. }
  940. .ct_box {
  941. height: 500px;
  942. overflow: auto;
  943. display: flex;
  944. flex-wrap: wrap;
  945. }
  946. .myCourse {
  947. position: absolute;
  948. background: #3c3c3c;
  949. width: 70px;
  950. height: 30px;
  951. border-radius: 30px;
  952. color: #fff;
  953. font-size: 14px;
  954. text-align: center;
  955. line-height: 30px;
  956. top: 5px;
  957. left: 5px;
  958. }
  959. .xtCourse {
  960. position: absolute;
  961. background: #41a5f0;
  962. width: 70px;
  963. height: 30px;
  964. border-radius: 30px;
  965. color: #fff;
  966. font-size: 14px;
  967. text-align: center;
  968. line-height: 30px;
  969. top: 5px;
  970. left: 5px;
  971. }
  972. .subClick {
  973. font-size: 16px;
  974. cursor: pointer;
  975. margin-left: 10px;
  976. /* color: #ab582f; */
  977. color: #409eff;
  978. }
  979. .more {
  980. position: relative;
  981. }
  982. .more:hover div {
  983. display: block;
  984. color: #000;
  985. }
  986. .more div {
  987. position: absolute;
  988. bottom: 0px;
  989. transform: translate(-50%, 100%);
  990. background: #f5f4f4;
  991. padding: 10px 20px;
  992. z-index: 99;
  993. width: 40px;
  994. border-radius: 5px;
  995. box-shadow: 0 0 3px 3px #80808020;
  996. display: none;
  997. }
  998. .more div>span+span {
  999. margin-top: 10px;
  1000. }
  1001. .more div>span {
  1002. display: block;
  1003. width: 100%;
  1004. text-align: center;
  1005. }
  1006. .more div>span:hover {
  1007. color: #79a2ff;
  1008. }
  1009. </style>