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.
341 lines
12 KiB
341 lines
12 KiB
import {
|
|
POST
|
|
} from "./Request.js";
|
|
import {
|
|
POSTBREST} from "./bRequest.js";
|
|
let app = getApp();
|
|
let base = app.globalData.url;
|
|
let brestBase = app.globalData.brestUrl;
|
|
//根据code获取openId
|
|
export const HandleCode = params => {
|
|
return POST('GET', `${base}/wechat/handleCode`, params).then(res => res.data);
|
|
}
|
|
//微信登录获取手机号
|
|
export const GetPhoneNumber = params => {
|
|
return POST('GET', `${base}/wechat/getPhoneNumber`, params).then(res => res.data);
|
|
};
|
|
//获取用户授权信息
|
|
export const getUserInfo = params => {
|
|
return POST('GET', `${base}/wechat/getUserInfo`, params).then(res => res.data);
|
|
}
|
|
// 设置用户积分支付密码
|
|
export const setUserPayPwd = params => {
|
|
return POST('POST', `${base}/highUser/setUserPayPwd`, params).then(res => res.data);
|
|
}
|
|
// 修改用户积分支付密码
|
|
export const updateUserPayPwd = params => {
|
|
return POST('POST', `${base}/highUser/updateUserPayPwd`, params).then(res => res.data);
|
|
}
|
|
|
|
//获取用户信息
|
|
export const findUser = params => {
|
|
return POST('GET', `${base}/highUser/findUser`, params).then(res => res.data);
|
|
}
|
|
//绑定用户电话
|
|
export const loginByPhone = params => {
|
|
return POST('GET', `${base}/wechat/loginByPhone`, params).then(res => res.data);
|
|
};
|
|
//微信登录
|
|
export const WXlogin = params => {
|
|
return POST('GET', `${base}/wechat/login`, params).then(res => res.data);
|
|
};
|
|
//通过openid获取用户的信息
|
|
export const OpenidGetUser = (openId, params) => {
|
|
return POST('GET', `${base}/User/openid/${openId}`, params).then(res => res.data);
|
|
};
|
|
//获取卡券列表
|
|
export const getCouponList = params => {
|
|
return POST('GET', `${base}/coupon/getCouponList`, params).then(res => res.data);
|
|
};
|
|
//获取门店信息
|
|
export const getStoreListByCoupon = params => {
|
|
return POST('GET', `${base}/highMerchantStore/getStoreListByCoupon`, params).then(res => res.data);
|
|
}
|
|
//根据门店ID 获取门店详情
|
|
export const getMerchantStoreById = params => {
|
|
return POST('GET', `${base}/highMerchantStore/getMerchantStoreById`, params).then(res => res.data);
|
|
}
|
|
//根据门店ID 获取卡券
|
|
export const getCouponListByStoreId = params => {
|
|
return POST('GET', `${base}/coupon/getCouponListByStoreId`, params).then(res => res.data);
|
|
}
|
|
//卡券详情
|
|
export const getCouponById = params => {
|
|
return POST('GET', `${base}/coupon/getCouponById`, params).then(res => res.data);
|
|
}
|
|
//生成订单
|
|
export const addOrder = params => {
|
|
return POST('POST', `${base}/highOrder/addOrder`, params).then(res => res.data);
|
|
}
|
|
//获取订单支付信息
|
|
export const orderToPay = params => {
|
|
return POST('POST', `${base}/order/orderToPay`, params).then(res => res.data);
|
|
}
|
|
//积分支付
|
|
export const orderToGoldPay = params => {
|
|
return POST('POST', `${base}/order/orderToGoldPay`, params).then(res => res.data);
|
|
}
|
|
//查询用户积分使用情况
|
|
export const getUserGoldRecList = params => {
|
|
return POST('GET', `${base}/highGoldRec/getUserGoldRecList`, params).then(res => res.data);
|
|
}
|
|
//获取用户卡券
|
|
export const getUserCouponList = params => {
|
|
return POST('GET', `${base}/coupon/getUserCouponList`, params).then(res => res.data);
|
|
}
|
|
//获取用户卡券详情
|
|
export const getUserCouponDetail = params => {
|
|
return POST('GET', `${base}/coupon/getUserCouponDetail`, params).then(res => res.data);
|
|
}
|
|
//获取用户最新卡券详情
|
|
export const getUserNewCouponDetail = params => {
|
|
return POST('GET', `${base}/coupon/getUserNewCouponDetail`, params).then(res => res.data);
|
|
}
|
|
//获取订单信息
|
|
export const getUserOrderList = params => {
|
|
return POST('GET', `${base}/highOrder/getUserOrderList`, params).then(res => res.data);
|
|
}
|
|
//取消订单
|
|
export const cancelOrder = params => {
|
|
return POST('GET', `${base}/highOrder/cancelOrder`, params).then(res => res.data);
|
|
}
|
|
//订单查询详情
|
|
export const getOrderById = params => {
|
|
return POST('GET', `${base}/highOrder/getOrderById`, params).then(res => res.data);
|
|
}
|
|
//获取商户列表
|
|
export const getMerchantList = params => {
|
|
return POST('GET', `${base}/highMerchantStore/getMerchantList`, params).then(res => res.data);
|
|
}
|
|
//首页获取门店
|
|
export const getStoreListByMerchant = params => {
|
|
return POST('GET', `${base}/highMerchantStore/getStoreListByMerchant`, params).then(res => res.data);
|
|
}
|
|
//获取优惠券详情
|
|
export const getDiscountByQrCode = params => {
|
|
return POST('GET', `${base}/discount/getDiscountByQrCode`, params).then(res => res.data);
|
|
}
|
|
//领取优惠券
|
|
export const receiveDiscount = params => {
|
|
return POST('POST', `${base}/userDiscount/receiveDiscount`, params).then(res => res.data);
|
|
}
|
|
// 根据优惠券查卡券
|
|
export const getCouponByDiscount = params => {
|
|
return POST('GET', `${base}/discount/getCouponByDiscount`, params).then(res => res.data);
|
|
}
|
|
// 重新领取卡券
|
|
export const againReceiveCoupon = params => {
|
|
return POST('GET', `${base}/coupon/againReceiveCoupon`, params).then(res => res.data);
|
|
}
|
|
//查询我的优惠券
|
|
export const getUserDiscountList = params => {
|
|
return POST('GET', `${base}/userDiscount/getUserDiscountList`, params).then(res => res.data);
|
|
}
|
|
//我的优惠券查详情
|
|
export const getDiscountByUserDiscountId = params => {
|
|
return POST('GET', `${base}/userDiscount/getDiscountByUserDiscountId`, params).then(res => res.data);
|
|
}
|
|
//确认订单查优惠券
|
|
export const getUserNormalDiscountList = params => {
|
|
return POST('GET', `${base}/userDiscount/getUserNormalDiscountList`, params).then(res => res.data);
|
|
}
|
|
//搜索门店
|
|
export const getStoreList = params => {
|
|
return POST('GET', `${base}/highMerchantStore/getStoreList`, params).then(res => res.data);
|
|
}
|
|
//查询团油列表
|
|
export const getGasStoreList = params => {
|
|
return POST('GET', `${base}/highGas/getGasStoreList`, params).then(res => res.data);
|
|
}
|
|
//查询团油详情
|
|
export const getGasDetailByStoreKey = params => {
|
|
return POST('GET', `${base}/highGas/getGasDetailByStoreKey`, params).then(res => res.data);
|
|
}
|
|
|
|
//获取已开通的省份
|
|
export const getDredgeProvince = params => {
|
|
return POST('GET', `${base}/common/getDredgeProvince`, params).then(res => res.data);
|
|
}
|
|
//获取cms
|
|
export const getCmsContent = params => {
|
|
return POST('GET', `${base}/cmsContent/getCmsContent`, params).then(res => res.data);
|
|
}
|
|
|
|
/**
|
|
* 工会卡
|
|
*/
|
|
//根据卡号查询
|
|
export const getHuiLianTongCardByCardNo = params => {
|
|
return POST('GET', `${base}/highUserCard/getHuiLianTongCardByCardNo`, params).then(res => res.data);
|
|
}
|
|
// 获取用户卡号列表
|
|
export const getUserCardList = params => {
|
|
return POST('GET', `${base}/highUserCard/getUserCardList`, params).then(res => res.data);
|
|
}
|
|
// 根据手机号获取汇联通工会卡列表
|
|
export const getHuiLianTongCardByPhone = params => {
|
|
return POST('GET', `${base}/highUserCard/getHuiLianTongCardByPhone`, params).then(res => res.data);
|
|
}
|
|
// 删除用户卡号
|
|
export const delUserCard = params => {
|
|
return POST('POST', `${base}/highUserCard/delUserCard`, params).then(res => res.data);
|
|
}
|
|
// 查询汇联通工会卡详情
|
|
export const getHuiLianTongCardBalance = params => {
|
|
return POST('GET', `${base}/highUserCard/getHuiLianTongCardBalance?`, params).then(res => res.data);
|
|
}
|
|
// 查询汇联通工会卡消费记录
|
|
export const getHuiLianTongCardConsume = params => {
|
|
return POST('GET', `${base}/highUserCard/getHuiLianTongCardConsume`, params).then(res => res.data);
|
|
}
|
|
// 汇联通工会卡支付
|
|
export const hltUnionCardPay = params => {
|
|
return POST('POST', `${base}/order/hltUnionCardPay`, params).then(res => res.data);
|
|
}
|
|
export const bindHuiLianTongCard = params => {
|
|
return POST('POST', `${base}/highUserCard/bindHuiLianTongCard`, params).then(res => res.data);
|
|
}
|
|
/**
|
|
* 工会卡
|
|
*/
|
|
|
|
/**
|
|
* 抽奖活动
|
|
*/
|
|
export const getActivityByCoupon = params => {
|
|
return POST('GET', `${base}/activity/getActivityByCoupon`, params).then(res => res.data);
|
|
}
|
|
/**
|
|
* 用户抽奖
|
|
*/
|
|
export const userLottery = params => {
|
|
return POST('POST', `${base}/activity/userLottery`, params).then(res => res.data);
|
|
}
|
|
/**
|
|
* 获取用户抽奖次数
|
|
*/
|
|
export const getUserLotteryNum = params => {
|
|
return POST('GET', `${base}/activity/getUserLotteryNum`, params).then(res => res.data);
|
|
}
|
|
/**
|
|
* 查询中奖列表【只会提供最新的50条数据】
|
|
*/
|
|
export const getWinLotteryList = params => {
|
|
return POST('GET', `${base}/activity/getWinLotteryList`, params).then(res => res.data);
|
|
}
|
|
|
|
/**
|
|
* 肯德基地址
|
|
*/
|
|
export const getTPigKFCToken = params => {
|
|
return POST('GET', `${base}/tPig/getTPigKFCToken`, params).then(res => res.data);
|
|
}
|
|
//电影票
|
|
export const getTPigCinemaToken = params => {
|
|
return POST('GET', `${base}/tPig/getTPigCinemaToken`, params).then(res => res.data);
|
|
}
|
|
|
|
export const qzOrderToPay = params => {
|
|
return POST('POST', `${base}/order/qzOrderToPay`, params).then(res => res.data);
|
|
}
|
|
//电话费
|
|
export const getGatewayToken = params => {
|
|
return POST('GET', `${base}/tPig/getGatewayToken`, params).then(res => res.data);
|
|
}
|
|
//取消订单
|
|
export const cancelOrderByOrderNo = params => {
|
|
return POST('GET', `${base}/highOrder/cancelOrderByOrderNo`, params).then(res => res.data);
|
|
}
|
|
|
|
/**
|
|
* H5 获取用户信息
|
|
*/
|
|
export const getH5UserInfo = params => {
|
|
return POST('GET', `${base}/wechat/getH5UserInfo`, params).then(res => res.data);
|
|
}
|
|
//获取验证码
|
|
export const sendSmsCode = params => {
|
|
return POST('GET', `${base}/sms/sendSmsCode`, params).then(res => res.data);
|
|
}
|
|
//绑定手机号
|
|
export const bindUserPhone = params => {
|
|
return POST('GET', `${base}/highUser/bindUserPhone`, params).then(res => res.data);
|
|
}
|
|
//注册
|
|
export const H5login = params => {
|
|
return POST('GET', `${base}/user/login`, params).then(res => res.data);
|
|
}
|
|
export const getH5AccessToken = params => {
|
|
return POSTBREST('GET', `${base}/wechat/getH5AccessToken`, params).then(res => res.data);
|
|
}
|
|
|
|
//**门店//
|
|
export const userLogin = params => {
|
|
return POST('POST', `${brestBase}/login/userLogin`, params).then(res => res.data);
|
|
}
|
|
//门店扫码销核
|
|
export const useCouponCode = params => {
|
|
return POSTBREST('POST', `${brestBase}/couponCode/useCouponCode`, params).then(res => res.data);
|
|
}
|
|
|
|
|
|
|
|
//**代理商//
|
|
export const getAgentCount = params => {
|
|
return POSTBREST('GET', `${brestBase}/highCouponAgent/getAgentCount`, params).then(res => res.data);
|
|
}
|
|
// 查询销售码
|
|
export const getCodeListByAgentCoupon = params => {
|
|
return POSTBREST('GET', `${brestBase}/highCouponAgent/getCodeListByAgentCoupon`, params).then(res => res.data);
|
|
}
|
|
// 生成二维码
|
|
export const generateCode = params => {
|
|
return POSTBREST('POST', `${brestBase}/highCouponAgent/generateCode`, params).then(res => res.data);
|
|
}
|
|
// 查看二维码
|
|
export const getCodeById = params => {
|
|
return POSTBREST('GET', `${brestBase}/highCouponAgent/getCodeById`, params).then(res => res.data);
|
|
}
|
|
// 查看流水
|
|
export const getAgentSalesCodeList = params => {
|
|
return POSTBREST('GET', `${brestBase}/highCouponAgent/getAgentSalesCodeList`, params).then(res => res.data);
|
|
}
|
|
//查询流水总价格
|
|
export const getAgentSalesPriceCount = params => {
|
|
return POSTBREST('GET', `${brestBase}/highCouponAgent/getAgentSalesPriceCount`, params).then(res => res.data);
|
|
}
|
|
//修改密码
|
|
export const sendUserPass = params => {
|
|
return POSTBREST('POST', `${brestBase}/secUser/sendUserPass`, params).then(res => res.data);
|
|
}
|
|
|
|
|
|
|
|
|
|
// 话费
|
|
//积分支付
|
|
export const orderToGoldPayunion = params => {
|
|
return POST('POST', `${base}/outRechargeOrder/orderToGoldPay`, params).then(res => res.data);
|
|
}
|
|
|
|
//提交订单
|
|
export const addOrderPay = params => {
|
|
return POST('POST', `${base}/outRechargeOrder/addOrder`, params).then(res => res.data);
|
|
}
|
|
//话费充值查询
|
|
export const getListOutRechargePrice = params => {
|
|
return POST('GET', `${base}/outRechargePrice/getListOutRechargePrice`, params).then(res => res.data);
|
|
}
|
|
//提交订单
|
|
export const orderToUNionPay = params => {
|
|
return POST('POST', `${base}/outRechargeOrder/orderToPay`, params).then(res => res.data);
|
|
}
|
|
//工会卡支付
|
|
export const hltUnionCardPayUnion = params => {
|
|
return POST('POST', `${base}/outRechargeOrder/hltUnionCardPay`, params).then(res => res.data);
|
|
}
|
|
//话费列表
|
|
export const getUserOrderListhuafei = params => {
|
|
return POST('GET', `${base}/outRechargeOrder/getUserOrderList`, params).then(res => res.data);
|
|
}
|
|
|
|
|