worksDetail.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744
  1. <template>
  2. <div class="pb_content">
  3. <div class="pb_head">
  4. <span>评价管理</span>
  5. <!-- <span>备注:教师可以根据课程、班级条件筛选学生并查看该学生信息</span> -->
  6. </div>
  7. <div class="pb_content_body">
  8. <div class="student_head">
  9. <div class="student_search">
  10. <div>项目筛选</div>
  11. <el-select
  12. v-model="subject"
  13. placeholder="请选择课程"
  14. @change="searchWork"
  15. >
  16. <el-option label="所有课程" value=""></el-option>
  17. <el-option
  18. v-for="(item, index) in subjectJuri"
  19. :key="index"
  20. :label="item.name"
  21. :value="item.id"
  22. ></el-option>
  23. </el-select>
  24. <el-select
  25. v-model="sClass"
  26. placeholder="请选择班级"
  27. @change="searchWork"
  28. >
  29. <el-option label="所有班级" value=""></el-option>
  30. <el-option
  31. v-for="(item, index) in grade"
  32. :key="index"
  33. :label="item.name"
  34. :value="item.id"
  35. ></el-option>
  36. </el-select>
  37. </div>
  38. </div>
  39. <div class="student_table">
  40. <el-table
  41. ref="table"
  42. :data="tableData"
  43. border
  44. :height="tableHeight"
  45. :fit="true"
  46. v-loading="isLoading"
  47. style="width: 100%"
  48. :header-cell-style="{ background: '#f1f1f1' }"
  49. :row-class-name="tableRowClassName"
  50. stripe
  51. >
  52. <el-table-column
  53. prop="sName"
  54. label="姓名"
  55. min-width="15"
  56. align="center"
  57. ></el-table-column>
  58. <el-table-column
  59. prop="class"
  60. label="班级"
  61. min-width="20"
  62. align="center"
  63. ></el-table-column>
  64. <el-table-column
  65. prop="course"
  66. label="课程"
  67. min-width="20"
  68. align="center"
  69. ></el-table-column>
  70. <el-table-column
  71. prop="time"
  72. label="时间"
  73. min-width="15"
  74. align="center"
  75. ></el-table-column>
  76. <el-table-column label="操作" min-width="30">
  77. <template slot-scope="scope">
  78. <el-button
  79. type="primary"
  80. size="small"
  81. @click="lookWork(scope.row.id)"
  82. >查看作业</el-button
  83. >
  84. <el-button
  85. class="de_button"
  86. type="primary"
  87. size="small"
  88. @click="deleteWork(scope.row.id)"
  89. >删除</el-button
  90. >
  91. </template>
  92. </el-table-column>
  93. </el-table>
  94. <el-dialog
  95. :visible.sync="dialogVisible"
  96. :append-to-body="true"
  97. width="700px"
  98. :before-close="handleClose"
  99. class="add_work"
  100. >
  101. <div slot="title" class="header-title">
  102. <div class="logoImg">
  103. <img src="../../assets/logo.png" alt="" />
  104. </div>
  105. <div class="title_add_student">查看作业</div>
  106. </div>
  107. <div class="top">
  108. <div>{{ this.courseByUser }}</div>
  109. <div>{{ this.userName }}</div>
  110. </div>
  111. <div class="first">
  112. <div class="one_top">
  113. <div>一、{{ this.courseByUser }} - {{ this.userName }}</div>
  114. <el-button>已评分</el-button>
  115. </div>
  116. <div class="work_Img">
  117. <img src="../../assets/workImg.png" alt="" />
  118. </div>
  119. <div class="work_input">
  120. <div>早梅</div>
  121. </div>
  122. <div class="poetry">
  123. 一树寒梅白玉条,林村路傍溪桥.唐张谓《早梅》
  124. </div>
  125. </div>
  126. <div class="first">
  127. <div class="one_top">
  128. <div>一、{{ this.courseByUser }}2 - {{ this.userName }}</div>
  129. <el-button class="assess" @click="doingAssess"
  130. >进行评分</el-button
  131. >
  132. </div>
  133. <div class="work_Img">
  134. <img src="../../assets/workImg.png" alt="" />
  135. </div>
  136. <div class="work_input">
  137. <div>{{ this.answerName }}</div>
  138. </div>
  139. <div class="poetry">雨荒深院菊,霜倒半池莲.唐杜甫《宿赞公房》</div>
  140. </div>
  141. </el-dialog>
  142. <el-dialog
  143. :visible.sync="dialogVisible1"
  144. :append-to-body="true"
  145. width="700px"
  146. :before-close="handleClose"
  147. class="add_work"
  148. >
  149. <div slot="title" class="header-title">
  150. <div class="logoImg">
  151. <img src="../../assets/logo.png" alt="" />
  152. </div>
  153. <div class="title_add_student">查看作业</div>
  154. </div>
  155. <div class="assess_top">
  156. <div>{{ this.courseByUser }} - {{ this.userName }}</div>
  157. </div>
  158. <div class="assess_Img">
  159. <img src="../../assets/workImg.png" alt="" />
  160. </div>
  161. <div class="workName">{{ this.answerName }}</div>
  162. <div class="student_Answer">
  163. <div class="toux">
  164. <img src="../../assets/portal.png" alt="" />
  165. </div>
  166. <div class="nav">
  167. <div class="studentName">{{ this.userName }}</div>
  168. <div class="studentAnswer">{{ this.studentAnswer }}</div>
  169. </div>
  170. </div>
  171. <div class="comment">
  172. <div class="comment_title">
  173. 评论<span>({{ this.commentCount }})</span>
  174. </div>
  175. <div class="other_Answer">
  176. <div class="toux">
  177. <img src="../../assets/portal.png" alt="" />
  178. </div>
  179. <div class="nav">
  180. <div class="nameAndTime">
  181. <div class="otherName">{{ this.commentName }}</div>
  182. <div class="time">{{ this.commentTime }}</div>
  183. </div>
  184. <div class="otherAnswer">{{ this.commentAnswer }}</div>
  185. </div>
  186. </div>
  187. <div class="other_Answer">
  188. <div class="toux">
  189. <img src="../../assets/portal.png" alt="" />
  190. </div>
  191. <div class="nav">
  192. <div class="nameAndTime">
  193. <div class="otherName">{{ this.commentName }}</div>
  194. <div class="time">{{ this.commentTime }}</div>
  195. </div>
  196. <div class="otherAnswer">{{ this.commentAnswer }}</div>
  197. </div>
  198. </div>
  199. </div>
  200. <div class="doingAssess" @click="giveScore">进行评分</div>
  201. </el-dialog>
  202. <el-dialog
  203. :visible.sync="dialogVisible2"
  204. :append-to-body="true"
  205. width="700px"
  206. :before-close="handleClose"
  207. class="add_work"
  208. >
  209. <div slot="title" class="header-title">
  210. <div class="logoImg">
  211. <img src="../../assets/logo.png" alt="" />
  212. </div>
  213. <div class="title_add_student">评分</div>
  214. </div>
  215. <div class="score_top">
  216. <div class="userTou">
  217. <img src="../../assets/portal.png" alt="" />
  218. </div>
  219. <div class="score_user_name">{{ this.userName }}</div>
  220. </div>
  221. <div class="course_top">
  222. <div>课程名称</div>
  223. <div>{{ this.courseByUser }}</div>
  224. </div>
  225. <div class="sd_score">
  226. <div class="score_box">
  227. <span>意识能力</span
  228. ><el-rate
  229. v-model="rateList.ca"
  230. :disabled="rateParams[5] != '' && rateParams[5] != undefined"
  231. ></el-rate>
  232. </div>
  233. <div class="score_box">
  234. <span>科学探究能力</span
  235. ><el-rate
  236. v-model="rateList.sia"
  237. :disabled="rateParams[5] != '' && rateParams[5] != undefined"
  238. ></el-rate>
  239. </div>
  240. <div class="score_box">
  241. <span>实践创新能力</span
  242. ><el-rate
  243. v-model="rateList.eta"
  244. :disabled="rateParams[5] != '' && rateParams[5] != undefined"
  245. ></el-rate>
  246. </div>
  247. <div class="score_box">
  248. <span>学习反思能力</span
  249. ><el-rate
  250. v-model="rateList.pia"
  251. :disabled="rateParams[5] != '' && rateParams[5] != undefined"
  252. ></el-rate>
  253. </div>
  254. <div class="score_box">
  255. <span>工程思维能力</span
  256. ><el-rate
  257. v-model="rateList.lra"
  258. :disabled="rateParams[5] != '' && rateParams[5] != undefined"
  259. ></el-rate>
  260. </div>
  261. </div>
  262. <div class="moreSay">更多评价</div>
  263. <div class="more_say_input">
  264. <el-input
  265. type="textarea"
  266. placeholder="还有要说的吗..."
  267. :rows="6"
  268. resize="none"
  269. v-model="rateList.content"
  270. :readonly="rateParams[5] != '' && rateParams[5] != undefined"
  271. style="background: #fafafa"
  272. ></el-input>
  273. </div>
  274. <div class="assess_right" @click="right">确认</div>
  275. </el-dialog>
  276. </div>
  277. <div class="student_page">
  278. <el-pagination
  279. background
  280. layout="prev, pager, next"
  281. :page-size="10"
  282. :total="total"
  283. @current-change="handleCurrentChange"
  284. >
  285. </el-pagination>
  286. </div>
  287. </div>
  288. </div>
  289. </template>
  290. <script>
  291. export default {
  292. data() {
  293. return {
  294. tableHeight: "500px",
  295. isLoading: false,
  296. formLabelWidth: "100px",
  297. dialogVisible: false,
  298. dialogVisible1: false,
  299. dialogVisible2: false,
  300. courseByUser: "诗词中的植物",
  301. userName: "林点",
  302. answerName: "宿赞公房",
  303. studentAnswer: "雨荒深院菊,霜倒半池莲.唐杜甫《宿赞公房》",
  304. commentCount: 2,
  305. commentName: "谭子松",
  306. commentTime: "2021/2/5",
  307. commentAnswer:
  308. "作为家长我很高兴看到孩子的进步,希望这个进步只是一个开始,在新学期能够继续延续,这样才能不负老师的期望",
  309. tableData: [],
  310. subject: "",
  311. sClass: "",
  312. subjectJuri: [],
  313. projectJuri: [],
  314. grade: [],
  315. projectchoose:"",
  316. rateList: {
  317. ca: 0,
  318. sia: 0,
  319. eta: 0,
  320. pia: 0,
  321. lra: 0,
  322. content: "",
  323. },
  324. rateParams: [],
  325. page: 1,
  326. total: 0,
  327. };
  328. },
  329. mounted() {
  330. this.$nextTick(function () {
  331. this.tableHeight =
  332. window.innerHeight - this.$refs.table.$el.offsetTop - 200;
  333. if (this.tableHeight <= 530) {
  334. this.tableHeight = 530;
  335. }
  336. // 监听窗口大小变化
  337. let self = this;
  338. window.onresize = function () {
  339. self.tableHeight =
  340. window.innerHeight - self.$refs.table.$el.offsetTop - 200;
  341. if (self.tableHeight <= 530) {
  342. self.tableHeight = 530;
  343. }
  344. };
  345. });
  346. },
  347. methods: {
  348. tableRowClassName({ row, rowIndex }) {
  349. if ((rowIndex + 1) % 2 === 0) {
  350. return "even_row";
  351. } else {
  352. return "";
  353. }
  354. },
  355. handleClose(done) {
  356. done();
  357. },
  358. tableRowClassName({ row, rowIndex }) {
  359. if ((rowIndex + 1) % 2 === 0) {
  360. return "even_row";
  361. } else {
  362. return "";
  363. }
  364. },
  365. handleCurrentChange(val) {
  366. this.page = val;
  367. },
  368. lookWork() {
  369. this.dialogVisible = true;
  370. },
  371. doingAssess() {
  372. this.dialogVisible1 = true;
  373. },
  374. giveScore() {
  375. this.dialogVisible2 = true;
  376. },
  377. //获取班级列表
  378. getClass() {
  379. this.isLoading = true;
  380. let params = {
  381. cu: "",
  382. cn: this.sClass,
  383. page: this.page,
  384. };
  385. this.ajax
  386. .get(this.$store.state.api + "selectClass", params)
  387. .then((res) => {
  388. this.isLoading = false;
  389. this.grade = res.data[0];
  390. })
  391. .catch((err) => {
  392. this.isLoading = false;
  393. console.error(err);
  394. });
  395. },
  396. //获取分组分类
  397. getGroup() {
  398. let params = {};
  399. this.ajax
  400. .get(this.$store.state.api + "getGroup", params)
  401. .then((res) => {
  402. this.subjectJuri = res.data[0];
  403. this.projectJuri = res.data[0];
  404. })
  405. .catch((err) => {
  406. console.error(err);
  407. });
  408. },
  409. searchWork() {
  410. this.page = 1;
  411. this.getWorks();
  412. },
  413. searchProject() {
  414. this.page = 1;
  415. this.getProject();
  416. },
  417. //获取作业
  418. getWorks() {
  419. this.isLoading = true;
  420. let params = {
  421. bid: this.$store.state.userInfo.organizeid,
  422. isRate: 1,
  423. classx: this.sClass,
  424. cid: this.subject,
  425. page: this.page,
  426. };
  427. this.ajax
  428. .get(this.$store.state.api + "getWorks", params)
  429. .then((res) => {
  430. this.isLoading = false;
  431. this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
  432. this.tableData = res.data[0];
  433. })
  434. .catch((err) => {
  435. this.isLoading = false;
  436. console.error(err);
  437. });
  438. },
  439. right() {
  440. this.dialogVisible2 = false;
  441. },
  442. },
  443. created() {
  444. this.page = 1;
  445. this.getClass();
  446. this.getGroup();
  447. this.getWorks();
  448. },
  449. };
  450. </script>
  451. <style scoped>
  452. .pb_head > span:nth-child(2) {
  453. font-size: 16px;
  454. margin-left: 80px;
  455. color: #ab582f;
  456. }
  457. .student_head {
  458. margin-bottom: 20px;
  459. }
  460. .student_search {
  461. display: flex;
  462. }
  463. .student_search > div:nth-child(1) {
  464. line-height: 35px;
  465. font-size: 14px;
  466. }
  467. .student_search >>> .el-input__inner {
  468. width: 190px;
  469. height: 35px;
  470. margin-left: 10px;
  471. }
  472. .student_table >>> .el-table--border td {
  473. border-right: 0px !important;
  474. }
  475. .add_work >>> .el-dialog__header {
  476. padding: 20px 20px 10px;
  477. text-align: center;
  478. background: #32455b;
  479. }
  480. .add_work >>> .el-dialog__title {
  481. font-size: 14px !important;
  482. color: #fff !important;
  483. }
  484. .add_work >>> .el-dialog__headerbtn {
  485. font-size: 20px !important;
  486. }
  487. .add_work >>> .el-form-item__label {
  488. margin-left: 65px;
  489. }
  490. .add_work >>> .el-form-item {
  491. display: flex;
  492. }
  493. .add_work >>> .el-form-item__content {
  494. margin: 0 !important;
  495. }
  496. .add_work >>> .el-dialog__footer {
  497. text-align: center !important;
  498. }
  499. .header-title {
  500. display: flex;
  501. }
  502. .logoImg {
  503. width: 30px;
  504. }
  505. .logoImg > img {
  506. width: 100%;
  507. height: 100%;
  508. }
  509. .title_add_student {
  510. margin: 0 auto;
  511. color: #fff;
  512. }
  513. .top {
  514. display: flex;
  515. justify-content: space-between;
  516. padding-bottom: 10px;
  517. border-bottom: 2px solid #eee;
  518. }
  519. .top > div:nth-child(1) {
  520. font-size: 18px;
  521. }
  522. .top > div:nth-child(2) {
  523. font-size: 14px;
  524. line-height: 28px;
  525. }
  526. .first {
  527. margin-top: 25px;
  528. border-bottom: 1px solid #c5c5c5;
  529. }
  530. .one_top {
  531. display: flex;
  532. justify-content: space-between;
  533. }
  534. .one_top > div:nth-child(1) {
  535. color: #2490bf;
  536. font-size: 16px;
  537. }
  538. .one_top > button {
  539. width: 100px;
  540. background: #24a0a4;
  541. height: 30px;
  542. color: #e0e0e0;
  543. font-size: 13px;
  544. padding: 0 !important;
  545. }
  546. .work_Img {
  547. width: 150px;
  548. margin: 10px 0;
  549. }
  550. .assess_Img {
  551. width: 400px;
  552. margin: 0 auto;
  553. padding: 15px 0;
  554. }
  555. .work_Img > img,
  556. .assess_Img > img {
  557. width: 100%;
  558. height: 100%;
  559. }
  560. .work_input {
  561. border: 1px solid;
  562. width: 135px;
  563. height: 20px;
  564. line-height: 20px;
  565. font-size: 13px;
  566. padding: 5px;
  567. }
  568. .poetry {
  569. margin: 10px 0 15px 0;
  570. }
  571. .assess {
  572. background: #169bd5 !important;
  573. }
  574. .assess_top {
  575. border-bottom: 2px solid #eee;
  576. padding-bottom: 10px;
  577. }
  578. .assess_top > div:nth-child(1) {
  579. color: #2490bf;
  580. font-size: 16px;
  581. }
  582. .student_Answer {
  583. display: flex;
  584. margin: 5px 10px;
  585. border-bottom: 1px solid #ccc;
  586. padding-bottom: 25px;
  587. }
  588. .workName {
  589. font-size: 18px;
  590. font-weight: bold;
  591. margin: 5px 10px;
  592. }
  593. .toux {
  594. width: 25px;
  595. margin: auto 0;
  596. height: 25px;
  597. }
  598. .toux > img {
  599. width: 100%;
  600. height: 100%;
  601. }
  602. .nav {
  603. display: flex;
  604. flex-wrap: wrap;
  605. margin-top: 10px;
  606. flex-direction: column;
  607. }
  608. .studentName {
  609. margin-left: 10px;
  610. font-size: 13px;
  611. }
  612. .studentAnswer {
  613. font-size: 12px;
  614. margin: 5px 0 0 10px;
  615. }
  616. .comment {
  617. margin: 20px 0 0 10px;
  618. }
  619. .comment > .comment_title {
  620. font-size: 18px;
  621. }
  622. .comment > .comment_title > span {
  623. font-size: 14px;
  624. }
  625. .other_Answer {
  626. display: flex;
  627. margin: 5px 10px;
  628. border-bottom: 1px solid #ccc;
  629. padding-bottom: 15px;
  630. }
  631. .nav {
  632. margin-left: 5px;
  633. }
  634. .nameAndTime {
  635. display: flex;
  636. }
  637. .otherName {
  638. font-weight: bold;
  639. margin-left: 10px;
  640. font-size: 13px;
  641. }
  642. .time {
  643. margin-left: 25px;
  644. font-size: 12px;
  645. margin-top: 3px;
  646. }
  647. .otherAnswer {
  648. width: 400px;
  649. word-wrap: break-word;
  650. word-break: break-all;
  651. overflow: hidden;
  652. font-size: 12px;
  653. margin: 5px 0 0 10px;
  654. }
  655. .doingAssess {
  656. margin: 0 auto;
  657. width: 300px;
  658. background: #169bd5;
  659. height: 35px;
  660. line-height: 35px;
  661. border-radius: 3px;
  662. font-size: 13px;
  663. text-align: center;
  664. color: #fff;
  665. margin-top: 30px;
  666. cursor: pointer;
  667. }
  668. .score_top {
  669. display: flex;
  670. margin-left: 15px;
  671. }
  672. .userTou {
  673. width: 50px;
  674. }
  675. .userTou > img {
  676. width: 100%;
  677. height: 100%;
  678. }
  679. .score_user_name {
  680. line-height: 53px;
  681. margin-left: 15px;
  682. }
  683. .course_top {
  684. display: flex;
  685. margin: 30px 0 0 20px;
  686. }
  687. .course_top > div:nth-child(1) {
  688. line-height: 25px;
  689. }
  690. .course_top > div:nth-child(2) {
  691. border: 1px solid #ccc;
  692. width: 250px;
  693. text-align: center;
  694. height: 25px;
  695. line-height: 25px;
  696. margin-left: 30px;
  697. }
  698. .sd_score {
  699. font-size: 15px;
  700. background: #fff;
  701. padding: 18px 25px 1px;
  702. width: 310px;
  703. margin-bottom: 15px;
  704. }
  705. .sd_score .score_box {
  706. display: flex;
  707. align-items: center;
  708. margin-bottom: 18px;
  709. }
  710. .sd_score span {
  711. width: 100px;
  712. text-align: justify;
  713. text-align-last: justify;
  714. display: block;
  715. margin-right: 20px;
  716. }
  717. .moreSay {
  718. margin: 0px 0 5px 20px;
  719. }
  720. .more_say_input {
  721. margin-left: 20px;
  722. width: 90%;
  723. }
  724. .more_say_input >>> .el-input__inner {
  725. height: 75px;
  726. font-size: 13px;
  727. padding: 0 0 0 10px;
  728. }
  729. .assess_right {
  730. width: 200px;
  731. background: #666666;
  732. color: #fff;
  733. text-align: center;
  734. height: 25px;
  735. line-height: 25px;
  736. border-radius: 5px;
  737. margin: 0 auto;
  738. margin-top: 20px;
  739. font-size: 13px;
  740. cursor: pointer;
  741. }
  742. </style>