index.js 690 B

1234567891011121314151617181920212223242526272829
  1. import https from '@/plugins/luch-request_0.0.7/request'
  2. export const getPriceChangeList = data => {
  3. return https.get('/price-change/list', data)
  4. }
  5. export const changeHalf = data => {
  6. return https.post('/item/change-half', data)
  7. }
  8. export const getItemList = data => {
  9. return https.get('/item/get-item-list', data)
  10. }
  11. export const getCostChangeList = data => {
  12. return https.get('/cost-change/list', data)
  13. }
  14. export const getPoster = data => {
  15. return https.get('/item/get-poster', data)
  16. }
  17. export const changeFrontHide = data => {
  18. return https.get('/item/change-front-hide', data)
  19. }
  20. export const changeVirtualStock = data => {
  21. return https.get('/item/change-virtual-stock', data)
  22. }