完善发票和充值
This commit is contained in:
@@ -17,11 +17,16 @@ export const updateInvoiceInfo = async function(data) {
|
||||
}
|
||||
|
||||
// 删除发票信息
|
||||
export const deleteInvoiceInfo = async function(data) {
|
||||
return await DELETE(`/wx/deleteInvoiceInfo/${id}`, data);
|
||||
export const deleteInvoiceInfo = async function(id) {
|
||||
return await DELETE(`/wx/deleteInvoiceInfo/${id}`);
|
||||
}
|
||||
|
||||
// 获取可开发票列表
|
||||
export const getInvoiceList = async function() {
|
||||
return await GET(`/wx/getInvoiceList`);
|
||||
}
|
||||
|
||||
// 获取创建的发开票信息详情
|
||||
export const getInvoiceInfoDetail = async function(id) {
|
||||
return await GET(`/wx/getInvoiceInfoDetail/${id}`);
|
||||
}
|
Reference in New Issue
Block a user