import fetch from '../common/fetch' const baseUrl = 'https://kitchen.smartlog.work' const getBannerUrl = baseUrl + '/appBannerInfo/mini/listPage' // 获取banner轮播图 export function getBanner(params) { return fetch.post(getBannerUrl, params).then(res => res); }