scourse.vue 26 KB

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