index.ts 416 B

12345678910111213141516171819
  1. import request from '@/utils/request';
  2. //列表
  3. export const getPcProductPage = (query: any) => {
  4. return request({
  5. url: '/product/indexProduct/getPcProductPage',
  6. method: 'get',
  7. params: query
  8. });
  9. };
  10. //查询顶级分类下的的品牌列表
  11. export const getBrandPage = (query: any) => {
  12. return request({
  13. url: '/product/indexProduct/getBrandPage',
  14. method: 'get',
  15. params: query
  16. });
  17. };