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



// 获取列表数全部数据
const listPage = (str ,data) => {
    return instance.post(`/appPushInfo/listPage?${str}`,data)
}
//下拉框品牌列表

// const SelectList = () => {
//     return instance.post(`/brandInfo/list`,{})
// }
const add = (data) => {
    return  instance.post('/appPushInfo/add',data)
}
export { listPage ,add}