product.js 291 B

12345678
  1. //请求工具参考https://ext.dcloud.net.cn/plugin?id=392
  2. const { http } = uni.$u
  3. // 查询商品spu列表
  4. export const productSpuPage = params => http.get('product/spu/page', { params })
  5. // 查询商品
  6. export const getSpuDetail = id => http.get('product/spu/get-detail?id=' + id, { })