You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
277 lines
5.2 KiB
277 lines
5.2 KiB
// +----------------------------------------------------------------------
|
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
|
// +----------------------------------------------------------------------
|
|
// | Author: CRMEB Team <admin@crmeb.com>
|
|
// +----------------------------------------------------------------------
|
|
|
|
import request from "@/utils/request.js";
|
|
|
|
/**
|
|
* 获取产品详情
|
|
* @param int id
|
|
*
|
|
*/
|
|
export function getProductDetail(id) {
|
|
return request.get('product/detail/' + id, {}, {
|
|
noAuth: true
|
|
});
|
|
}
|
|
|
|
/**
|
|
* 产品分享二维码 推广员
|
|
* @param int id
|
|
*/
|
|
// #ifdef H5 || APP-PLUS
|
|
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,
|
|
'product': category === undefined ? 'product' : category
|
|
});
|
|
}
|
|
|
|
/**
|
|
* 删除收藏产品
|
|
* @param int id
|
|
* @param string category product=普通产品,product_seckill=秒杀产品
|
|
*/
|
|
export function collectDel(id, category) {
|
|
return request.post('collect/del', {
|
|
id: id,
|
|
category: category === undefined ? 'product' : category
|
|
});
|
|
}
|
|
|
|
/**
|
|
* 购车添加
|
|
*
|
|
*/
|
|
export function postCartAdd(data) {
|
|
return request.post('cart/add', 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('groom/list/' + 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)
|
|
}
|
|
|
|
/**
|
|
* 产品评价数量和好评度
|
|
* @param int id
|
|
*/
|
|
export function getReplyConfig(id) {
|
|
return request.get('reply/config/' + id);
|
|
}
|
|
|
|
/**
|
|
* 获取搜索关键字获取
|
|
*
|
|
*/
|
|
export function getSearchKeyword() {
|
|
return request.get('search/keyword', {}, {
|
|
noAuth: true
|
|
});
|
|
}
|
|
|
|
/**
|
|
* 门店列表
|
|
* @returns {*}
|
|
*/
|
|
export function storeListApi(data) {
|
|
return request.get("store_list", data);
|
|
}
|
|
|
|
/**
|
|
* 套餐列表
|
|
* @param int id
|
|
*
|
|
*/
|
|
export function storeDiscountsList(id) {
|
|
return request.get('store_discounts/list/' + id, {}, {
|
|
noAuth: true
|
|
});
|
|
}
|
|
|
|
/**
|
|
* 购车添加、减少、修改
|
|
*
|
|
*/
|
|
export function postCartNum(data) {
|
|
return request.post('v2/set_cart_num', data);
|
|
}
|
|
/**
|
|
* 代理商申请
|
|
*
|
|
*/
|
|
export function create(data) {
|
|
return request.post(`agent/apply/${data.id}`, data);
|
|
}
|
|
|
|
/**
|
|
* 代理商规则
|
|
* @param object data
|
|
*/
|
|
export function getAgentAgreement(data) {
|
|
return request.get('agent/get_agent_agreement', {}, {
|
|
noAuth: true
|
|
});
|
|
}
|
|
|
|
/**
|
|
* h5用户发送验证码
|
|
* @param data object 用户手机号
|
|
*/
|
|
export function registerVerify(data) {
|
|
return request.post("register/verify", data, {
|
|
noAuth: true
|
|
});
|
|
}
|
|
|
|
/**
|
|
* 验证码key
|
|
*/
|
|
export function getCodeApi() {
|
|
return request.get("verify_code", {}, {
|
|
noAuth: true
|
|
});
|
|
}
|
|
/**
|
|
* 获取代理商表单信息
|
|
*/
|
|
export function getGoodsDetails() {
|
|
return request.get("agent/apply/info", {}, {
|
|
noAuth: true
|
|
});
|
|
}
|
|
|
|
/**
|
|
* 获取首页的属性
|
|
* @returns {*}
|
|
*/
|
|
export function getAttr(id, type) {
|
|
return request.get("v2/get_attr/" + id + "/" + type);
|
|
}
|
|
/**
|
|
* 获取首页商品列表(所有活动的)
|
|
* @param object data
|
|
*/
|
|
export function getHomeProducts(data) {
|
|
return request.get('home/products', data, {
|
|
noAuth: true
|
|
});
|
|
}
|
|
|
|
/**
|
|
* 预售详情
|
|
* @returns {*}
|
|
*/
|
|
export function getPresellProductDetail(id) {
|
|
return request.get("advance/detail/" + id);
|
|
}
|
|
|
|
/**
|
|
* 获取浏览记录列表
|
|
* @param object data
|
|
*/
|
|
export function getVisitList(data) {
|
|
return request.get('user/visit_list', data)
|
|
}
|
|
|
|
/**
|
|
* 获取浏览记录列表-删除
|
|
* @param object data
|
|
*/
|
|
export function deleteVisitList(data) {
|
|
return request.delete('user/visit', data)
|
|
} |