You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
518 B
26 lines
518 B
export default {
|
|
getList: {
|
|
url: "/mall/web/order/list",
|
|
method: "get"
|
|
},
|
|
getDetail: {
|
|
url: "/mall/web/order/detail",
|
|
method: "get"
|
|
},
|
|
checkOrder: {
|
|
url: "/mall/web/order/prepare",
|
|
method: "post"
|
|
},
|
|
cancel: {
|
|
url: "/mall/web/order/cancel",
|
|
method: "put"
|
|
},
|
|
addOrder: {
|
|
url: "/mall/web/order/new",
|
|
method: "post"
|
|
},
|
|
payMoney: {
|
|
url: "/mall/web/order/pay",
|
|
method: "put"
|
|
}
|
|
};
|