123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- import request from "@/utils/request.js";
- /**
- * 获取产品详情
- * @param int id
- *
- */
- export function getProductDetail(id, type) {
- return request.get('product/detail/' + id + '?type=' + type, {}, {
- noAuth: true
- });
- }
- /**
- * 产品分享二维码 推广员
- * @param int id
- */
- // #ifndef MP
- export function getProductCode(id) {
- return request.get('product/code/' + id, {});
- }
- // #endif
- // #ifdef MP
- export function getProductCode(id) {
- return request.get('product/code/' + id, {
- user_type: 'routine'
- });
- }
- // #endif
- /**
- * 添加收藏
- * @param int id
- * @param string category product=普通产品,product_seckill=秒杀产品
- */
- export function collectAdd(id, category) {
- return request.post('collect/add', {
- id: id,
- 'category': category === undefined ? 'product' : category
- });
- }
- /**
- * 取消收藏产品
- * @param int id
- */
- export function collectDel(proId) {
- return request.post(`collect/cancel/${proId}`);
- }
- /**
- * 删除收藏产品
- * @param string id
- */
- export function collectDelete(ids) {
- return request.post(`collect/delete`,ids);
- }
- /**
- * 购车添加
- *
- */
- export function postCartAdd(data) {
- return request.post('cart/save', data, {});
- }
- /**
- * 获取分类列表
- *
- */
- export function getCategoryList() {
- return request.get('category', {}, {
- noAuth: true
- });
- }
- /**
- * 获取产品列表
- * @param object data
- */
- export function getProductslist(data) {
- return request.get('products', data, {
- noAuth: true
- });
- }
- /**
- * 获取推荐产品
- *
- */
- export function getProductHot(page, limit) {
- return request.get("product/hot", {
- page: page === undefined ? 1 : page,
- limit: limit === undefined ? 4 : limit
- }, {
- noAuth: true
- });
- }
- /**
- * 批量收藏
- *
- * @param object id 产品编号 join(',') 切割成字符串
- * @param string category
- */
- export function collectAll(id, category) {
- return request.post('collect/all', {
- id: id,
- category: category === undefined ? 'product' : category
- });
- }
- /**
- * 首页产品的轮播图和产品信息
- * @param int type
- *
- */
- export function getGroomList(type, data) {
- return request.get('index/product/' + type, data, {
- noAuth: true
- });
- }
- /**
- * 获取收藏列表
- * @param object data
- */
- export function getCollectUserList(data) {
- return request.get('collect/user', data)
- }
- /**
- * 获取产品评论
- * @param int id
- * @param object data
- *
- */
- export function getReplyList(id, data) {
- return request.get('reply/list/' + id, data,{
- noAuth: true
- })
- }
- /**
- * 产品评价数量和好评度
- * @param int id
- */
- export function getReplyConfig(id) {
- return request.get('reply/config/' + id,{},{
- noAuth: true
- });
- }
- /**
- * 获取搜索关键字获取
- *
- */
- export function getSearchKeyword() {
- return request.get('search/keyword', {}, {
- noAuth: true
- });
- }
- /**
- * 门店列表
- * @returns {*}
- */
- export function storeListApi(data) {
- return request.post("store/list", data, {}, 1);
- }
- /**
- * 优品推荐
- * @param object data
- */
- export function getProductGood() {
- return request.get('product/good');
- }
- /**
- * 详情页产品评论
- * @param int id
- * @param object data
- *
- */
- export function getReplyProduct(id) {
- return request.get('reply/product/' + id, {
- noAuth: true
- })
- }
|