1. 会员等级背景图去掉校验 2. 当查询不到会员等级是,按无会员等级展示 3. 删除商城首页冗余配置在index中的引用 4. 换绑推广人时,计算上一个推广人的推广人数 5. pc后台清除推广人时,更新推广人数量 6. 保证砍价金额最小为0.01 7. 修复商品删除时购物车关联删除 8. 删除商品问题修复 9. 运费模板——指定包邮,包邮数量类型修改 10. 签到错误修复 11. 修复我的优惠券只查询20条的问题 12. 文章列表修复 13. 拼团商品详情页数据统计显示问题修复 14. PC后台,账户详情,持有优惠券列表修复 15. 支付查询参数修复 16. 修复过期优惠券可以重复领取 17. 订单邮费切换地址重复计算修复 18. 判断是否在指定包邮区域内 必须满足件数 + 金额 才能包邮 19. 支付页面,切换tab,金额计算问题修复 20. 物流模板新增、编辑——修复 21. 去除线下邮费的影响 22. 订单运费计算重写 23. 下单页面到店自提合计金额不应该计算商品邮费 24. 新人券领取后,部分使用时间为空——修复
233 lines
4.0 KiB
JavaScript
233 lines
4.0 KiB
JavaScript
import request from "@/utils/request.js";
|
|
/**
|
|
* 公共接口 ,优惠券接口 , 行业此讯 , 手机号码注册
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* 获取主页数据 无需授权
|
|
*
|
|
*/
|
|
export function getIndexData()
|
|
{
|
|
return request.get("index",{},{ noAuth : true});
|
|
}
|
|
|
|
/**
|
|
* 获取登录授权login
|
|
*
|
|
*/
|
|
export function getLogo()
|
|
{
|
|
return request.get('wechat/getLogo', {}, { noAuth : true});
|
|
}
|
|
|
|
|
|
/**
|
|
* 保存form_id
|
|
* @param string formId
|
|
*/
|
|
export function setFormId(formId) {
|
|
return request.post("wechat/set_form_id", { formId: formId});
|
|
}
|
|
|
|
/**
|
|
* 领取优惠卷
|
|
* @param int couponId
|
|
*
|
|
*/
|
|
export function setCouponReceive(couponId){
|
|
return request.post('coupon/receive', { couponId: couponId});
|
|
}
|
|
/**
|
|
* 优惠券列表
|
|
* @param object data
|
|
*/
|
|
export function getCoupons(data){
|
|
return request.get('coupons',data,{noAuth:true})
|
|
}
|
|
|
|
/**
|
|
* 我的优惠券
|
|
* @param int types 0全部 1未使用 2已使用
|
|
*/
|
|
export function getUserCoupons(data){
|
|
return request.get('coupon/list',data)
|
|
}
|
|
|
|
/**
|
|
* 文章分类列表
|
|
*
|
|
*/
|
|
export function getArticleCategoryList(){
|
|
return request.get('article/category/list',{},{noAuth:true})
|
|
}
|
|
|
|
/**
|
|
* 文章列表
|
|
* @param int cid
|
|
*
|
|
*/
|
|
export function getArticleList(cid,data){
|
|
return request.get('article/list/' + cid, data,{noAuth:true})
|
|
}
|
|
|
|
/**
|
|
* 文章 热门列表
|
|
*
|
|
*/
|
|
export function getArticleHotList(){
|
|
return request.get('article/hot/list',{},{noAuth:true});
|
|
}
|
|
|
|
/**
|
|
* 文章 轮播列表
|
|
*
|
|
*/
|
|
export function getArticleBannerList(){
|
|
return request.get('article/banner/list',{},{noAuth:true})
|
|
}
|
|
|
|
/**
|
|
* 文章详情
|
|
* @param int id
|
|
*
|
|
*/
|
|
export function getArticleDetails(id){
|
|
return request.get('article/info',id,{noAuth:true});
|
|
}
|
|
|
|
/**
|
|
* 手机号+验证码登录接口
|
|
* @param object data
|
|
*/
|
|
export function loginMobile(data){
|
|
return request.post('login/mobile',data,{noAuth:true})
|
|
}
|
|
|
|
/**
|
|
* 获取短信KEY
|
|
* @param object phone
|
|
*/
|
|
export function verifyCode(){
|
|
return request.get('verify_code', {},{noAuth:true})
|
|
}
|
|
|
|
/**
|
|
* 验证码发送
|
|
* @param object phone
|
|
*/
|
|
export function registerVerify(phone){
|
|
return request.post('sendCode', { phone: phone },{noAuth:true},1)
|
|
}
|
|
// export function registerVerify(phone, reset, key, code){
|
|
// return request.post('register/verify', { phone: phone, type: reset === undefined ? 'reset' : reset, key: key, code: code },{noAuth:true})
|
|
// }
|
|
|
|
/**
|
|
* 手机号注册
|
|
* @param object data
|
|
*
|
|
*/
|
|
export function phoneRegister(data){
|
|
return request.post('register',data,{noAuth:true});
|
|
}
|
|
|
|
/**
|
|
* 手机号修改密码
|
|
* @param object data
|
|
*
|
|
*/
|
|
export function phoneRegisterReset(data){
|
|
return request.post('register/reset',data,{noAuth:true})
|
|
}
|
|
|
|
/**
|
|
* 手机号+密码登录
|
|
* @param object data
|
|
*
|
|
*/
|
|
export function phoneLogin(data){
|
|
return request.post('login',data,{noAuth:true})
|
|
}
|
|
|
|
/**
|
|
* 切换H5登录
|
|
* @param object data
|
|
*/
|
|
// #ifdef MP
|
|
export function switchH5Login(){
|
|
return request.post('switch_h5', { 'from':'routine'});
|
|
}
|
|
// #endif
|
|
|
|
/*
|
|
* h5切换公众号登录
|
|
* */
|
|
// #ifdef H5
|
|
export function switchH5Login() {
|
|
return request.post("switch_h5", { 'from': "wechat" });
|
|
}
|
|
// #endif
|
|
|
|
/**
|
|
* 换绑手机号
|
|
*
|
|
*/
|
|
export function bindingPhone(data){
|
|
return request.post('update/binding',data);
|
|
}
|
|
|
|
/**
|
|
* 换绑手机号校验
|
|
*
|
|
*/
|
|
export function bindingVerify(data){
|
|
return request.post('update/binding/verify',data);
|
|
}
|
|
|
|
/**
|
|
* 退出登錄
|
|
*
|
|
*/
|
|
export function logout(){
|
|
return request.get('logout');
|
|
}
|
|
|
|
/**
|
|
* 获取订阅消息id
|
|
*/
|
|
export function getTemlIds(data)
|
|
{
|
|
return request.get('wechat/program/my/temp/list', data , { noAuth:true});
|
|
}
|
|
|
|
/**
|
|
* 首页拼团数据
|
|
*/
|
|
export function pink()
|
|
{
|
|
return request.get('pink', {}, { noAuth:true});
|
|
}
|
|
|
|
/**
|
|
* 获取城市信息
|
|
*/
|
|
export function getCity() {
|
|
return request.get('city/list', { }, { noAuth: true });
|
|
}
|
|
|
|
/**
|
|
* 获取小程序直播列表
|
|
*/
|
|
export function getLiveList(page,limit) {
|
|
return request.get('wechat/live', { page, limit}, { noAuth: true });
|
|
}
|
|
|
|
/**
|
|
* 获取小程序二维码
|
|
*/
|
|
export function getQrcode(data) {
|
|
return request.post('qrcode/get',data,{ noAuth: true });
|
|
}
|