/* eslint-disable */ import React, { PureComponent, Fragment } from 'react'; import { connect } from 'dva'; import moment from 'moment'; import { Card, Form, Input, Select, Button, Modal, message, Table, Divider } from 'antd'; import PageHeaderWrapper from '@/components/PageHeaderWrapper'; import styles from './AdminList.less'; const FormItem = Form.Item; const { Option } = Select; const status = ['未知', '正常', '禁用']; // 添加 form 表单 const CreateForm = Form.create()(props => { const { modalVisible, form, handleAdd, handleModalVisible, modalType, initValues } = props; const okHandle = () => { form.validateFields((err, fieldsValue) => { if (err) return; form.resetFields(); handleAdd({ fields: fieldsValue, modalType, initValues, }); }); }; const selectStyle = { width: 200, }; const title = modalType === 'add' ? '添加一个 Resource' : '更新一个 Resource'; const okText = modalType === 'add' ? '添加' : '更新'; return ( handleModalVisible()} > {form.getFieldDecorator('username', { rules: [{ required: true, message: '请输入名称!', min: 2 }], initialValue: initValues.username, })()} {form.getFieldDecorator('nickname', { rules: [{ required: true, message: '请输入昵称!', min: 2 }], initialValue: initValues.nickname, })()} {form.getFieldDecorator('password', { initialValue: initValues.password, })()} ); }); @connect(({ adminList, loading }) => ({ list: adminList.list, data: adminList, loading: loading.models.resourceList, })) @Form.create() class ResourceList extends PureComponent { state = { modalVisible: false, modalType: 'add', //add update initValues: {}, }; componentDidMount() { const { dispatch } = this.props; dispatch({ type: 'adminList/query', payload: {}, }); } handleModalVisible = (flag, modalType, initValues) => { this.setState({ modalVisible: !!flag, initValues: initValues || {}, modalType: modalType || 'add', }); }; handleAdd = ({ fields, modalType, initValues }) => { const { dispatch, data } = this.props; const queryParams = { pageNo: data.pageNo, pageSize: data.pageSize, }; if (modalType === 'add') { dispatch({ type: 'adminList/add', payload: { body: { ...fields, }, queryParams, callback: () => { message.success('添加成功'); this.handleModalVisible(); }, }, }); } else { dispatch({ type: 'adminList/update', payload: { body: { ...initValues, ...fields, }, queryParams, callback: () => { message.success('更新成功'); this.handleModalVisible(); }, }, }); } }; handleStatus(row) { const { dispatch, data } = this.props; const queryParams = { pageNo: data.pageNo, pageSize: data.pageSize, }; const title = row.status === 1 ? '确认禁用' : '取消禁用'; const updateStatus = row.status === 1 ? 2 : 1; Modal.confirm({ title: `${title}?`, content: `${row.username}`, onOk() { dispatch({ type: 'adminList/updateStatus', payload: { body: { id: row.id, status: updateStatus, }, queryParams, }, }); }, onCancel() {}, }); } render() { const { list } = this.props; const { modalVisible, modalType, initValues, defaultExpandAllRows } = this.state; const parentMethods = { handleAdd: this.handleAdd, handleModalVisible: this.handleModalVisible, modalType, initValues, }; const columns = [ { title: 'id', dataIndex: 'id', render: text => {text}, }, { title: '用户名', dataIndex: 'username', render: text => {text}, }, { title: '昵称', dataIndex: 'nickname', }, { title: '状态', dataIndex: 'status', render(val) { return {status[val]}; }, }, { title: '操作', render: (text, record) => { const statusText = record.status === 1 ? '确认禁用' : '取消禁用'; return ( this.handleModalVisible(true, 'update', record)}>更新 this.handleStatus(record)}> {statusText} this.handleDelete(record)}> 删除 ); }, }, ]; return ( this.handleModalVisible(true, 'add', {})} > 新建 ); } } export default ResourceList;