| | |
| | | |
| | | // 列表 |
| | | export const getList = async (data) => { |
| | | return request(`/promotion/mgt/promotion-banner/page`, { |
| | | method: 'POST', |
| | | data |
| | | return request(`/api/huacheng-sangeshenbian/banner/list`, { |
| | | method: 'GET', |
| | | params:data |
| | | }); |
| | | } |
| | | // 详情 |
| | | export const getDetail = async (id) => { |
| | | return request(`/promotion/mgt/promotion-banner/detail/${id}`, { |
| | | return request(`/api/huacheng-sangeshenbian/banner/getBannerInfo/${id}`, { |
| | | method: 'GET', |
| | | // data |
| | | }); |
| | | } |
| | | // 详情列表 |
| | | export const getDetailList = async (data) => { |
| | | return request(`/goods/mgt/goods-sku/page`, { |
| | | method: 'POST', |
| | | data |
| | | }); |
| | | } |
| | | |
| | | |
| | | // 删除 |
| | | export const deleteBanner = async (id) => { |
| | | return request(`/promotion/mgt/promotion-banner/${id}`, { |
| | | return request(`/api/huacheng-sangeshenbian/banner/delete/${id}`, { |
| | | method: 'delete', |
| | | // params |
| | | }); |
| | | } |
| | | |
| | | // 添加 编辑 |
| | | export const addAndEdit = async (data) => { |
| | | return request('/promotion/mgt/promotion-banner/save', { |
| | | export const add = async (data) => { |
| | | return request('/api/huacheng-sangeshenbian/banner/add', { |
| | | method: 'POST', |
| | | data, |
| | | }); |
| | | } |
| | | |
| | | |
| | | |
| | | // 上下架 |
| | | export const updateStatus = async (data) => { |
| | | return request(`/promotion/mgt/promotion-banner/upd-status`, { |
| | | // 添加 编辑 |
| | | export const Edit = async (data) => { |
| | | return request('/api/huacheng-sangeshenbian/banner/edit', { |
| | | method: 'POST', |
| | | data |
| | | data, |
| | | }); |
| | | } |
| | | |