| 123456789101112131415161718192021222324252627282930313233 |
- 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)
- }
- //微信线下已经付款结账
- export const hasWxPay = data => {
- return https.get("/clear/has-wx-pay", data);
- };
|