| 123456789101112131415161718192021222324252627282930 |
- import https from "@/plugins/luch-request_0.0.7/request";
- //供应商的结账单详情
- export const getDetail = async id => {
- return https.get("/clear/get-full-info", { id });
- };
- //供应商的结账单
- export const getClearList = async data => {
- return https.get("/clear/list", data);
- };
- //客户的结账单
- export const getCustomClearList = async data => {
- return https.get("/clear/custom-list", data);
- };
- //客户的结账单详情
- export const getCustomDetail = async id => {
- return https.get("/clear/get-custom-full-info", { id });
- };
- //取消
- export const cancel = data => {
- return https.get('/clear/cancel', data)
- }
- export const confirmClear = data => {
- return https.get('/order-clear/confirm-clear', data)
- }
|