25 lines
481 B
TypeScript
25 lines
481 B
TypeScript
export const getPackageData = () =>
|
|
http.request({
|
|
url: "/p/merchantPage/packageData",
|
|
method: "GET",
|
|
});
|
|
|
|
export const getOrderManageData = () =>
|
|
http.request({
|
|
url: "/p/merchantPage/orderManageData",
|
|
method: "GET",
|
|
});
|
|
|
|
export const getManageData = () =>
|
|
http.request({
|
|
url: "/p/merchantPage/merchantData",
|
|
method: "GET",
|
|
});
|
|
|
|
export const getTel = () =>{
|
|
return http.request({
|
|
url: "/merchantNotLogin/getTel",
|
|
method: "GET",
|
|
})
|
|
}
|