/* eslint-disable */ import React, { PureComponent, Fragment } from 'react'; import { connect } from 'dva'; import moment from 'moment'; import { Card, Form, Input, Row, Col, Button, Modal, message, Table, Divider, Tree, Tabs, TreeSelect, Spin, InputNumber, DatePicker, Select } from 'antd'; const TabPane = Tabs.TabPane; import PageHeaderWrapper from '@/components/PageHeaderWrapper'; const { RangePicker } = DatePicker; import styles from './PayTransactionList.less'; import PaginationHelper from "../../../helpers/PaginationHelper"; const FormItem = Form.Item; const statuses = { 1: '等待支付', 2: '支付成功', 3: '取消支付', }; const payChannels = { 100: '微信 App 支付', 101: '微信 JS API 支付', 200: '支付宝 App 支付', 9999: 'ping++', }; // 列表 function List({ dataSource, loading, pagination, searchParams, dispatch,}) { function onPageChange(page) { // 翻页 dispatch({ type: 'payTransactionList/page', payload: { pageNo: page.current, pageSize: page.pageSize, ...searchParams } }) } const columns = [ // { // title: 'id', // dataIndex: 'id', // render: text => {text}, // }, { title: '创建时间', dataIndex: 'createTime', render: val => {moment(val).format('YYYY-MM-DD HH:mm:ss')}, width: 120, }, { title: '支付时间', dataIndex: 'paymentTime', render: val => val ? {moment(val).format('YYYY-MM-DD HH:mm:ss')} : '', width: 120, }, { title: '商户订单号', dataIndex: 'orderId', }, { title: '商品名称', dataIndex: 'orderSubject', }, { title: '支付金额', dataIndex: 'price', render: val => val / 100.0, }, { title: '支付状态', dataIndex: 'status', render: val => statuses[val + ''], }, { title: '支付渠道', dataIndex: 'payChannel', render: val => payChannels[val + ''], }, { title: '退款情况', dataIndex: 'refundTotal', render: val => val && val > 0 ? '有退款' : '无退款' , }, { title: '退款金额', dataIndex: 'refundTotal', render: val => val && val > 0 ? val / 100.0 : undefined , }, { title: '操作', width: 120, render: (text, record) => ( {/* this.handleModalVisible(true, 'update', record)}>更新*/} alert('正在开发中')}>退款 ), }, ]; // console.log(pagination); return (
) } // 搜索表单 const SearchForm = Form.create()(props => { const { form, form: { getFieldDecorator }, dispatch, searchParams, } = props; function search() { const getBeginAndEndTime = (key, beginKey, endKey) => { let val = form.getFieldsValue()[key]; if (val && val.length === 2) { let res = {}; res[beginKey] = val[0].format('YYYY-MM-DD HH:mm:ss'); res[endKey] = val[1].format('YYYY-MM-DD HH:mm:ss'); return res; } return {}; }; dispatch({ type: 'payTransactionList/page', payload: { ...PaginationHelper.defaultPayload, ...searchParams, ...form.getFieldsValue(), createTime: undefined, paymentTime: undefined, ...getBeginAndEndTime('createTime', 'createBeginTime', 'createEndTime'), ...getBeginAndEndTime('paymentTime', 'paymentBeginTime', 'paymentEndTime'), } }) } // 提交搜索 function handleSubmit(e) { // 阻止默认事件 e.preventDefault(); // 提交搜索 search(); } // 重置搜索 function handleReset() { // 重置表单 form.resetFields(); // 执行搜索 search(); } return ( {getFieldDecorator('createTime')()}{getFieldDecorator('paymentTime')()}{getFieldDecorator('orderSubject')()} {getFieldDecorator('payChannel')( )} {getFieldDecorator('status')( )} {getFieldDecorator('hasRefund')( )} ); }); // payTransactionList @connect(({ payTransactionList }) => ({ ...payTransactionList, // list: payTransactionList.list.spus, // loading: loading.models.payTransactionList, })) @Form.create() class PayTransactionList extends PureComponent { state = { modalVisible: false, modalType: 'add', //add update initValues: {}, }; componentDidMount() { const { dispatch, searchParams } = this.props; // 查询初始数据 dispatch({ type: 'payTransactionList/page', payload: { ...searchParams, ...PaginationHelper.defaultPayload, }, }); } handleSortModalVisible = (sortModalVisible, record) => { const { dispatch } = this.props; dispatch({ type: 'payTransactionList/setAll', payload: { sortModalVisible, formVals: record || {} }, }); }; render() { const { dispatch, list, listLoading, searchParams, pagination, categoryTree, formVals, } = this.props; // 列表属性 const listProps = { dataSource: list, pagination, searchParams, dispatch, categoryTree, loading: listLoading, handleSortModalVisible: this.handleSortModalVisible, // Func }; // 搜索表单属性 const searchFormProps = { dispatch, categoryTree, searchParams, }; return (
{/* alert('正在开发中')}*/} {/*>*/} {/* 新建限时折扣*/} {/**/}
); } } export default PayTransactionList;