|
@@ -1,131 +1,42 @@
|
|
|
import React, { PureComponent } from 'react';
|
|
|
import PropTypes from 'prop-types';
|
|
|
import moment from 'moment';
|
|
|
-import classnames from 'classnames';
|
|
|
import queryString from 'query-string';
|
|
|
-import { Divider, Modal, DatePicker, Table, Menu, Icon, Badge, Button } from 'antd';
|
|
|
-import AnimTableBody from '../../../components/Animation/AnimTableBody';
|
|
|
-import styles from './table.less';
|
|
|
+import { Modal, Table, Menu, Icon, Badge, Button } from 'antd';
|
|
|
import { orderStatuses, Codes } from '../../../utils/config';
|
|
|
|
|
|
-const { RangePicker } = DatePicker;
|
|
|
-
|
|
|
export default class TableList extends PureComponent {
|
|
|
|
|
|
- state = {
|
|
|
- filtered: false, //是否处于过滤状态
|
|
|
- timeBegin: null, //起始时间 - 默认当前时间戳
|
|
|
- timeEnd: null, //结束时间 - 默认时间戳
|
|
|
- }
|
|
|
-
|
|
|
- componentWillReceiveProps(nextProps) {
|
|
|
- // 如果父组件传进的属性中包含timeBegin和timeEnd并进行合法性校验,通过则更新state
|
|
|
- const { timeBegin, timeEnd } = nextProps;
|
|
|
- const nextTimeBegin = Number(timeBegin);
|
|
|
- const nextTimeEnd = Number(timeEnd);
|
|
|
- if (nextTimeBegin && nextTimeEnd && moment(nextTimeBegin).isValid() && moment(nextTimeEnd).isValid()) {
|
|
|
- this.setState({
|
|
|
- timeBegin: moment(nextTimeBegin),
|
|
|
- timeEnd: moment(nextTimeEnd),
|
|
|
- filtered: true,
|
|
|
- });
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- // 选择了筛选的时间段,点击确定后触发
|
|
|
- handleRangePickerOnOk = (value) => {
|
|
|
- const timeBegin = value[0];
|
|
|
- const timeEnd = value[1];
|
|
|
- this.setState({ timeBegin, timeEnd, filtered: true });
|
|
|
- }
|
|
|
-
|
|
|
- // 点击清除选中的时间段
|
|
|
- handleRangePickerOnChange = (value) => {
|
|
|
- if (value && !value.length) {
|
|
|
- this.setState({
|
|
|
- filtered: false,
|
|
|
- timeBegin: null,
|
|
|
- timeEnd: null,
|
|
|
- });
|
|
|
- } else {
|
|
|
- this.setState({
|
|
|
- filtered: true,
|
|
|
- timeBegin: value[0],
|
|
|
- timeEnd: value[1],
|
|
|
- })
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- // 点击空白区域,隐藏RangePicker,会触发一次查询
|
|
|
- handleRangePickerFilter = (visible) => {
|
|
|
- if (!visible) {
|
|
|
- const { pagination, onChange } = this.props;
|
|
|
- // 这里构造成数组类型是为了和table自带的过滤参数类型一致
|
|
|
- const data = { timeBegin: [], timeEnd: [] };
|
|
|
- if (this.state.timeBegin && this.state.timeEnd) {
|
|
|
- data.timeBegin = [this.state.timeBegin.format('X')];
|
|
|
- data.timeEnd = [this.state.timeEnd.format('X')];
|
|
|
- }
|
|
|
- onChange(pagination, data);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
handleItemView = (record) => {
|
|
|
const { onViewItem } = this.props;
|
|
|
- onViewItem({ id: record.id });
|
|
|
+ onViewItem(record);
|
|
|
}
|
|
|
|
|
|
- // handleMenuClick = (record, e) => {
|
|
|
- // const { onDeleteItem, onViewItem, onEditItem, onRecoverItem } = this.props;
|
|
|
- // if (e.key === '1') {
|
|
|
- // onViewItem(record);
|
|
|
- // } else if (e.key === '2') {
|
|
|
- // console.log('enter into edit page...');
|
|
|
- // }else if (e.key === '3') {
|
|
|
- // Modal.confirm({
|
|
|
- // title: '你确定要作废该订单?',
|
|
|
- // onOk () {
|
|
|
- // console.log('deleting...');
|
|
|
- // // onDeleteItem(record.id)
|
|
|
- // },
|
|
|
- // });
|
|
|
- // }
|
|
|
- // }
|
|
|
-
|
|
|
- // 根据订单状态确定下拉菜单的选项
|
|
|
- // renderOperationButton = (record) => {
|
|
|
- // switch (record.orderStatus) {
|
|
|
- // case Codes.CODE_PAID:
|
|
|
- // return (
|
|
|
- // <div>
|
|
|
- // <Button type="primary" size="small">查看</Button>
|
|
|
- // </div>
|
|
|
- // );
|
|
|
- // break;
|
|
|
- // case Codes.CODE_UNPAID:
|
|
|
- // return (
|
|
|
- // <div>
|
|
|
- // <a>支付</a>
|
|
|
- // </div>
|
|
|
- // );
|
|
|
- // break;
|
|
|
- // case Codes.CODE_CANCEL:
|
|
|
- // return (
|
|
|
- // <div>
|
|
|
- // <a>查看</a>
|
|
|
- // </div>
|
|
|
- // );
|
|
|
- // break;
|
|
|
- // default:
|
|
|
- // break;
|
|
|
- // }
|
|
|
- // }
|
|
|
-
|
|
|
render() {
|
|
|
- const { curStatus, onDeleteItem, onRecoverItem, onEditItem, location, pagination, ...tableProps } = this.props;
|
|
|
- const { timeBegin, timeEnd, filtered } = this.state;
|
|
|
+ const { onDeleteItem, onRecoverItem, onEditItem, dataSource, pagination, ...tableProps } = this.props;
|
|
|
+ const newDataSource = [...dataSource];
|
|
|
+ newDataSource.forEach(item => {
|
|
|
+ if (Array.isArray(item.detailList) && item.detailList.length) {
|
|
|
+ item.children = item.detailList.map(one => (
|
|
|
+ {
|
|
|
+ ...one,
|
|
|
+ flag: true,
|
|
|
+ userCode: item.userCode,
|
|
|
+ provinceCode: item.provinceCode,
|
|
|
+ cityName: item.cityName,
|
|
|
+ zoneName: item.zoneName,
|
|
|
+ })
|
|
|
+ );
|
|
|
+ }
|
|
|
+ });
|
|
|
|
|
|
const columns = [{
|
|
|
+ title: '订单编号',
|
|
|
+ dataIndex: 'id',
|
|
|
+ key: 'id',
|
|
|
+ fixed: 'left',
|
|
|
+ width: 330,
|
|
|
+ },{
|
|
|
title: '终端编号',
|
|
|
dataIndex: 'userCode',
|
|
|
key: 'userCode',
|
|
@@ -137,18 +48,18 @@ export default class TableList extends PureComponent {
|
|
|
<span>{`${record.provinceCode}-${record.cityName}-${record.zoneName}`}</span>
|
|
|
),
|
|
|
},{
|
|
|
- title: '商品标价',
|
|
|
+ title: '商品总价(元)',
|
|
|
dataIndex: 'originPrice',
|
|
|
key: 'originPrice',
|
|
|
},{
|
|
|
- title: '实际售价',
|
|
|
- dataIndex: 'finalPrice',
|
|
|
- key: 'finalPrice',
|
|
|
- },{
|
|
|
- title: '价格调整',
|
|
|
+ title: '优惠价格(元)',
|
|
|
dataIndex: 'adjustPrice',
|
|
|
key: 'adjustPrice',
|
|
|
},{
|
|
|
+ title: '实际售价(元)',
|
|
|
+ dataIndex: 'finalPrice',
|
|
|
+ key: 'finalPrice',
|
|
|
+ },{
|
|
|
title: '状态',
|
|
|
dataIndex: 'orderStatus',
|
|
|
key: 'orderStatus',
|
|
@@ -160,9 +71,6 @@ export default class TableList extends PureComponent {
|
|
|
};
|
|
|
return (<Badge status={statusMap[record.orderStatus] || 'processing'} text={orderStatuses[record.orderStatus]} />);
|
|
|
},
|
|
|
- filters: Object.keys(orderStatuses).map(key => ({ text: orderStatuses[key], value: key })),
|
|
|
- filterMultiple: false,
|
|
|
- filteredValue: [curStatus],
|
|
|
},{
|
|
|
title: '下单时间',
|
|
|
dataIndex: 'gmtCreated',
|
|
@@ -170,51 +78,31 @@ export default class TableList extends PureComponent {
|
|
|
render: (text, record) => (
|
|
|
<div>{moment(text).format('YYYY-MM-DD HH:mm:ss')}</div>
|
|
|
),
|
|
|
- filterIcon: <Icon type="clock-circle-o" style={{ color: filtered ? '#108ee9' : '#aaa' }} />,
|
|
|
- filterDropdown: (
|
|
|
- <div className="custom-filter-dropdown">
|
|
|
- <RangePicker
|
|
|
- value={filtered ? [timeBegin, timeEnd] : []}
|
|
|
- showTime={{ format: 'HH:mm:ss' }}
|
|
|
- format="YYYY-MM-DD HH:mm:ss"
|
|
|
- placeholder={["起始时间", "截止时间"]}
|
|
|
- onChange={this.handleRangePickerOnChange}
|
|
|
- onOk={this.handleRangePickerOnOk}
|
|
|
- getCalendarContainer={() => document.querySelector('.custom-filter-dropdown')}
|
|
|
- />
|
|
|
- </div>
|
|
|
- ),
|
|
|
- onFilterDropdownVisibleChange: this.handleRangePickerFilter,
|
|
|
},{
|
|
|
title: '操作',
|
|
|
dataIndex: 'operation',
|
|
|
key: 'operation',
|
|
|
- // render: (text, record) => this.renderOperationButton(record),
|
|
|
- render: (text, record) => <a onClick={() => this.handleItemView(record)}>查看</a>
|
|
|
+ render: (text, record) => (
|
|
|
+ <div>
|
|
|
+ <a onClick={() => this.handleItemView(record)}>查看</a>
|
|
|
+ </div>
|
|
|
+ ),
|
|
|
+ width: 70,
|
|
|
+ fixed: 'right',
|
|
|
}];
|
|
|
|
|
|
- // 数据table列表表头的筛选按钮点击重置后status值为空,此时删除该参数
|
|
|
- columns.map(item => {
|
|
|
- item.dataIndex == 'orderStatus' && !curStatus ? delete item.filteredValue : null;
|
|
|
- });
|
|
|
-
|
|
|
// 配置分页
|
|
|
tableProps.pagination = !!pagination && { ...pagination, showSizeChanger: true, showQuickJumper: true, showTotal: total => `共 ${total} 条`};
|
|
|
|
|
|
- // 添加动画
|
|
|
- const AnimationTableBody = (props) => (<AnimTableBody {...props}/>);
|
|
|
-
|
|
|
return (
|
|
|
<Table
|
|
|
simple
|
|
|
bordered
|
|
|
- { ...tableProps }
|
|
|
+ dataSource={newDataSource}
|
|
|
columns={columns}
|
|
|
- className={classnames({ [styles.table]: true, [styles.motion]: true })}
|
|
|
rowKey={record => record.id}
|
|
|
- components={{
|
|
|
- body: { wrapper: AnimationTableBody }
|
|
|
- }}
|
|
|
+ { ...tableProps }
|
|
|
+ scroll={{ x: 1500 }}
|
|
|
/>
|
|
|
);
|
|
|
}
|