调试申请开票的时候开票信息不存在的情况

This commit is contained in:
2024-05-06 17:27:21 +08:00
parent 2a6447e292
commit 45cb065d6f
4 changed files with 18 additions and 6 deletions

View File

@@ -44,5 +44,5 @@ export const makeInvoice = async function(data) {
// 下载发票文件
export const downloadInvoice = async function(id, type) {
return await POST(`/wx/downloadInvoice/${id}?type=${type}`,);
return await GET(`/wx/downloadInvoice/${id}?type=${type}`,);
}