12345678910111213141516171819202122232425262728293031323334 |
- import {request} from '@/utils/request.js'
- // 首页 分类列表 推荐列表
- export function search(data) {
- return request({
- url: '/zswl-cloud-shop/shopInfo/mainSearch',
- data
- })
- }
- // 店铺详情
- export function shopDetail(data) {
- return request({
- url: '/zswl-cloud-shop/shopInfo/detail',
- data
- })
- }
- // goodsInfo/appSearch
- export function appSearch(data) {
- return request({
- url: '/zswl-cloud-shop/goodsInfo/appSearch',
- data
- })
- }
- // 获取商品分类
- export function getSearchTypeData(params) {
- return request({
- url: '/zswl-cloud-shop/goodsCate/data',
- method: 'get',
- params
- })
- }
|