123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 |
- import React from 'react';
- import { Button } from 'antd';
- import { Link } from 'react-router-dom';
- import './index.less';
- import Page from '@src/containers/Page';
- import Block from '@src/components/Block';
- import FilterLayout from '@src/layouts/FilterLayout';
- import ActionLayout from '@src/layouts/ActionLayout';
- import TableLayout from '@src/layouts/TableLayout';
- import { getMap, formatTreeData, bindSearch, formatDate, formatPercent } from '@src/services/Tools';
- import { asyncSMessage, asyncDelConfirm } from '@src/services/AsyncTools';
- import { QuestionType, QuestionDifficult } from '../../../../Constant';
- import { Question } from '../../../stores/question';
- import { Examination } from '../../../stores/examination';
- const QuestionTypeMap = getMap(QuestionType, 'value', 'label');
- const filterForm = [
- {
- key: 'structId',
- type: 'tree',
- allowClear: true,
- name: '出题原理',
- select: [],
- placeholder: '请选择',
- number: true,
- },
- {
- key: 'paperId',
- type: 'select',
- allowClear: true,
- name: '试卷',
- select: [],
- placeholder: '请选择',
- number: true,
- },
- {
- key: 'difficult',
- type: 'select',
- allowClear: true,
- name: '难度',
- select: QuestionDifficult,
- placeholder: '请选择',
- },
- {
- key: 'questionType',
- type: 'select',
- allowClear: true,
- name: '题型',
- select: QuestionType,
- placeholder: '请选择',
- },
- {
- key: 'questionNoId',
- type: 'select',
- allowClear: true,
- name: '题目ID',
- select: [],
- number: true,
- placeholder: '请输入',
- },
- ];
- export default class extends Page {
- constructor(props) {
- super(props);
- this.actionList = [{
- key: 'add',
- name: '新建',
- render: (item) => {
- return <Button onClick={() => {
- linkTo('/subject/question');
- }}>{item.name}</Button>;
- },
- }, {
- key: 'delete',
- name: '批量删除',
- needSelect: 1,
- }];
- this.categoryMap = {};
- this.columns = [{
- title: '出题原理',
- dataIndex: 'first',
- render: (text, record) => {
- return this.categoryMap[record.moduleStruct[0]] || text;
- },
- }, {
- title: '类别',
- dataIndex: 'second',
- render: (text, record) => {
- return this.categoryMap[record.moduleStruct[1]] || text;
- },
- }, {
- title: '试卷',
- dataIndex: 'three',
- render: (text, record) => {
- return this.categoryMap[record.moduleStruct[2]] || text;
- },
- }, {
- title: '题型',
- dataIndex: 'questionType',
- render: (text, record) => {
- return QuestionTypeMap[record.question.questionType] || text;
- },
- }, {
- title: '题目ID',
- sorter: true,
- dataIndex: 'no',
- render: (text, record) => {
- return record.title;
- },
- }, {
- title: '难度',
- dataIndex: 'difficult',
- sorter: true,
- render: (text, record) => {
- return record.question.difficult;
- },
- }, {
- title: '错误率',
- dataIndex: 'correct',
- sorter: true,
- render: (text, record) => {
- return formatPercent(record.totalNumber - record.totalCorrect, record.totalNumber, false);
- },
- }, {
- title: '修改时间',
- sorter: true,
- dataIndex: 'updateTime',
- render: (text, record) => {
- return formatDate(record.question.updateTime, 'YYYY-MM-DD HH:mm:ss');
- },
- }, {
- title: '操作',
- dataIndex: 'handler',
- render: (text, record) => {
- return <div className="table-button">
- {(
- <Link to={`/subject/question/${record.questionId}`}>编辑</Link>
- )}
- </div>;
- },
- }];
- }
- init() {
- Examination.allStruct().then(result => {
- const list = result.filter(row => row.level < 3).map(row => { row.title = row.titleZh; row.value = row.id; return row; });
- filterForm[0].tree = formatTreeData(list, 'id', 'title', 'parentId');
- this.categoryMap = getMap(result.map(row => { row.title = row.titleZh; row.value = row.id; return row; }), 'id', 'title');
- this.setState({ examination: result });
- });
- bindSearch(filterForm, 'paperId', this, (search) => {
- return Examination.listPaper(search);
- }, (row) => {
- return {
- title: row.title,
- value: row.id,
- };
- }, this.state.search.paperId ? Number(this.state.search.paperId) : null, null);
- bindSearch(filterForm, 'questionNoId', this, (search) => {
- search.module = 'examination';
- return Question.searchNo(search);
- }, (row) => {
- return {
- title: row.title,
- value: row.id,
- };
- }, this.state.search.questionNoId ? Number(this.state.search.questionNoId) : null, null);
- }
- initData() {
- const { search } = this.state;
- const data = Object.assign({}, search);
- Examination.listQuestion(data).then(result => {
- this.setTableData(result.list, result.total);
- });
- }
- deleteAction() {
- const { selectedRows } = this.state;
- asyncDelConfirm('删除确认', '是否删除选中题目?', () => {
- return Promise.all(selectedRows.map(row => Question.delNo({ id: row.id }))).then(() => {
- asyncSMessage('删除成功!');
- this.refresh();
- });
- });
- }
- renderView() {
- const { examination } = this.state;
- return <Block flex>
- {examination && <FilterLayout
- show
- itemList={filterForm}
- data={this.state.search}
- onChange={data => {
- data.page = 1;
- this.search(data);
- }} />}
- <ActionLayout
- itemList={this.actionList}
- selectedKeys={this.state.selectedKeys}
- onAction={key => this.onAction(key)}
- />
- <TableLayout
- select
- columns={this.tableSort(this.columns)}
- list={this.state.list}
- pagination={this.state.page}
- loading={this.props.core.loading}
- onChange={(pagination, filters, sorter) => this.tableChange(pagination, filters, sorter)}
- onSelect={(keys, rows) => this.tableSelect(keys, rows)}
- selectedKeys={this.state.selectedKeys}
- />
- </Block>;
- }
- }
|