Commit 01304ce5 authored by GuanHua's avatar GuanHua

fix: 修复修改发票信息无法修改到地址的问题

parent 578705e9
...@@ -40,8 +40,8 @@ const AddInvoice: React.FC<AddAddressPropsType> = (props) => { ...@@ -40,8 +40,8 @@ const AddInvoice: React.FC<AddAddressPropsType> = (props) => {
/** /**
* @description: Form保存 * @description: Form保存
* @param {type} * @param {type}
* @return: * @return:
*/ */
const formSubmit = (values) => { const formSubmit = (values) => {
values.isDefault ? values.isDefault = 1 : values.isDefault = 0 values.isDefault ? values.isDefault = 1 : values.isDefault = 0
...@@ -174,7 +174,7 @@ const AddInvoice: React.FC<AddAddressPropsType> = (props) => { ...@@ -174,7 +174,7 @@ const AddInvoice: React.FC<AddAddressPropsType> = (props) => {
/> />
<Field <Field
title="地址" title="地址"
name="addres" name="address"
maxLength={40} maxLength={40}
x-component="Input" x-component="Input"
/> />
......
...@@ -241,7 +241,7 @@ const Order: React.FC<OrderPropsType> = (props) => { ...@@ -241,7 +241,7 @@ const Order: React.FC<OrderPropsType> = (props) => {
setLogisticsFee(Number(res.data)) setLogisticsFee(Number(res.data))
} catch (error) { } catch (error) {
console.log(error) console.log(error)
} }
} }
} }
} }
......
...@@ -79,7 +79,7 @@ const Invoice: React.FC<InvoicePropsType> = (props) => { ...@@ -79,7 +79,7 @@ const Invoice: React.FC<InvoicePropsType> = (props) => {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
PublicApi.postSettleAccountsInvoiceMessageDelete({ id }).then(res => { PublicApi.postSettleAccountsInvoiceMessageDelete({ id }).then(res => {
if (res.code === 1000) { if (res.code === 1000) {
resolve() resolve(true)
fetchInvoiceList() fetchInvoiceList()
} }
}).catch(() => { }).catch(() => {
......
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