|
@@ -10,15 +10,8 @@ import styles from './table.less';
|
|
|
import { orderStatuses, Codes } from '../../../utils/config';
|
|
|
|
|
|
const { RangePicker } = DatePicker;
|
|
|
-const confirm = Modal.confirm;
|
|
|
|
|
|
export default class TableList extends PureComponent {
|
|
|
- static propTypes = {
|
|
|
- location: PropTypes.object,
|
|
|
- onChange: PropTypes.func.isRequired,
|
|
|
- onDeleteItem: PropTypes.func.isRequired,
|
|
|
- onEditItem: PropTypes.func.isRequired,
|
|
|
- };
|
|
|
|
|
|
state = {
|
|
|
filtered: false, //是否处于过滤状态
|
|
@@ -85,7 +78,7 @@ export default class TableList extends PureComponent {
|
|
|
} else if (e.key === '2') {
|
|
|
console.log('enter into edit page...');
|
|
|
}else if (e.key === '3') {
|
|
|
- confirm({
|
|
|
+ Modal.confirm({
|
|
|
title: '你确定要作废该订单?',
|
|
|
onOk () {
|
|
|
console.log('deleting...');
|
|
@@ -93,7 +86,7 @@ export default class TableList extends PureComponent {
|
|
|
},
|
|
|
});
|
|
|
} else if (e.key === '4') {
|
|
|
- confirm({
|
|
|
+ Modal.confirm({
|
|
|
title: '你确定要恢复该订单?',
|
|
|
onOk () {
|
|
|
console.log('recovering...');
|
|
@@ -124,10 +117,6 @@ export default class TableList extends PureComponent {
|
|
|
const { timeBegin, timeEnd, filtered } = this.state;
|
|
|
|
|
|
const columns = [{
|
|
|
- title: '订单编号',
|
|
|
- dataIndex: 'code',
|
|
|
- key: 'code',
|
|
|
- },{
|
|
|
title: '终端编号',
|
|
|
dataIndex: 'userCode',
|
|
|
key: 'userCode',
|
|
@@ -139,18 +128,18 @@ export default class TableList extends PureComponent {
|
|
|
<span>{`${record.provinceCode}-${record.cityName}-${record.zoneName}`}</span>
|
|
|
),
|
|
|
},{
|
|
|
- title: '领教定价',
|
|
|
- dataIndex: 'lingjiaoPrice',
|
|
|
- key: 'lingjiaoPrice',
|
|
|
- },{
|
|
|
- title: '渠道定价',
|
|
|
- dataIndex: 'merchantPrice',
|
|
|
- key: 'merchantPrice',
|
|
|
+ title: '商品标价(¥)',
|
|
|
+ dataIndex: 'originPrice',
|
|
|
+ key: 'originPrice',
|
|
|
},{
|
|
|
- title: '实际售价',
|
|
|
+ title: '实际售价(¥)',
|
|
|
dataIndex: 'finalPrice',
|
|
|
key: 'finalPrice',
|
|
|
},{
|
|
|
+ title: '价格调整(¥)',
|
|
|
+ dataIndex: 'adjustPrice',
|
|
|
+ key: 'adjustPrice',
|
|
|
+ },{
|
|
|
title: '状态',
|
|
|
dataIndex: 'status',
|
|
|
key: 'status',
|
|
@@ -190,6 +179,7 @@ export default class TableList extends PureComponent {
|
|
|
render: (text, record) => (
|
|
|
<DropOption onMenuClick={e => this.handleMenuClick(record, e)} menuOptions={this.renderOperationDropMenu(record)} />
|
|
|
),
|
|
|
+ fixed: 'right',
|
|
|
}];
|
|
|
|
|
|
// 数据table列表表头的筛选按钮点击重置后status值为空,此时删除该参数
|
|
@@ -197,12 +187,11 @@ export default class TableList extends PureComponent {
|
|
|
item.dataIndex === 'status' && !curStatus ? delete item.filteredValue : null;
|
|
|
});
|
|
|
|
|
|
+ // 配置分页
|
|
|
tableProps.pagination = !!pagination && { ...pagination, showSizeChanger: true, showQuickJumper: true, showTotal: total => `共 ${total} 条`};
|
|
|
- const getBodyWrapperProps = {
|
|
|
- page: location.query.page,
|
|
|
- current: tableProps.pagination.current,
|
|
|
- };
|
|
|
- const getBodyWrapper = (body) => (<AnimTableBody {...getBodyWrapperProps} body={body} />);
|
|
|
+
|
|
|
+ // 添加动画
|
|
|
+ const AnimationTableBody = (props) => (<AnimTableBody {...props}/>);
|
|
|
|
|
|
return (
|
|
|
<Table
|
|
@@ -212,8 +201,9 @@ export default class TableList extends PureComponent {
|
|
|
columns={columns}
|
|
|
className={classnames({ [styles.table]: true, [styles.motion]: true })}
|
|
|
rowKey={record => record.id}
|
|
|
- scroll={{ x: 1300 }}
|
|
|
- getBodyWrapper={getBodyWrapper}
|
|
|
+ components={{
|
|
|
+ body: { wrapper: AnimationTableBody }
|
|
|
+ }}
|
|
|
/>
|
|
|
);
|
|
|
}
|