diff --git a/App.vue b/App.vue index ca2a1fb..6cada43 100644 --- a/App.vue +++ b/App.vue @@ -5,15 +5,15 @@ // brestUrl: 'http://192.168.3.4:9302/brest', // imgUrl: 'https://192.168.3.4:9301/filesystem/', //正式 - url: 'https://hsg.dctpay.com/crest', - imgUrl: 'https://hsg.dctpay.com/filesystem/', - brestUrl: 'https://hsg.dctpay.com/brest', - imageWxImg: 'https://hsg.dctpay.com/filesystem/wxApplets/', + // url: 'https://hsg.dctpay.com/crest', + // imgUrl: 'https://hsg.dctpay.com/filesystem/', + // brestUrl: 'https://hsg.dctpay.com/brest', + // imageWxImg: 'https://hsg.dctpay.com/filesystem/wxApplets/', //测试 - // url: 'https://hsgcs.dctpay.com/crest', - // brestUrl : 'https://hsgcs.dctpay.com/brest', - // imgUrl: 'https://hsgcs.dctpay.com/filesystem/', - // imageWxImg:'https://hsgcs.dctpay.com/filesystem/wxApplets/', + url: 'https://hsgcs.dctpay.com/crest', + brestUrl : 'https://hsgcs.dctpay.com/brest', + imgUrl: 'https://hsgcs.dctpay.com/filesystem/', + imageWxImg:'https://hsgcs.dctpay.com/filesystem/wxApplets/', userInfo: "", brestUserInfo: '', bresthighAgent: '', @@ -51,7 +51,9 @@ //第三方嵌入id mchId: '', //千猪名称 - qianzhuCityName: '' + qianzhuCityName: '重庆市', + //团油数据 + pelletoilList:'' }, onLaunch: function() {}, diff --git a/Utils/Api.js b/Utils/Api.js index 7500a73..3973b66 100644 --- a/Utils/Api.js +++ b/Utils/Api.js @@ -107,7 +107,11 @@ export const orderToGoldPay = params => { //查询用户积分使用情况 export const getUserGoldRecList = params => { return POST('GET', `${base}/highGoldRec/getUserGoldRecList`, params).then(res => res.data); -} +} +//查询积分7天过期 +export const selectByExpiringSoon = params => { + return POST('GET', `${base}/highGoldRec/selectByExpiringSoon`, params).then(res => res.data); +} //获取用户卡券 export const getUserCouponList = params => { return POST('GET', `${base}/coupon/getUserCouponList`, params).then(res => res.data); @@ -217,7 +221,11 @@ export const oilPriceCompute = params => { //团油计算新价格 export const oilPriceDiscountCompute = params => { return POST('GET', `${base}/highGas/oilPriceDiscountCompute`, params).then(res => res.data); -} +} +//在线加油优惠券 +export const canUseDiscount = params => { + return POST('POST', `${base}/userDiscount/canUseDiscount`, params).then(res => res.data); +} //查询卡数据字典 export const getDictionaryByCodeType = params => { return POST('GET', `${base}/common/getDictionaryByCodeType`, params).then(res => res.data); diff --git a/Utils/Request.js b/Utils/Request.js index 7ef525d..fa09372 100644 --- a/Utils/Request.js +++ b/Utils/Request.js @@ -10,7 +10,8 @@ function request(method, url, data) { 'Accept': "*/*", 'content-type': 'application/json;charset=utf-8', 'Authorization': app.globalData.token, - 'mchId': app.globalData.mchId + 'mchId': app.globalData.mchId, + 'regionId': app.globalData.cityId, }, //有的时候这里不一定是 token 还可能是 Authorization success(res) { resolve(res) diff --git a/member-Recharge/rec-confirmation/rec-confirmation.vue b/member-Recharge/rec-confirmation/rec-confirmation.vue index 64437b1..4ef3d32 100644 --- a/member-Recharge/rec-confirmation/rec-confirmation.vue +++ b/member-Recharge/rec-confirmation/rec-confirmation.vue @@ -127,7 +127,7 @@ - diff --git a/pages.json b/pages.json index 569aad8..8d878b1 100644 --- a/pages.json +++ b/pages.json @@ -306,6 +306,7 @@ }, { "path": "pages/goods/recording/recording", "style": { + "navigationBarTitleText": "积分记录", "enablePullDownRefresh": false } diff --git a/pages/goods/recording/recording.vue b/pages/goods/recording/recording.vue index cb669cd..46264f0 100644 --- a/pages/goods/recording/recording.vue +++ b/pages/goods/recording/recording.vue @@ -1,16 +1,16 @@