examManagementDetailMore.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. <template>
  2. <div class="">
  3. <!-- 考试成绩表 -->
  4. <div class="common-card a-card-margin-top">
  5. <div class="information-title">考试成绩</div>
  6. <a-table
  7. :columns="testScoreTableColumns"
  8. :data-source="testScoreTableData"
  9. :row-key="(record) => record.id"
  10. :pagination="false"
  11. >
  12. <template slot="nickName" slot-scope="text, record">
  13. <span>{{ record.user ? record.user.nickName : '' }}</span>
  14. </template>
  15. </a-table>
  16. <div class="a-pagination-display">
  17. <a-pagination
  18. v-model="testScoreTablePagination.current"
  19. :pageSize="testScoreTablePagination.pageSize"
  20. :total.sync="testScoreTablePagination.total"
  21. show-less-items
  22. show-quick-jumper
  23. @change="getTestScoreList"
  24. />
  25. </div>
  26. </div>
  27. <!-- 未参考人员表 -->
  28. <div class="common-card a-card-margin-top">
  29. <div class="information-title">未参考人员</div>
  30. <a-table
  31. :columns="unReferencedColumns"
  32. :data-source="unReferencedTableData"
  33. :row-key="(record, index) => index"
  34. :pagination="false"
  35. >
  36. <!-- <template slot="nickName" slot-scope="text, record">
  37. <span>{{ record.user ? record.user.nickName : '' }}</span>
  38. </template> -->
  39. </a-table>
  40. <div class="a-pagination-display">
  41. <a-pagination
  42. v-model="unReferencedPagination.current"
  43. :pageSize="unReferencedPagination.pageSize"
  44. :total.sync="unReferencedPagination.total"
  45. show-less-items
  46. show-quick-jumper
  47. @change="getUnReferencedListAxios"
  48. />
  49. </div>
  50. </div>
  51. </div>
  52. </template>
  53. <script>
  54. import { formatePathParams } from '@/filters';
  55. export default {
  56. props: {
  57. examId: {
  58. type: [Number, String],
  59. },
  60. },
  61. components: {},
  62. data() {
  63. return {
  64. tableDataAll: [], // 所有数据
  65. testScoreTableColumns: [],
  66. testScoreTablePagination: {
  67. pageSize: 10,
  68. current: 1,
  69. total: 0,
  70. }, // 分页参数
  71. testScoreTableData: [], // 列表
  72. unReferencedColumns: [],
  73. unReferencedPagination: {
  74. pageSize: 10,
  75. current: 1,
  76. total: 0,
  77. }, // 分页参数
  78. unReferencedTableData: [], // 列表
  79. };
  80. },
  81. created() {
  82. this.initDataFun(); //初始化数据
  83. },
  84. mounted() {},
  85. beforeDestroy() {},
  86. watch: {},
  87. computed: {},
  88. methods: {
  89. //初始化数据
  90. initDataFun() {
  91. if (!this.examId) {
  92. return;
  93. }
  94. // 表单的列的配置参数
  95. this.testScoreTableColumns = [
  96. {
  97. title: '姓名',
  98. dataIndex: 'nickName',
  99. key: 'nickName',
  100. scopedSlots: { customRender: 'nickName' },
  101. },
  102. {
  103. title: '成绩',
  104. dataIndex: 'totalPoints',
  105. key: 'totalPoints',
  106. },
  107. {
  108. title: '时间',
  109. dataIndex: 'endTime',
  110. key: 'endTime',
  111. },
  112. ];
  113. this.unReferencedColumns = [
  114. {
  115. title: '姓名',
  116. dataIndex: 'nickName',
  117. key: 'nickName',
  118. scopedSlots: { customRender: 'nickName' },
  119. },
  120. ];
  121. this.getExamCountInfo(); // 查询:考试的统计信息
  122. this.getUnReferencedListAxios(); // 查询:未参考人员统计信息
  123. },
  124. // 查询:考试的统计信息
  125. getExamCountInfo() {
  126. let params = {
  127. examId: this.examId,
  128. page: this.testScoreTablePagination.current - 1,
  129. size: this.testScoreTablePagination.pageSize,
  130. };
  131. this.$_http
  132. .get(
  133. formatePathParams(this.$_API.INTERFACE_GET_EXAM_DETAIL_MORE, params)
  134. )
  135. .then((res) => {
  136. let resData = res.data;
  137. if (resData.historyList) {
  138. this.tableDataAll = resData.historyList;
  139. this.testScoreTablePagination.current = 1;
  140. this.testScoreTablePagination.total = this.tableDataAll.length; // 总条数
  141. this.testScoreTableData = this.getCurrenPageData(
  142. this.tableDataAll,
  143. this.testScoreTablePagination.current,
  144. this.testScoreTablePagination.pageSize
  145. );
  146. } else {
  147. this.tableDataAll = [];
  148. this.testScoreTableData = [];
  149. this.testScoreTablePagination.total = 0;
  150. }
  151. })
  152. .catch(() => {});
  153. },
  154. // 查询:未参考人员统计信息
  155. getUnReferencedListAxios() {
  156. let params = {
  157. examId: this.examId,
  158. page: this.unReferencedPagination.current - 1,
  159. size: this.unReferencedPagination.pageSize,
  160. };
  161. this.$_http
  162. .get(this.$_API.INTERFACE_GET_EXAM_DETAIL_MORE_UNREFERENCED, params)
  163. .then((res) => {
  164. let resData = res.data.content;
  165. this.unReferencedTableData = [...resData];
  166. this.unReferencedTableData.total = res.data.totalElements; // 总条数
  167. })
  168. .catch(() => {});
  169. },
  170. // 获取指定页码的数据
  171. getCurrenPageData(array, current, pageSize) {
  172. let returnArr = [];
  173. for (let i = 0; i < array.length; i++) {
  174. if (i + 1 > (current - 1) * pageSize && i + 1 <= current * pageSize) {
  175. returnArr.push(array[i]);
  176. }
  177. }
  178. return returnArr;
  179. },
  180. getTestScoreList() {
  181. this.testScoreTableData = this.getCurrenPageData(
  182. this.tableDataAll,
  183. this.testScoreTablePagination.current,
  184. this.testScoreTablePagination.pageSize
  185. );
  186. },
  187. // getUnReferencedList() {
  188. // this.unReferencedTableData = this.getCurrenPageData(
  189. // this.tableDataAll,
  190. // this.testScoreTablePagination.current,
  191. // this.testScoreTablePagination.pageSize
  192. // );
  193. // },
  194. },
  195. };
  196. </script>
  197. <style lang="less"></style>
  198. <style lang="less" scoped>
  199. @import '~@/styles/common/variable.less';
  200. .information-title {
  201. font-size: 18px;
  202. font-weight: bold;
  203. color: @mainColorBlack65;
  204. margin-bottom: @paddingMarginVal;
  205. }
  206. </style>