123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- <template lang="html">
- <div>
- <section class="content">
- <div class="box box-info">
- <div class="box-body">
- <el-form
- :inline="true"
- :model="formSearch"
- label-position="right"
- label-width="100px"
- >
- <el-form-item label="评卷工作名称" class="pull-left">
- <el-input
- placeholder="评卷工作名称"
- v-model="formSearch.name"
- @keyup.native="searchMarkWork"
- ></el-input>
- </el-form-item>
- </el-form>
- <el-table
- stripe
- v-loading="loading"
- element-loading-text="拼命加载中"
- :data="tableData"
- border
- style="width: 100%"
- >
- <el-table-column label="评卷工作名称" width="250" prop="name">
- </el-table-column>
- <el-table-column label="考试批次" width="250" prop="examName">
- </el-table-column>
- <el-table-column label="考试类型" width="100">
- <template slot-scope="scope">
- <div>
- <span>{{ scope.row.examType | examTypeFilter }}</span>
- </div>
- </template>
- </el-table-column>
- <el-table-column
- label="进度(%)"
- width="100"
- prop="progress"
- sortable
- >
- </el-table-column>
- <el-table-column label="备注" width="100" prop="remark">
- </el-table-column>
- <el-table-column :context="_self" label="操作">
- <template slot-scope="scope">
- <div class="pull-left">
- <el-button
- @click="marking(scope.row)"
- type="primary"
- size="mini"
- plain
- >阅卷</el-button
- >
- </div>
- </template>
- </el-table-column>
- </el-table>
- <div class="page pull-right">
- <el-pagination
- background
- @current-change="handleCurrentChange"
- @size-change="handleSizeChange"
- :current-page="currentPage"
- :page-size="pageSize"
- :page-sizes="[10, 20, 50, 100, 200, 300]"
- layout="total, sizes, prev, pager, next, jumper"
- :total="total"
- >
- </el-pagination>
- </div>
- </div>
- </div>
- </section>
- </div>
- </template>
- <script>
- import { DATA_PROCESS_API, MARKING_API } from "@/constants/constants";
- import { mapState } from "vuex";
- export default {
- data() {
- return {
- formSearch: {
- name: ""
- },
- tableData: [],
- totalTableData: [],
- currentPage: 1,
- pageSize: 10,
- total: 0,
- markWorkId: "",
- loading: false,
- isMarkingView: true
- };
- },
- methods: {
- initMarkWork() {
- this.loading = true;
- this.$http
- .get(DATA_PROCESS_API + "/markWorks?userId=" + this.user.userId)
- .then(response => {
- this.totalTableData = response.data;
- this.total = response.data.length;
- this.filterMarkWork();
- this.paging();
- this.loading = false;
- });
- },
- searchMarkWork() {
- this.filterMarkWork();
- this.paging();
- },
- filterMarkWork() {
- var tempData = this.totalTableData.filter(element => {
- if (this.formSearch.name) {
- return element.name.includes(this.formSearch.name);
- } else {
- return true;
- }
- });
- this.tableData = tempData;
- this.total = tempData.length;
- },
- handleCurrentChange(val) {
- this.currentPage = val;
- this.filterMarkWork();
- this.paging();
- //this.searchMarkWork()
- },
- handleSizeChange(val) {
- this.pageSize = val;
- this.filterMarkWork();
- this.paging();
- //this.searchMarkWork()
- },
- paging() {
- var start = (this.currentPage - 1) * this.pageSize;
- var end =
- this.currentPage * this.pageSize < this.total
- ? this.currentPage * this.pageSize
- : this.total;
- var tempData = [];
- console.log(`当前页: ${this.currentPage},开始:${start},结束:${end}`);
- for (let i = start; i < end; i++) {
- tempData.push(this.tableData[i]);
- }
- console.log(tempData);
- this.tableData = tempData;
- },
- settingMarkWork(row) {
- var url =
- "/marking/mark_setting_main/" +
- row.id +
- "/" +
- row.examId +
- "/" +
- row.name;
- this.$router.push({
- path: url
- });
- },
- marking(row) {
- var userId = this.user.userId;
- var self = this;
- var url = "/marking/" + row.id + "/" + row.examType;
- self.$http
- .get(
- MARKING_API +
- "/markTasks/count?workId=" +
- row.id +
- "&userId=" +
- userId
- )
- .then(response => {
- if (response.data > 0) {
- self.$router.push({
- path: url
- });
- } else {
- self.$notify({
- message: "没有评卷任务",
- type: "warning"
- });
- }
- });
- }
- },
- computed: {
- routeType() {
- return this.$route.params.type;
- },
- ...mapState({ user: state => state.user })
- },
- created() {
- this.initMarkWork();
- }
- };
- </script>
|