Newer
Older
smartKitchenFront / src / api / move / message.js
liuyangyingjie on 31 Oct 2022 383 bytes feat(修改问题,添加注释): 整体提交
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 }