studentWorks.vue 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355
  1. <template>
  2. <div
  3. class="pb_content"
  4. style="
  5. background: unset;
  6. overflow: auto;
  7. padding: 20px;
  8. margin: 0;
  9. box-sizing: border-box;
  10. "
  11. >
  12. <div
  13. style="
  14. position: absolute;
  15. width: 95%;
  16. top: 0;
  17. height: 100%;
  18. overflow: auto;
  19. left: 50%;
  20. transform: translateX(-50%);
  21. "
  22. >
  23. <div
  24. class="pb_content_body"
  25. style="
  26. background: #fff;
  27. padding: 0px 25px;
  28. box-sizing: border-box;
  29. border-radius: 5px;
  30. "
  31. >
  32. <div>
  33. <div
  34. class="pb_head"
  35. style="
  36. display: flex;
  37. flex-direction: row;
  38. justify-content: space-between;
  39. align-items: center;
  40. "
  41. >
  42. <span class="sub_head">学生评价管理</span>
  43. <!-- <span>备注:教师可以根据课程、班级条件筛选学生并查看该学生信息</span> -->
  44. <div
  45. class="returnWorks"
  46. @click="
  47. goTo('/works?userid=' + userid + '&oid=' + oid + '&org=' + org)
  48. "
  49. >
  50. <el-button>返回</el-button>
  51. </div>
  52. </div>
  53. <div class="student_head">
  54. <div class="student_search">
  55. <div>学生筛选</div>
  56. <el-select v-model="className" @change="search">
  57. <el-option label="所有班级" value="">所有班级</el-option>
  58. <el-option
  59. v-for="item in classJuri"
  60. :key="item.id"
  61. :label="item.name"
  62. :value="item.id"
  63. >
  64. </el-option>
  65. </el-select>
  66. <el-input
  67. v-model="cn"
  68. placeholder="筛选学生名称"
  69. @input="search"
  70. ></el-input>
  71. </div>
  72. </div>
  73. </div>
  74. </div>
  75. <div class="pb_content_body">
  76. <div>
  77. <div class="student_table">
  78. <el-table
  79. ref="table"
  80. :data="tableData"
  81. border
  82. :height="tableHeight"
  83. :fit="true"
  84. v-loading="isLoading"
  85. style="width: 100%"
  86. :header-cell-style="{ background: '#f1f1f1', fontSize: '17px' }"
  87. :row-class-name="tableRowClassName"
  88. >
  89. <el-table-column
  90. prop="name"
  91. label="学生名称"
  92. min-width="30"
  93. align="center"
  94. ></el-table-column>
  95. <el-table-column
  96. prop="className"
  97. label="班级"
  98. min-width="40"
  99. align="center"
  100. ></el-table-column>
  101. <el-table-column label="操作" min-width="30">
  102. <template slot-scope="scope">
  103. <el-button
  104. type="primary"
  105. size="small"
  106. @click="getWorkData(scope.row)"
  107. >查看课程</el-button
  108. >
  109. </template>
  110. </el-table-column>
  111. </el-table>
  112. </div>
  113. <div class="student_page">
  114. <el-pagination
  115. background
  116. layout="prev, pager, next"
  117. :page-size="10"
  118. :total="total"
  119. v-if="page"
  120. @current-change="handleCurrentChange"
  121. ></el-pagination>
  122. </div>
  123. </div>
  124. </div>
  125. </div>
  126. <div class="sdetailBox" v-if="dialogVisibleS">
  127. <StudentWorksDetail
  128. :uid="dataJson.userid"
  129. :ooid="oid"
  130. :oorg="org"
  131. ></StudentWorksDetail>
  132. <div class="cancelbox" v-if="dialogVisibleS">
  133. <el-button @click="cancel" type="primary" size="small"
  134. >返回</el-button
  135. >
  136. </div>
  137. </div>
  138. </div>
  139. </template>
  140. <script>
  141. import StudentWorksDetail from "./components/studentWorksDetail.vue";
  142. export default {
  143. components: {
  144. StudentWorksDetail,
  145. },
  146. data() {
  147. return {
  148. tableHeight: "500px",
  149. isLoading: false,
  150. formLabelWidth: "100px",
  151. page: 1,
  152. total: 0,
  153. userid: this.$route.query.userid,
  154. org: this.$route.query.org,
  155. oid: this.$route.query.oid,
  156. type: this.$route.query.type,
  157. dialogVisibleS: false,
  158. className: "",
  159. cn: "",
  160. classJuri: [],
  161. tableData: [],
  162. dataJson: [],
  163. pageType: 1,
  164. };
  165. },
  166. mounted() {
  167. this.$nextTick(function () {
  168. this.tableHeight =
  169. window.innerHeight - this.$refs.table.$el.offsetTop - 200;
  170. if (this.tableHeight <= 530) {
  171. this.tableHeight = 530;
  172. }
  173. // 监听窗口大小变化
  174. let self = this;
  175. window.onresize = function () {
  176. self.tableHeight =
  177. window.innerHeight - self.$refs.table.$el.offsetTop - 200;
  178. if (self.tableHeight <= 530) {
  179. self.tableHeight = 530;
  180. }
  181. };
  182. });
  183. },
  184. methods: {
  185. goTo(path) {
  186. this.$router.push(path);
  187. },
  188. tableRowClassName({ row, rowIndex }) {
  189. if ((rowIndex + 1) % 2 === 0) {
  190. return "even_row";
  191. } else {
  192. return "";
  193. }
  194. },
  195. handleClose(done) {
  196. done();
  197. },
  198. handleCurrentChange(val) {
  199. this.page = val;
  200. this.getAllStudent();
  201. },
  202. search() {
  203. this.page = 1;
  204. this.getAllStudent();
  205. },
  206. cancel() {
  207. this.dataJson = [];
  208. this.dialogVisibleS = false;
  209. },
  210. getWorkData(row) {
  211. this.dataJson = row;
  212. this.dialogVisibleS = true;
  213. },
  214. //获取班级列表
  215. getClass() {
  216. let params = {
  217. oid: this.oid,
  218. };
  219. this.ajax
  220. .get(this.$store.state.api + "selectClassBySchool", params)
  221. .then((res) => {
  222. this.classJuri = res.data[0];
  223. })
  224. .catch((err) => {
  225. console.error(err);
  226. });
  227. },
  228. getAllStudent() {
  229. this.isLoading = true;
  230. let params = {
  231. oid: this.oid,
  232. cn: this.cn,
  233. cid: this.className,
  234. page: this.page,
  235. };
  236. this.ajax
  237. .get(this.$store.state.api + "selectAllStudent", params)
  238. .then((res) => {
  239. this.isLoading = false;
  240. this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
  241. this.tableData = res.data[0];
  242. })
  243. .catch((err) => {
  244. this.isLoading = false;
  245. console.error(err);
  246. });
  247. },
  248. },
  249. created() {
  250. this.page = 1;
  251. this.getClass();
  252. this.getAllStudent();
  253. },
  254. };
  255. </script>
  256. <style scoped>
  257. .pb_head > span:nth-child(2) {
  258. /* font-size: 16px; */
  259. font-size: 26px;
  260. cursor: pointer;
  261. margin-left: 10px;
  262. /* color: #ab582f; */
  263. /* color: #409eff; */
  264. color: #999;
  265. }
  266. .pb_head > span:nth-child(2):hover {
  267. color: #000;
  268. }
  269. .pb_head {
  270. margin: 0 !important;
  271. width: 100% !important;
  272. }
  273. .student_page {
  274. margin-top: 10px;
  275. }
  276. .student_head {
  277. margin-top: 10px;
  278. padding-bottom: 15px;
  279. display: flex;
  280. justify-content: space-between;
  281. }
  282. .student_search {
  283. display: flex;
  284. flex-direction: row;
  285. align-items: center;
  286. }
  287. .student_search > div:nth-child(1) {
  288. line-height: 35px;
  289. font-size: 14px;
  290. min-width: 60px;
  291. }
  292. .student_search > div:nth-child(4) {
  293. min-width: 100px;
  294. margin-left: 10px;
  295. cursor: pointer;
  296. }
  297. .student_search >>> .el-input__inner {
  298. width: 190px;
  299. height: 35px;
  300. margin-left: 10px;
  301. }
  302. .student_table >>> .el-table--border td {
  303. border-right: 0px !important;
  304. }
  305. .student_page {
  306. margin-top: 10px;
  307. }
  308. .student_table >>> .el-table,
  309. .student_table >>> .el-table__body-wrapper {
  310. height: auto !important;
  311. }
  312. .el-table >>> .even_row {
  313. background-color: #f1f1f1 !important;
  314. }
  315. .returnWorks >>> .el-button {
  316. background-color: #409eff;
  317. border-color: #409eff;
  318. color: #fff;
  319. }
  320. .sdetailBox {
  321. height: 100%;
  322. position: absolute;
  323. top: 0;
  324. background: #fff;
  325. overflow: auto;
  326. z-index: 1;
  327. width: 95%;
  328. left: 50%;
  329. -webkit-transform: translateX(-50%);
  330. transform: translateX(-50%);
  331. padding: 20px;
  332. -webkit-box-sizing: border-box;
  333. box-sizing: border-box;
  334. }
  335. .cancelbox {
  336. position: absolute;
  337. z-index: 2;
  338. left: 50%;
  339. top: 7%;
  340. width: 95%;
  341. transform: translateX(-50%);
  342. display: flex;
  343. justify-content: flex-end;
  344. padding: 0 90px 0px 0px;
  345. box-sizing: border-box;
  346. }
  347. </style>