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.
13 lines
272 B
13 lines
272 B
import service from ".";
|
|
const homeApi = {
|
|
//分页查询
|
|
getHomeData(PageNo,PageSize) {
|
|
return service.post("/api/activity",{
|
|
params:{
|
|
PageNo,
|
|
PageSize
|
|
}
|
|
});
|
|
}
|
|
};
|
|
export default homeApi;
|