Newer
Older
smartKitchenFront / src / api / move / message.js
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)
}
const update = (data) => {
  return instance.post('/appPushInfo/update', data)
}
export { listPage, add }