| 123456789101112131415161718192021 |
- 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 });
- };
|