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 } from '@src/services/Tools'; import { asyncSMessage, asyncDelConfirm } from '@src/services/AsyncTools'; import { CourseModule, QuestionType } from '../../../../Constant'; import { Exercise } from '../../../stores/exercise'; import { Course } from '../../../stores/course'; import { Preview } from '../../../stores/preview'; const CourseModuleMap = getMap(CourseModule, 'value', 'label'); const QuestionTypeMap = getMap(QuestionType, 'value', 'label'); export default class extends Page { init() { this.exerciseMap = {}; this.actionList = [{ key: 'addVideo', type: 'primary', name: '创建视频作业', render: (item) => { return ; }, }, { key: 'addOnline', type: 'primary', name: '创建小班作业', render: (item) => { return ; }, }, { key: 'addVs', type: 'primary', name: '创建1vs1作业', render: (item) => { return ; }, }]; this.filterForm = [{ key: 'courseModule', type: 'select', allowClear: true, name: '课程类型', placeholder: '请选择', select: CourseModule, }, { key: 'questionType', type: 'select', allowClear: true, name: '题型', placeholder: '请选择', select: QuestionType, }, { key: 'courseId', type: 'select', name: '课程名称', select: [], number: true, placeholder: '请选择', }]; this.columns = [{ title: '课程类型', dataIndex: 'courseModule', render: (text) => { return CourseModuleMap[text] || text; }, }, { title: '课程名称', dataIndex: 'course.title', }, { title: '题型', dataIndex: 'questionType', render: (text) => { return QuestionTypeMap[text] || ''; }, }, { title: '作业标题', dataIndex: 'title', }, { title: '操作', dataIndex: 'handler', render: (text, record) => { return
{( 编辑 )}
; }, }]; Exercise.courseStruct().then((result) => { const list = result.map(row => { row.title = `${row.titleZh}`; row.value = row.id; return row; }); this.filterForm[1].tree = formatTreeData(list, 'id', 'title', 'parentId'); this.exerciseMap = getMap(result.map(row => { row.title = `${row.titleZh}`; row.value = row.id; return row; }), 'id', 'title'); this.setState({ exercise: result }); }); bindSearch(this.filterForm, 'courseId', this, (search) => { return Course.list(search); }, (row) => { return { title: row.title, value: row.id, }; }, this.state.search.courseId ? Number(this.state.search.courseId) : null, null); } initData() { Preview.list(this.state.search).then(result => { this.setTableData(result.list, result.total); }); } deleteAction() { const { selectedKeys } = this.state; asyncDelConfirm('删除确认', '是否删除选中作业?', () => { return Promise.all(selectedKeys.map(row => Preview.del({ id: row }))).then(() => { asyncSMessage('删除成功!'); this.refresh(); }); }); } renderView() { const { exercise } = this.state; return {exercise && { data.page = 1; this.search(data); }} />} this.onAction(key)} /> this.tableChange(pagination, filters, sorter)} onSelect={(keys, rows) => this.tableSelect(keys, rows)} selectedKeys={this.state.selectedKeys} /> ; } }