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.
17 lines
450 B
17 lines
450 B
|
|
import http from "@/utils/request";
|
|
export function orderStatus(order_id) {
|
|
return http.get("/activity/orderStatus", { order_id }, {
|
|
requireAuth: true
|
|
});
|
|
}
|
|
export function getActivitySign(order_id) {
|
|
return http.get("/activity/activitySignIn", { order_id }, {
|
|
requireAuth: true
|
|
});
|
|
}
|
|
export function activityDetails(id) {
|
|
return http.get("/special/activity_details", { id }, {
|
|
requireAuth: true
|
|
});
|
|
} |