YNUtdPlatform/api/phaseTwo/homePage.js

11 lines
210 B
JavaScript
Raw Normal View History

2024-10-11 18:01:58 +08:00
import request from '@/utils/request'
// 获取首页数据
export function getHomePageListApi(data) {
return request({
url: '/bmw/homePage/getAppHomePageData',
method: 'post',
data: data
})
}