studentWorks.vue 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349
  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="70"
  93. align="center"
  94. ></el-table-column>
  95. <el-table-column label="操作" min-width="30">
  96. <template slot-scope="scope">
  97. <el-button
  98. type="primary"
  99. size="small"
  100. @click="getWorkData(scope.row)"
  101. >查看课程</el-button
  102. >
  103. </template>
  104. </el-table-column>
  105. </el-table>
  106. </div>
  107. <div class="student_page">
  108. <el-pagination
  109. background
  110. layout="prev, pager, next"
  111. :page-size="10"
  112. :total="total"
  113. v-if="page"
  114. @current-change="handleCurrentChange"
  115. ></el-pagination>
  116. </div>
  117. </div>
  118. </div>
  119. </div>
  120. <div class="sdetailBox" v-if="dialogVisibleS">
  121. <StudentWorksDetail
  122. :uid="dataJson.userid"
  123. :ooid="oid"
  124. :oorg="org"
  125. ></StudentWorksDetail>
  126. <div class="cancelbox" v-if="dialogVisibleS">
  127. <el-button @click="cancel" type="primary" size="small"
  128. >返回</el-button
  129. >
  130. </div>
  131. </div>
  132. </div>
  133. </template>
  134. <script>
  135. import StudentWorksDetail from "./components/studentWorksDetail.vue";
  136. export default {
  137. components: {
  138. StudentWorksDetail,
  139. },
  140. data() {
  141. return {
  142. tableHeight: "500px",
  143. isLoading: false,
  144. formLabelWidth: "100px",
  145. page: 1,
  146. total: 0,
  147. userid: this.$route.query.userid,
  148. org: this.$route.query.org,
  149. oid: this.$route.query.oid,
  150. type: this.$route.query.type,
  151. dialogVisibleS: false,
  152. className: "",
  153. cn: "",
  154. classJuri: [],
  155. tableData: [],
  156. dataJson: [],
  157. pageType: 1,
  158. };
  159. },
  160. mounted() {
  161. this.$nextTick(function () {
  162. this.tableHeight =
  163. window.innerHeight - this.$refs.table.$el.offsetTop - 200;
  164. if (this.tableHeight <= 530) {
  165. this.tableHeight = 530;
  166. }
  167. // 监听窗口大小变化
  168. let self = this;
  169. window.onresize = function () {
  170. self.tableHeight =
  171. window.innerHeight - self.$refs.table.$el.offsetTop - 200;
  172. if (self.tableHeight <= 530) {
  173. self.tableHeight = 530;
  174. }
  175. };
  176. });
  177. },
  178. methods: {
  179. goTo(path) {
  180. this.$router.push(path);
  181. },
  182. tableRowClassName({ row, rowIndex }) {
  183. if ((rowIndex + 1) % 2 === 0) {
  184. return "even_row";
  185. } else {
  186. return "";
  187. }
  188. },
  189. handleClose(done) {
  190. done();
  191. },
  192. handleCurrentChange(val) {
  193. this.page = val;
  194. this.getAllStudent();
  195. },
  196. search() {
  197. this.page = 1;
  198. this.getAllStudent();
  199. },
  200. cancel() {
  201. this.dataJson = [];
  202. this.dialogVisibleS = false;
  203. },
  204. getWorkData(row) {
  205. this.dataJson = row;
  206. this.dialogVisibleS = true;
  207. },
  208. //获取班级列表
  209. getClass() {
  210. let params = {
  211. oid: this.oid,
  212. };
  213. this.ajax
  214. .get(this.$store.state.api + "selectClassBySchool", params)
  215. .then((res) => {
  216. this.classJuri = res.data[0];
  217. })
  218. .catch((err) => {
  219. console.error(err);
  220. });
  221. },
  222. getAllStudent() {
  223. this.isLoading = true;
  224. let params = {
  225. oid: this.oid,
  226. cn: this.cn,
  227. cid: this.className,
  228. page: this.page,
  229. };
  230. this.ajax
  231. .get(this.$store.state.api + "selectAllStudent", params)
  232. .then((res) => {
  233. this.isLoading = false;
  234. this.total = res.data[0].length > 0 ? res.data[0][0].num : 0;
  235. this.tableData = res.data[0];
  236. })
  237. .catch((err) => {
  238. this.isLoading = false;
  239. console.error(err);
  240. });
  241. },
  242. },
  243. created() {
  244. this.page = 1;
  245. this.getClass();
  246. this.getAllStudent();
  247. },
  248. };
  249. </script>
  250. <style scoped>
  251. .pb_head > span:nth-child(2) {
  252. /* font-size: 16px; */
  253. font-size: 26px;
  254. cursor: pointer;
  255. margin-left: 10px;
  256. /* color: #ab582f; */
  257. /* color: #409eff; */
  258. color: #999;
  259. }
  260. .pb_head > span:nth-child(2):hover {
  261. color: #000;
  262. }
  263. .pb_head {
  264. margin: 0 !important;
  265. width: 100% !important;
  266. }
  267. .student_page {
  268. margin-top: 10px;
  269. }
  270. .student_head {
  271. margin-top: 10px;
  272. padding-bottom: 15px;
  273. display: flex;
  274. justify-content: space-between;
  275. }
  276. .student_search {
  277. display: flex;
  278. flex-direction: row;
  279. align-items: center;
  280. }
  281. .student_search > div:nth-child(1) {
  282. line-height: 35px;
  283. font-size: 14px;
  284. min-width: 60px;
  285. }
  286. .student_search > div:nth-child(4) {
  287. min-width: 100px;
  288. margin-left: 10px;
  289. cursor: pointer;
  290. }
  291. .student_search >>> .el-input__inner {
  292. width: 190px;
  293. height: 35px;
  294. margin-left: 10px;
  295. }
  296. .student_table >>> .el-table--border td {
  297. border-right: 0px !important;
  298. }
  299. .student_page {
  300. margin-top: 10px;
  301. }
  302. .student_table >>> .el-table,
  303. .student_table >>> .el-table__body-wrapper {
  304. height: auto !important;
  305. }
  306. .el-table >>> .even_row {
  307. background-color: #f1f1f1 !important;
  308. }
  309. .returnWorks >>> .el-button {
  310. background-color: #409eff;
  311. border-color: #409eff;
  312. color: #fff;
  313. }
  314. .sdetailBox {
  315. height: 100%;
  316. position: absolute;
  317. top: 0;
  318. background: #fff;
  319. overflow: auto;
  320. z-index: 1;
  321. width: 95%;
  322. left: 50%;
  323. -webkit-transform: translateX(-50%);
  324. transform: translateX(-50%);
  325. padding: 20px;
  326. -webkit-box-sizing: border-box;
  327. box-sizing: border-box;
  328. }
  329. .cancelbox {
  330. position: absolute;
  331. z-index: 2;
  332. left: 50%;
  333. top: 7%;
  334. width: 95%;
  335. transform: translateX(-50%);
  336. display: flex;
  337. justify-content: flex-end;
  338. padding: 0 90px 0px 0px;
  339. box-sizing: border-box;
  340. }
  341. </style>