|
@@ -51,7 +51,7 @@ export default class SubOrderProfile extends Component {
|
|
const { id } = currentItem;
|
|
const { id } = currentItem;
|
|
validateFields((errors) => {
|
|
validateFields((errors) => {
|
|
if (!errors) {
|
|
if (!errors) {
|
|
- const trackNo = getFieldsValue(['tracKNo']);
|
|
|
|
|
|
+ const { trackNo } = getFieldsValue();
|
|
dispatch({
|
|
dispatch({
|
|
type: 'orderDetail/orderSend',
|
|
type: 'orderDetail/orderSend',
|
|
payload: { id, trackNo },
|
|
payload: { id, trackNo },
|
|
@@ -95,13 +95,13 @@ export default class SubOrderProfile extends Component {
|
|
// </FooterToolbar>
|
|
// </FooterToolbar>
|
|
// );
|
|
// );
|
|
// // 待收货订单
|
|
// // 待收货订单
|
|
- // case Codes.CODE_SENT:
|
|
|
|
- // return (
|
|
|
|
- // <FooterToolbar>
|
|
|
|
- // <Button onClick={this.handlePageCancel}>返回订单列表</Button>
|
|
|
|
- // <Button onClick={this.confirmReceipt} type="primary">确认收货</Button>
|
|
|
|
- // </FooterToolbar>
|
|
|
|
- // );
|
|
|
|
|
|
+ case Codes.CODE_SENT:
|
|
|
|
+ return (
|
|
|
|
+ <FooterToolbar>
|
|
|
|
+ <Button onClick={this.handlePageCancel}>返回订单列表</Button>
|
|
|
|
+ <Button onClick={this.confirmReceipt} type="primary">确认收货</Button>
|
|
|
|
+ </FooterToolbar>
|
|
|
|
+ );
|
|
// 已完成订单
|
|
// 已完成订单
|
|
case Codes.CODE_COMPLETE:
|
|
case Codes.CODE_COMPLETE:
|
|
return (
|
|
return (
|
|
@@ -347,7 +347,7 @@ export default class SubOrderProfile extends Component {
|
|
>
|
|
>
|
|
<Form layout="horizontal">
|
|
<Form layout="horizontal">
|
|
<Form.Item label="物流单号:" hasFeedback {...formItemLayout}>
|
|
<Form.Item label="物流单号:" hasFeedback {...formItemLayout}>
|
|
- {getFieldDecorator('code', {
|
|
|
|
|
|
+ {getFieldDecorator('trackNo', {
|
|
rules: [{ required: true, type: 'string', message: '请填写正确的物流单号!' }],
|
|
rules: [{ required: true, type: 'string', message: '请填写正确的物流单号!' }],
|
|
initialValue: trackNo,
|
|
initialValue: trackNo,
|
|
})(<Input placeholder="请填写物流单号" />)}
|
|
})(<Input placeholder="请填写物流单号" />)}
|