| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- import request from '@/utils/request';
- //当前客户下的站点地址
- export function getSiteAddress(query: any) {
- return request({
- url: '/product/indexSiteProduct/getSiteAddress',
- method: 'get',
- params: query
- });
- }
- //外面循环
- export function getSiteFloorList(query: any) {
- return request({
- url: '/product/indexSiteProduct/getSiteFloorList',
- method: 'get',
- params: query
- });
- }
- // 外面循环-商品
- export function getSiteFloorProductList(query: any) {
- return request({
- url: '/product/indexSiteProduct/getSiteFloorProductList',
- method: 'get',
- params: query
- });
- }
- // 外面循环-品牌
- export function getSiteFloorBrandList(query: any) {
- return request({
- url: '/product/indexSiteProduct/getSiteFloorBrandList',
- method: 'get',
- params: query
- });
- }
- // 商品
- export function getSiteProductList(query: any) {
- return request({
- url: '/product/indexSiteProduct/getSiteProductList',
- method: 'get',
- params: query
- });
- }
|