| 12345678910111213141516171819202122232425262728 |
- import https from "@/plugins/luch-request_0.0.7/request";
- export const getAliPayClearCode = data => {
- return https.get("/clear/get-ali-pay-clear-code", data);
- };
- export const getDetail = data => {
- return https.get("/clear/get-full-info", data);
- };
- export const getClearList = data => {
- return https.get("/clear/list", data);
- };
- //订单详情
- export const detail = data => {
- return https.get('/clear/detail', data)
- }
- //取消
- export const cancel = data => {
- return https.get('/clear/cancel', data)
- }
- //花店给客户结清尾款
- export const confirmClear = data => {
- return https.get('/order-clear/confirm-clear', data)
- }
|