Newer
Older
smartKitchenMiniProgram / utils / api / index.js
import fetch from '../common/fetch'
const baseUrl = 'https://kitchen.smartlog.work'
const getBannerUrl = baseUrl + '/appBannerInfo/listPage'
const getRecommendInfo = baseUrl + '/appRecommendInfo/listPage'


// 获取banner轮播图
export function getBanner(params) {
  return fetch.post(getBannerUrl, params).then(res => res);
}

// 获取列表推荐详情
export function getRecommend(params) {
    return fetch.post(getRecommendInfo, params).then(res => res);
  }