完成发票初始版本

This commit is contained in:
2024-04-25 16:53:38 +08:00
parent d1b2c89b1c
commit b7e831662e
23 changed files with 581 additions and 31 deletions

View File

@@ -28,5 +28,10 @@ export const getInvoiceList = async function() {
// 获取创建的发开票信息详情
export const getInvoiceInfoDetail = async function(id) {
return await GET(`/wx/getInvoiceInfoDetail/${id}`);
return await GET(`/wx/getInvoiceInfoDetail/${id}/${wx.getStorageSync('tenement')?.id}`);
}
// 获取已开发票的列表
export const getAlreadyInvoiceList = async function(page) {
return await GET(`/wx/getAlreadyInvoiceList?tenement=${wx.getStorageSync('tenement')?.id}&page=${page}`);
}