Newer
Older
smartKitchenFront / src / api / move / hotAndNews.js
liuyangyingjie on 26 Oct 2022 405 bytes first commit
import { instance } from "../request/http";



// 获取列表数全部数据
const listPage = (str ,data) => {
    return instance.post(`/appRecommendInfo/listPage?${str}`,data)
}
const bdelete = (data) => {
    return instance.post('/appRecommendInfo/delete',data)
}
const batchDelete = (data) => {
    return instance.post('/appRecommendInfo/batchDelete',data)
}
export { listPage,batchDelete ,bdelete}