| 1234567891011121314151617181920212223242526272829 |
- import https from '@/plugins/luch-request_0.0.7/request'
- export const getPriceChangeList = data => {
- return https.get('/price-change/list', data)
- }
- export const changeHalf = data => {
- return https.post('/item/change-half', data)
- }
- export const getItemList = data => {
- return https.get('/item/get-item-list', data)
- }
- export const getCostChangeList = data => {
- return https.get('/cost-change/list', data)
- }
- export const getPoster = data => {
- return https.get('/item/get-poster', data)
- }
- export const changeFrontHide = data => {
- return https.get('/item/change-front-hide', data)
- }
- export const changeVirtualStock = data => {
- return https.get('/item/change-virtual-stock', data)
- }
|