Commit 0f2ccf96 authored by XieZhiXiong's avatar XieZhiXiong

fix: 修复退款id传错的问题

parent 83536800
......@@ -2,7 +2,7 @@
* @Author: XieZhiXiong
* @Date: 2021-06-09 10:34:18
* @LastEditors: XieZhiXiong
* @LastEditTime: 2021-06-09 15:53:08
* @LastEditTime: 2021-08-27 15:37:47
* @Description: 上传支付凭证
*/
import React, { useState, useEffect } from 'react';
......@@ -66,10 +66,6 @@ export type ValueType = {
export type SubmitValueType = {
/**
* 账户id
*/
id: number,
/**
* 支付凭证 ,PayProveBO
*/
payProve?: {
......@@ -194,7 +190,6 @@ const UploadPaymentVoucher: React.FC<IProps> = (props: IProps) => {
return;
}
onSubmit({
id,
payProve: {
...rest,
fileList: fileList.map(item => item.status === 'done' && ({
......
......@@ -2,7 +2,7 @@
* @Author: XieZhiXiong
* @Date: 2020-11-05 18:02:18
* @LastEditors: XieZhiXiong
* @LastEditTime: 2021-08-12 18:10:38
* @LastEditTime: 2021-08-27 15:38:04
* @Description: 退款明细
*/
import React, { useState } from 'react';
......@@ -317,7 +317,7 @@ const ReturnDetailInfo: React.FC<ReturnDetailInfoProps> = ({
const handlePaymentVoucherSubmit = (value) => {
if (onRefund) {
return onRefund(value);
return onRefund({ ...value, id: refundModalValue.id });
}
return Promise.reject();
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment