123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- import React, { useState, useEffect } from 'react';
- import { PageHeaderWrapper } from '@ant-design/pro-layout';
- import { Form, Pagination, Button, Icon, message, Modal, Table, Input, } from 'antd';
- import router from 'umi/router';
- import moment from 'moment';
- import className from 'classnames';
- import Cell from '../../../components/Cell';
- import styles from './style.less';
- import { fetch, apis } from '../../../utils/request';
- import request from '../../../utils/request';
- import AuthButton from '@/components/AuthButton';
-
-
- function header(props) {
- // 获取初始化数据
- const [data, setData] = useState({})
- const [demandIdList, setDemandIdList] = useState([])
-
- useEffect(() => {
- getList({ pageNum: 1, pageSize: 10 });
- }, [])
-
- // 查询列表
- const getList = (params) => {
- request({ ...apis.sample.list, params: { ...params } }).then((data) => {
- console.log(data)
- setData(data)
- })
- }
-
-
- // 提交事件
- const handleSubmit = (e, props) => {
- e.preventDefault();
- props.form.validateFields((err, values) => {
- if (!err) {
- let { createDate, ...submitValue } = values
- if (null != createDate && createDate.length > 0) {
- const [startCreateDate, endCreateDate] = createDate
- submitValue.startCreateDate = moment(startCreateDate).format('YYYY-MM-DD');
- submitValue.endCreateDate = moment(endCreateDate).format('YYYY-MM-DD');
- } else {
- submitValue.startCreateDate = null
- submitValue.endCreateDate = null
- }
- getList({ pageNum: 1, pageSize: 10, ...submitValue })
- }
- });
- }
-
- const changePageNum = (pageNumber) => {
- let { createDate, ...submitValue } = props.form.getFieldsValue()
- if (null != createDate && createDate.length > 0) {
- const [startCreateDate, endCreateDate] = createDate
- submitValue.startCreateDate = moment(startCreateDate).format('YYYY-MM-DD');
- submitValue.endCreateDate = moment(endCreateDate).format('YYYY-MM-DD');
- } else {
- submitValue.startCreateDate = null
- submitValue.endCreateDate = null
- }
- getList({ pageNum: pageNumber, pageSize: 10, ...submitValue })
- }
-
-
-
- /**
- *
- *
- * @param {*} props
- * @returns
- */
- const columns = [
- {
- title: '模板编号',
- dataIndex: 'sampleName',
- key: 'sampleName',
- align: 'center',
- },
- {
- title: '模板名称',
- dataIndex: 'orgName',
- key: 'orgName',
- align: 'center',
- },
- {
- title: '创建时间',
- dataIndex: 'createDate',
- key: 'createDate',
- align: 'center',
- render: (x, row) => <><span>{`${moment(row.createDate).format('YYYY-MM-DD HH:mm:ss')}`}</span></>,
- },
- ];
- function handleReset() {
- props.form.resetFields();
- getList({ pageNum: 1, pageSize: 10 })
- }
-
- const { getFieldDecorator } = props.form
- return (
-
- <>
- <Form layout="inline" onSubmit={e => handleSubmit(e, props)} style={{marginBottom:'16px'}}>
- <Form.Item>
- {getFieldDecorator('sampleName')(
- <Input
- prefix={<Icon type="text" style={{ color: 'rgba(0,0,0,.25)' }} />}
- placeholder="样例名"
- />,
- )}
- </Form.Item>
- <Form.Item>
- <Button type="primary" htmlType="submit" className={styles.searchBtn}>
- 搜索
- </Button>
- <Button style={{ marginLeft: 8 }} onClick={handleReset}>
- 重置
- </Button>
- </Form.Item>
- </Form>
- <Table rowKey="newsType" dataSource={data.records} columns={columns} pagination={false} />
- <div style={{ display: 'flex', justifyContent: 'flex-end', marginTop: '30px' }}>
- <Pagination showQuickJumper defaultCurrent={1} total={data.total} onChange={changePageNum} current={data.current} />
- </div>
- </>
- )
- }
- const WrappedHeader = Form.create({ name: 'header' })(header);
-
- export default WrappedHeader
|