You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
628 B
JavaScript

import { request } from "@/utils/request";
export default {
/**
* 当面付页面
*/
storeInfo(data) {
return request({
url: "/order/PaymentInfo",
method: "POST",
data,
});
},
/**
* 当面付页面
*/
inpersonPaymentOrder(data) {
return request({
url: "/order/InpersonPaymentOrder",
method: "POST",
data,
needLogin: true,
});
},
storeInfos(data) {
return request({
url: "/common/PaymentInfo",
method: "POST",
data,
});
},
};