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.
25 lines
558 B
25 lines
558 B
import http from "@/utils/request";
|
|
|
|
export function getProductInfo(params) {
|
|
return http.get("/kefu/get_product_info", params, {
|
|
requireAuth: true
|
|
});
|
|
}
|
|
|
|
export function getOrderInfo(params) {
|
|
return http.get("/kefu/get_order_info", params, {
|
|
requireAuth: true
|
|
});
|
|
}
|
|
|
|
export function getSupportInfo(params) {
|
|
return http.get("/kefu/get_support_info", params, {
|
|
requireAuth: true
|
|
});
|
|
}
|
|
|
|
export function feedBackPost(data) {
|
|
return http.get("/kefu/save_feedback", data, {
|
|
requireAuth: true
|
|
});
|
|
} |