修改发票信息

This commit is contained in:
2024-05-06 17:09:34 +08:00
parent 3d13c3003a
commit 2a6447e292
8 changed files with 67 additions and 10 deletions

View File

@@ -40,4 +40,9 @@ export const getAlreadyInvoiceList = async function(page) {
// 开票
export const makeInvoice = async function(data) {
return await POST(`/wx/invoice`, data);
}
// 下载发票文件
export const downloadInvoice = async function(id, type) {
return await POST(`/wx/downloadInvoice/${id}?type=${type}`,);
}