index-data.ts 1002 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. import request from '@/utils/request';
  2. //当前客户下的站点地址
  3. export function getSiteAddress(query: any) {
  4. return request({
  5. url: '/product/indexSiteProduct/getSiteAddress',
  6. method: 'get',
  7. params: query
  8. });
  9. }
  10. //外面循环
  11. export function getSiteFloorList(query: any) {
  12. return request({
  13. url: '/product/indexSiteProduct/getSiteFloorList',
  14. method: 'get',
  15. params: query
  16. });
  17. }
  18. // 外面循环-商品
  19. export function getSiteFloorProductList(query: any) {
  20. return request({
  21. url: '/product/indexSiteProduct/getSiteFloorProductList',
  22. method: 'get',
  23. params: query
  24. });
  25. }
  26. // 外面循环-品牌
  27. export function getSiteFloorBrandList(query: any) {
  28. return request({
  29. url: '/product/indexSiteProduct/getSiteFloorBrandList',
  30. method: 'get',
  31. params: query
  32. });
  33. }
  34. // 商品
  35. export function getSiteProductList(query: any) {
  36. return request({
  37. url: '/product/indexSiteProduct/getSiteProductList',
  38. method: 'get',
  39. params: query
  40. });
  41. }