Commit dfda61d6 authored by guang.wu's avatar guang.wu

feat: 添加补充发票接口

parent 5ddb12c1
...@@ -90,9 +90,23 @@ export async function uploadBill(params) { ...@@ -90,9 +90,23 @@ export async function uploadBill(params) {
}); });
} }
// 查看发票 /**
export async function merchantView(params) { * 补录发票
return request.get(`/selfPaymentBill/merchant/view/${params}`, { * yApi: http://yapi.quantgroups.com/project/549/interface/api/69004
* */
export async function apiUploadSupplementaryBill(params) {
return request.post('/selfPaymentBill/merchant/supplementary/upload/bill', {
prefix: querysApi,
data: params,
});
}
/**
* 查看发票
* yApi: http://yapi.quantgroups.com/project/549/interface/api/35872
* */
export async function apiMerchantView(id) {
return request.get(`/selfPaymentBill/merchant/view/${id}`, {
prefix: querysApi, prefix: querysApi,
}); });
} }
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