| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- import https from '@/plugins/luch-request_0.0.7/request'
- export const batchRecover = data => {
- return https.post('/item/batch-recover', data)
- }
- export const batchRemove = data => {
- return https.post('/item/batch-remove', data)
- }
- export const batchEnable = data => {
- return https.post('/item/batch-enable', data)
- }
- export const batchStopItem = data => {
- return https.post('/item/batch-stop', data)
- }
- export const getSkPoster = data => {
- return https.get('/item/get-sk-poster', data)
- }
- export const getHdPoster = data => {
- return https.get('/item/get-hd-poster', data)
- }
- export const breakItem = data => {
- return https.post("/item/break-item", data);
- };
- export const changeVariety = data => {
- return https.get('/item/change-variety', data)
- }
- export const getErrorPrice = data => {
- return https.get('/item/get-error-price', data)
- }
- export const getColorList = data => {
- return https.get('/item/color-list', data)
- }
- export const getPriceChangeList = data => {
- return https.get('/price-change/list', data)
- }
- export const getCostChangeList = data => {
- return https.get('/cost-change/list', data)
- }
|