const http = require('./http.js') /* * 商品分类 * */ export function getCategory() { return http.$http('get','category'); } /* * 商品列表 * */ export function getProducts(q) { return http.$http('get','products',q) } /* * 商品详情 * */ export function getProductDetail(id) { return http.$http('get',"/product/detail/" + id) }