/** * 首页接口模块 */ import { get } from './request' /** * 获取Banner列表 * @returns {Promise} */ export function getBannerList() { return get('/home/getBannerList') } /** * 获取测评入口列表 * @returns {Promise} */ export function getAssessmentList() { return get('/home/getAssessmentList') } /** * 获取首页导航入口列表 * @param {Object} [params] - 查询参数 * @param {number} [params.position] - 区域标识 * @returns {Promise} */ export function getNavigationList(params) { return get('/home/getNavigationList', params) } /** * 获取宣传图列表 * @returns {Promise} */ export function getPromotionList() { return get('/home/getPromotionList') } export default { getBannerList, getAssessmentList, getNavigationList, getPromotionList }