Merge branch 'h5dev' into dev

# Conflicts:
#	pages/order/confirmation.vue
1.在线加油添加优惠券和积分兑换
2.积分记录修改
3.修改其他问题
yj-dev
杨杰 3 years ago
commit b0303b93c7
  1. 20
      App.vue
  2. 12
      Utils/Api.js
  3. 3
      Utils/Request.js
  4. 2
      member-Recharge/rec-confirmation/rec-confirmation.vue
  5. 1
      pages.json
  6. 71
      pages/goods/recording/recording.vue
  7. 534
      pages/goods/refuel-confirm/refuel-confirm.vue
  8. 108
      pages/goods/refuel-details/refuel-details.vue
  9. 2
      pages/pay/payment/payment.vue
  10. 4
      qianzhu-KFC/confirmOrder/confirmOrder.vue
  11. 2
      subPages/recharge-centre/recharge-centre.vue
  12. 4
      subPages/unionComfirmation/unionComfirmation.vue

@ -5,15 +5,15 @@
// brestUrl: 'http://192.168.3.4:9302/brest', // brestUrl: 'http://192.168.3.4:9302/brest',
// imgUrl: 'https://192.168.3.4:9301/filesystem/', // imgUrl: 'https://192.168.3.4:9301/filesystem/',
// //
url: 'https://hsg.dctpay.com/crest', // url: 'https://hsg.dctpay.com/crest',
imgUrl: 'https://hsg.dctpay.com/filesystem/', // imgUrl: 'https://hsg.dctpay.com/filesystem/',
brestUrl: 'https://hsg.dctpay.com/brest', // brestUrl: 'https://hsg.dctpay.com/brest',
imageWxImg: 'https://hsg.dctpay.com/filesystem/wxApplets/', // imageWxImg: 'https://hsg.dctpay.com/filesystem/wxApplets/',
// //
// url: 'https://hsgcs.dctpay.com/crest', url: 'https://hsgcs.dctpay.com/crest',
// brestUrl : 'https://hsgcs.dctpay.com/brest', brestUrl : 'https://hsgcs.dctpay.com/brest',
// imgUrl: 'https://hsgcs.dctpay.com/filesystem/', imgUrl: 'https://hsgcs.dctpay.com/filesystem/',
// imageWxImg:'https://hsgcs.dctpay.com/filesystem/wxApplets/', imageWxImg:'https://hsgcs.dctpay.com/filesystem/wxApplets/',
userInfo: "", userInfo: "",
brestUserInfo: '', brestUserInfo: '',
bresthighAgent: '', bresthighAgent: '',
@ -51,7 +51,9 @@
//id //id
mchId: '', mchId: '',
// //
qianzhuCityName: '' qianzhuCityName: '重庆市',
//
pelletoilList:''
}, },
onLaunch: function() {}, onLaunch: function() {},

@ -107,7 +107,11 @@ export const orderToGoldPay = params => {
//查询用户积分使用情况 //查询用户积分使用情况
export const getUserGoldRecList = params => { export const getUserGoldRecList = params => {
return POST('GET', `${base}/highGoldRec/getUserGoldRecList`, params).then(res => res.data); 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 => { export const getUserCouponList = params => {
return POST('GET', `${base}/coupon/getUserCouponList`, params).then(res => res.data); return POST('GET', `${base}/coupon/getUserCouponList`, params).then(res => res.data);
@ -217,7 +221,11 @@ export const oilPriceCompute = params => {
//团油计算新价格 //团油计算新价格
export const oilPriceDiscountCompute = params => { export const oilPriceDiscountCompute = params => {
return POST('GET', `${base}/highGas/oilPriceDiscountCompute`, params).then(res => res.data); 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 => { export const getDictionaryByCodeType = params => {
return POST('GET', `${base}/common/getDictionaryByCodeType`, params).then(res => res.data); return POST('GET', `${base}/common/getDictionaryByCodeType`, params).then(res => res.data);

@ -10,7 +10,8 @@ function request(method, url, data) {
'Accept': "*/*", 'Accept': "*/*",
'content-type': 'application/json;charset=utf-8', 'content-type': 'application/json;charset=utf-8',
'Authorization': app.globalData.token, 'Authorization': app.globalData.token,
'mchId': app.globalData.mchId 'mchId': app.globalData.mchId,
'regionId': app.globalData.cityId,
}, //有的时候这里不一定是 token 还可能是 Authorization }, //有的时候这里不一定是 token 还可能是 Authorization
success(res) { success(res) {
resolve(res) resolve(res)

@ -127,7 +127,7 @@
</view> </view>
<view class="width20 flright"> <view class="width20 flright">
<view class="yhprice"> <view class="yhprice">
<radio v-if="items.discountCondition && orderPrice > items.discountCondition" <radio v-if="items.discountCondition && orderPrice >= items.discountCondition"
color="#c72a20" :checked="items.id == memDiscountId" /> color="#c72a20" :checked="items.id == memDiscountId" />
<radio v-if="items.discountCondition && orderPrice < items.discountCondition" <radio v-if="items.discountCondition && orderPrice < items.discountCondition"
color="#c72a20" disabled="true" :checked="items.id == memDiscountId" /> color="#c72a20" disabled="true" :checked="items.id == memDiscountId" />

@ -306,6 +306,7 @@
}, { }, {
"path": "pages/goods/recording/recording", "path": "pages/goods/recording/recording",
"style": { "style": {
"navigationBarTitleText": "积分记录",
"enablePullDownRefresh": false "enablePullDownRefresh": false
} }

@ -1,16 +1,16 @@
<template> <template>
<view> <view>
<view v-if="recordInfo == '' " class="mart60 fotct font14 fcor666"> <!-- <view v-if="recordInfo == '' " class="mart60 fotct font14 fcor666">
<image mode="widthFix" style="width: 70vw;" :src="imagewxUrl+imgadres"></image> <image mode="widthFix" style="width: 70vw;" :src="imagewxUrl+imgadres"></image>
</view> </view>
-->
<view class="width94 backcorfff mart20" style="border-radius: 8px;"> <view class="width94 backcorfff mart20" style="border-radius: 8px;">
<view class="width94 alijus fotct font15 fcor333 paddtop20" v-if="recordInfo != ''" > <view class="width94 alijus fotct font16 fcor333 paddtop20">
<view class="width50" @click="changestu(1)">积分收支明细</view> <view class="width50" @click="changestu(1)">积分收支明细</view>
<view class="width50" @click="changestu(2)">7天即将过期积分</view> <view class="width50" @click="changestu(2)">7天即将过期积分</view>
</view> </view>
<view class="width94 paddtop15" v-if="recordInfo != ''" > <view class="width94 paddtop15">
<view class="width50 flleft fotct" v-if="typeId == 1"> <view class="width50 flleft fotct" v-if="typeId == 1">
<view class="width40w" style="height: 2px;background-color: red;"></view> <view class="width40w" style="height: 2px;background-color: red;"></view>
</view> </view>
@ -18,23 +18,29 @@
<view class="width40w" style="height: 2px;background-color: red;"></view> <view class="width40w" style="height: 2px;background-color: red;"></view>
</view> </view>
</view> </view>
<view class="width100 line1 marb20" v-if="recordInfo != ''"></view> <view class="width100 line1 marb20"></view>
<view v-if="recordInfo == '' " class="mart60 fotct font14 fcor666">
<image mode="widthFix" style="width: 70vw;" :src="imagewxUrl+imgadres"></image>
</view>
<view class="width100" v-for="recod in recordInfo" :key="recod.id"> <view class="width100" v-for="recod in recordInfo" :key="recod.id">
<view class="width94 font15 mart10 alijusstart"> <view class="width94 font16 mart10 alijusstart">
<view class="width70"> <view class="width70">
<view class="fcor666"> <view class="fcor666" v-if="recod.remark">
积分充值 {{recod.remark}}
</view> </view>
<view class="fcor999 font14 mart10"> <view class="fcor666" v-else>
暂无
</view>
<view class="fcor999 font13 mart10">
{{recod.createTime | formatDate('-')}} {{recod.createTime | formatDate('-')}}
</view> </view>
</view> </view>
<view class="width30"> <view class="width30">
<view class="font20 fotrt fcorred" v-if="typeId == 1"> <view class="font20 fotrt fcorred" v-if="recod.goldType == 1">
+{{recod.gold}} +{{recod.gold}}
</view> </view>
<view class=" font20 fotrt fcor41c" v-else> <view class=" font20 fotrt fcor41c" v-else>
-{{recod.gold}} -{{recod.gold}}
</view> </view>
</view> </view>
</view> </view>
@ -47,7 +53,8 @@
<script> <script>
import { import {
getUserGoldRecList getUserGoldRecList,
selectByExpiringSoon
} from '../../../Utils/Api.js'; } from '../../../Utils/Api.js';
let app = getApp(); let app = getApp();
export default { export default {
@ -63,16 +70,7 @@
} }
}, },
onLoad(option) { onLoad(option) {
// this.typeId = option.id;
// if (this.typeId == 1) {
uni.setNavigationBarTitle({
title: '积分记录'
})
// } else {
// uni.setNavigationBarTitle({
// title: ''
// })
// }
this.getUserGoldRecLists(); this.getUserGoldRecLists();
}, },
filters: { filters: {
@ -100,7 +98,17 @@
// //
changestu(item) { changestu(item) {
this.typeId = item; this.typeId = item;
if (item == 1) {
this.isNoMoreData = false;
this.pageNum = 1;
this.recordInfo = [];
this.getUserGoldRecLists();
} else {
this.recordInfo = [];
this.selectByExpiringSoon();
}
}, },
//
getUserGoldRecLists() { getUserGoldRecLists() {
uni.showLoading({ uni.showLoading({
title: '加载中...' title: '加载中...'
@ -112,7 +120,6 @@
let pagenum = this.pageNum; let pagenum = this.pageNum;
let params = { let params = {
pageNum: pagenum, pageNum: pagenum,
goldType: this.typeId,
pageSize: this.pageSize pageSize: this.pageSize
} }
getUserGoldRecList(params).then(res => { getUserGoldRecList(params).then(res => {
@ -129,6 +136,20 @@
uni.hideLoading() uni.hideLoading()
} }
}) })
},
//
selectByExpiringSoon() {
uni.showLoading({
title: '加载中...'
})
selectByExpiringSoon().then(res => {
uni.hideLoading();
if (res.return_code == '000000') {
this.recordInfo = res.return_data.list;
} else {
this.recordInfo = [];
}
})
} }
} }
} }

@ -2,12 +2,12 @@
<view> <view>
<!-- 头部 --> <!-- 头部 -->
<view class="width100 height120 backcorfff"> <view class="width100 height120 backcorfff">
<image :src="orderList.goodsImg" class="flleft conImg mart10 margle10"></image> <image :src="gasOrderList.gasimg" class="flleft conImg mart10 margle10"></image>
<view class="conCont paddtop15"> <view class="conCont paddtop15">
<view class="font20 fontwig6 fcor333 text1 paddtright10">{{orderList.goodsName}}</view> <view class="font20 fontwig6 fcor333 text1 paddtright10">{{gasOrderList.gasname}}</view>
<view class="font14 fcor999 text2 paddtop5 paddtright10">{{refulAdress}}</view> <view class="font14 fcor999 text2 paddtop5 paddtright10">{{gasOrderList.gasaddress}}</view>
<view class="font20 fontwig6 fcoreb5 paddtop5">{{orderList.gasPricePreferences}} <view class="font20 fontwig6 fcoreb5 paddtop5">{{gasOrderList.highChildOrderList[0].gasPriceVip}}
<text class="margle10 slogan font14">{{orderList.gasPriceGun}}</text> <text class="margle10 slogan font14">{{gasOrderList.highChildOrderList[0].gasPriceGun}}</text>
</view> </view>
</view> </view>
</view> </view>
@ -19,7 +19,7 @@
油号\油枪 油号\油枪
</view> </view>
<view class="flright width40 fotct"> <view class="flright width40 fotct">
{{orderList.gasOilNo}}#/{{orderList.gasGunNo}} {{gasOrderList.highChildOrderList[0].gasOilNo}}#/{{gasOrderList.highChildOrderList[0].gasGunNo}}
</view> </view>
</view> </view>
<view class="line1"></view> <view class="line1"></view>
@ -28,7 +28,7 @@
加油金额 加油金额
</view> </view>
<view class="flright width40 fotct"> <view class="flright width40 fotct">
¥{{orderList.totalPrice}} ¥{{orderList.oilingPrice}}
</view> </view>
</view> </view>
<!-- 新增 --> <!-- 新增 -->
@ -38,46 +38,31 @@
加油升数 加油升数
</view> </view>
<view class="flright width40 fotct"> <view class="flright width40 fotct">
{{orderList.gasOilLiters}}L {{orderList.oilLiters}}L
</view> </view>
</view> </view>
<view class="line1"></view> <view class="line1"></view>
<view class="heightl60 paddleft10 fcor666 font16 width100 backcorfff">
<view class="flleft width50">
平台折扣
</view>
<view class="flright width40 fotct" v-if="orderList.gasDiscount != 1">
{{(orderList.gasDiscount * 100).toFixed(2)}}
</view>
<view class="flright width40 fotct" v-else>
</view>
</view>
<view class="line1"></view>
<view class="heightl60 paddleft10 fcor666 font16 width100 backcorfff"> <view class="heightl60 paddleft10 fcor666 font16 width100 backcorfff">
<view class="flleft width50"> <view class="flleft width50">
每升优惠 平台折扣
</view>
<view class="flright width40 fotct">
¥{{orderList.gasLitersPreferences}}
</view> </view>
</view> <view class="flright width40 fotct" v-if="orderList.discount != 1">
<view class="line1"></view> {{(orderList.discount * 100).toFixed(2)}}
<view class="heightl60 paddleft10 fcor666 font16 width100 backcorfff">
<view class="flleft width50">
加油补贴()
</view> </view>
<view class="flright width40 fotct"> <view class="flright width40 fotct" v-else>
¥{{orderList.gasOilSubsidy}}
</view> </view>
</view> </view>
<view class="line1"></view> <view class="line1"></view>
<view class="heightl60 paddleft10 fcor666 font16 width100 backcorfff"> <view class="heightl60 paddleft10 fcor666 font16 width100 backcorfff">
<view class="flleft width50"> <view class="flleft width50">
优惠价格 每升优惠
</view> </view>
<view class="flright width40 fotct"> <view class="flright width40 fotct" v-if="memDiscountId">
¥{{orderList.gasPricePreferences}} ¥{{orderList.litersPreferences}}
</view>
<view class="flright width40 fotct" v-else>
¥0
</view> </view>
</view> </view>
<view class="line1"></view> <view class="line1"></view>
@ -85,8 +70,11 @@
<view class="flleft width50"> <view class="flleft width50">
本次优惠 本次优惠
</view> </view>
<view class="flright width40 fotct"> <view class="flright width40 fotct" v-if="memDiscountId">
¥{{timedeductionPrice}} ¥{{orderList.totalPreferences}}
</view>
<view class="flright width40 fotct" v-else>
¥0
</view> </view>
</view> </view>
@ -138,33 +126,13 @@
<view class="mart10 heightl60 paddleft10 fcor333 fontwig6 font18 width100 backcorfff">支付方式:</view> <view class="mart10 heightl60 paddleft10 fcor333 fontwig6 font18 width100 backcorfff">支付方式:</view>
<view class="line1"></view> <view class="line1"></view>
<view class="width100 backcorfff"> <view class="width100 backcorfff">
<!-- <view class="height50 width100 backcorfff" @tap="paytype='jifen'">
<view class="width50 flleft fcor333 fontwig6 font16" style="padding-left: 4%;">
积分支付
</view>
<view class="width40 flright fotrt paddtright10 font15 fontwig6 fcor666 alijun"
style="align-items: center;">
<radio :checked="paytype=='jifen'" color="#0083f5" />
</view>
</view>
<view class="width94 line1 mart5 marb5"></view> -->
<view class="line1"></view>
<view class="heightl60 paddleft10 fcor666 width100 backcorfff" @tap="paytype='jifen'">
<view class="width60 flleft font14">
积分支付
</view>
<view class="flright width30 fotct">
<radio :checked="paytype=='jifen'" color="#0083f5" />
</view>
</view>
<view class="line1"></view> <view class="line1"></view>
<view class="heightl60 paddleft10 fcor666 width100 backcorfff" @tap="paytype='weixin'"> <view class="heightl60 paddleft10 fcor666 width100 backcorfff" @tap="paytype='weixin'">
<view class="width60 flleft font14"> <view class="width60 flleft font14">
微信支付 微信支付
</view> </view>
<view class="flright width30 fotct"> <view class="flright width30 fotct" v-if="isUse">
<radio :checked="paytype=='weixin'" color="#0083f5" /> <radio :checked="paytype=='weixin'" color="#0083f5" />
</view> </view>
</view> </view>
@ -174,7 +142,7 @@
<view class="width60 flleft font14"> <view class="width60 flleft font14">
油卡支付<text class="font14 fcor666 margle">余额: {{oilPirce}}</text> 油卡支付<text class="font14 fcor666 margle">余额: {{oilPirce}}</text>
</view> </view>
<view class="flright width30 fotct"> <view class="flright width30 fotct" v-if="isUse">
<radio :checked="paytype=='oilcard'" @click="changeRiado()" color="#0083f5" /> <radio :checked="paytype=='oilcard'" @click="changeRiado()" color="#0083f5" />
</view> </view>
</view> </view>
@ -199,9 +167,9 @@
<!-- 底部按钮 --> <!-- 底部按钮 -->
<view class="footer"> <view class="footer">
<view class="width50 flleft fcoreb5 padleft15 font15"> <view class="width50 flleft fcoreb5 padleft15 font15">
合计: <text class="font24">{{payprice}}</text> 合计: <text class="font24">{{payPrice}}</text>
</view> </view>
<button class="reBtn flright" @click="orderToPay">去支付</button> <button class="reBtn flright" @click="addOrder">去支付</button>
</view> </view>
@ -209,23 +177,25 @@
<wybPopup ref="popup" type="bottom" width="500" :scrollY="true" radius="6" :showCloseIcon="true"> <wybPopup ref="popup" type="bottom" width="500" :scrollY="true" radius="6" :showCloseIcon="true">
<view class="fotct font18 fontwig6 fcor333 mart10 height30">优惠券选择</view> <view class="fotct font18 fontwig6 fcor333 mart10 height30">优惠券选择</view>
<view class="width92 height110 tccs mart10" v-for="(items, index) in OrderPreList" :key="index" <view class="width92 height110 tccs mart10" v-for="(items, index) in OrderPreList" :key="index"
@click="radioChanges(items)"> @click="radioChanges(items.highDiscount,items)">
<image mode="widthFix" class="mart10" :src="imageUrl+items.discountImg"></image> <image mode="widthFix" class="mart10" :src="imageUrl+items.highDiscount.discountImg"></image>
<view class="contrig"> <view class="contrig">
<view class="width80p flleft"> <view class="width80p flleft">
<view class="font16 fontwig6 fcor333 text1 paddtop25">{{items.discountName}}</view> <view class="font16 fontwig6 fcor333 text1 paddtop25">{{items.highDiscount.discountName}}</view>
<view class="font13 fcor999 mart5">有效期:{{items.useEndTime | timeFormat('yyyy-mm-dd hh:mm:ss')}} <view class="font13 fcor999 mart5">
有效期:{{items.highDiscount.salesEndTime | timeFormat('yyyy-mm-dd hh:mm:ss')}}
</view> </view>
</view> </view>
<view class="width20 flright"> <view class="width20 flright">
<view class="yhprice"> <view class="yhprice">
<radio v-if="items.discountCondition && orderPrice > items.discountCondition" <radio
v-if="items.highDiscount.discountCondition && orderPrice >= items.highDiscount.discountCondition"
color="#c72a20" :checked="items.id == memDiscountId" /> color="#c72a20" :checked="items.id == memDiscountId" />
<radio
<radio v-if="items.discountCondition && orderPrice < items.discountCondition" v-if="items.highDiscount.discountCondition && orderPrice < items.highDiscount.discountCondition"
color="#c72a20" disabled="true" :checked="items.id == memDiscountId" /> color="#c72a20" disabled="true" :checked="items.id == memDiscountId" />
<radio v-if="!items.discountCondition" color="#c72a20" <radio v-if="!items.highDiscount.discountCondition" color="#c72a20"
:checked="items.id == memDiscountId" /> :checked="items.id == memDiscountId" />
</view> </view>
</view> </view>
@ -239,17 +209,20 @@
<script> <script>
import { import {
getOrderById,
orderToPay, orderToPay,
getHuiLianTongCardBalance, getHuiLianTongCardBalance,
hltUnionCardPay, hltUnionCardPay,
orderToGoldPay, orderToGoldPay,
findUser, findUser,
oilCardPay, oilCardPay,
getUserOrderPreList getUserOrderPreList,
canUseDiscount,
addOrder,
cancelOrder,
oilPriceDiscountCompute
} from '../../../Utils/Api.js'; } from '../../../Utils/Api.js';
import ssPaymentPassword from '../../../components/sanshui-payment-password/index.vue'; import ssPaymentPassword from '../../../components/sanshui-payment-password/index.vue';
import wybPopup from '../../../components/wyb-popup/wyb-popup.vue'; import wybPopup from '../../../components/wyb-popup/wyb-popup.vue';
import cjSlider from '@/components/cj-slider/cj-slider.vue'; import cjSlider from '@/components/cj-slider/cj-slider.vue';
let app = getApp(); let app = getApp();
// #ifdef H5 // #ifdef H5
@ -258,46 +231,42 @@
export default { export default {
components: { components: {
ssPaymentPassword, ssPaymentPassword,
wybPopup, wybPopup,
cjSlider cjSlider
}, },
data() { data() {
return { return {
orderNo: '', orderNo: '',
couponId: '',
payprice: '', payprice: '',
orderList: '', orderList: '',
refulAdress: '',
tongCardPrice: 0, tongCardPrice: 0,
imageUrl: app.globalData.imgUrl,
oilPirce: 0, // oilPirce: 0, //
user: '', user: '',
paytype: 'weixin', paytype: 'weixin',
PaymentPassword: '', PaymentPassword: '',
timedeductionPrice: '0', // // timedeductionPrice: '0', //
orderPrice: '', //
deductionPrice: '0.00', // deductionPrice: '0.00', //
OrderPreList: [], // OrderPreList: [], //
isUse: true, // isUse: true, //
payPrice: 0, // payPrice: 0, //
isDiscount: true, // isDiscount: true, //
memDiscountId: '', //id memDiscountId: '', //id
priceValue: [0, 0], // priceValue: [0, 0], //
availIntegal: 0, // availIntegal: 0, //
gasOrderList: '' //
} }
}, },
onLoad(e) { onLoad(e) {
this.payprice = e.payprice; this.gasOrderList = app.globalData.pelletoilList;
this.orderNo = e.orderId; this.orderPrice = this.gasOrderList.highChildOrderList[0].goodsPrice;
this.couponId = e.couponId;
this.refulAdress = e.adres;
this.getOrderById();
}, },
onShow() { onShow() {
let that = this; let that = this;
that.paytype = ''; that.paytype = '';
// that.user = app.globalData.userInfo;
that.findUser(); that.findUser();
// that.getHuiLianTongCardBalance();
}, },
methods: { methods: {
findUser() { findUser() {
@ -308,8 +277,9 @@
this.user = res.return_data; this.user = res.return_data;
if (res.return_data.oilCard) { if (res.return_data.oilCard) {
this.oilPirce = res.return_data.oilCard.amount; this.oilPirce = res.return_data.oilCard.amount;
} }
this.getUserOrderPreList(); this.canUseDiscount();
this.oilPriceDiscountCompute();
uni.setStorage({ uni.setStorage({
key: "user", key: "user",
data: res.return_data data: res.return_data
@ -317,36 +287,59 @@
} }
}); });
}, },
// //
getUserOrderPreList() { canUseDiscount() {
let params = { let params = {
useScope: 4 "goodsType": "3",
"goodsId": this.gasOrderList.highChildOrderList[0].goodsId,
"goodsPrice": this.gasOrderList.highChildOrderList[0].goodsPrice
} }
getUserOrderPreList(params).then(res => { canUseDiscount(params).then(res => {
if (res.return_code == '000000') { if (res.return_code == '000000') {
this.OrderPreList = res.return_data; this.OrderPreList = res.return_data;
} }
}); });
}, },
//
oilPriceDiscountCompute() {
let datas = {
"price": this.gasOrderList.highChildOrderList[0].goodsPrice,
"goodsId": this.gasOrderList.highChildOrderList[0].goodsId,
"oilNo": this.gasOrderList.highChildOrderList[0].gasOilNo,
"isTyAgent": this.gasOrderList.isTyAgent
}
oilPriceDiscountCompute(datas).then(res => {
if (res.return_code == '000000') {
this.orderList = res.return_data;
this.payPrice = res.return_data.payPrice;
let payprice = parseFloat(this.payPrice * 100).toFixed(
0);
if (payprice > this.user.gold) {
this.availIntegal = this.user.gold;
} else {
this.availIntegal = payprice;
}
}
})
},
// //
showPopup() { showPopup() {
this.$refs.popup.show(); this.$refs.popup.show();
}, },
// //
radioChanges(item) { radioChanges(item, items) {
this.rechangeload(); this.rechangeload();
if (this.memDiscountId == item.id) { // if (this.memDiscountId == items.id) { //
this.memDiscountId = ''; this.memDiscountId = '';
this.deductionPrice = '0.00'; this.deductionPrice = '0.00';
this.priceCaluc(this.totalprice); this.priceCaluc(this.orderList.payPrice);
} else { // } else { //
if (item.discountType == 1) { if (item.discountType == 1) {
if (this.orderPrice > item.discountCondition) { if (this.orderPrice >= item.discountCondition) {
this.memDiscountId = item.id; this.memDiscountId = items.id;
// //
this.deductionPrice = item.discountPrice; this.deductionPrice = item.discountPrice;
let oldprice = this.orderPrice - this.deductionPrice; let oldprice = this.orderPrice - this.deductionPrice;
@ -360,17 +353,16 @@
} }
} }
if (item.discountType == 2) { if (item.discountType == 2) {
this.memDiscountId = item.id; this.memDiscountId = items.id;
// //
this.deductionPrice = item.discountPrice; this.deductionPrice = item.discountPrice;
let oldprice = this.orderPrice - this.deductionPrice; let oldprice = this.orderPrice - this.deductionPrice;
this.priceCaluc(oldprice); this.priceCaluc(oldprice);
} }
if (item.discountType == 3) { if (item.discountType == 3) {
this.memDiscountId = item.id; this.memDiscountId = items.id;
// //
this.deductionPrice = parseFloat(this.orderPrice - (this.orderPrice * item.discountPrice)) this.deductionPrice = this.orderPrice - (this.orderPrice * item.discountPrice);
.toFixed(2);
let oldprice = parseFloat(this.orderPrice * item.discountPrice).toFixed(2); let oldprice = parseFloat(this.orderPrice * item.discountPrice).toFixed(2);
this.priceCaluc(oldprice); this.priceCaluc(oldprice);
@ -380,9 +372,10 @@
}, },
// //
priceCaluc(item) { priceCaluc(item) {
let zkprice = parseFloat(this.rechargeDes.integralDiscount / 100).toFixed(2); // let zkprice = 0.9;
let pprice = parseFloat(item * 100).toFixed(0); // parseFloat(this.rechargeDes.integralDiscount / 100).toFixed(2);
let payprice = parseFloat(item * 100 * zkprice).toFixed(0); // let pprice = parseFloat(item * 100).toFixed(0);
let payprice = parseFloat(item * 100).toFixed(0);
if (payprice > this.user.gold) { if (payprice > this.user.gold) {
this.availIntegal = this.user.gold; this.availIntegal = this.user.gold;
this.priceValue[1] = 0; this.priceValue[1] = 0;
@ -396,8 +389,9 @@
// //
calculatepayPrice() { calculatepayPrice() {
if (this.deductionPrice == 0) { if (this.deductionPrice == 0) {
this.payPrice = Math.abs(parseFloat(this.totalprice - (parseFloat(this.priceValue[1] / 100).toFixed( this.payPrice = Math.abs(parseFloat(this.orderList.payPrice - (parseFloat(this.priceValue[1] / 100)
2))) .toFixed(
2)))
.toFixed(2)); .toFixed(2));
} else { } else {
this.payPrice = Math.abs(parseFloat(this.orderPrice - (parseFloat(this.priceValue[1] / 100).toFixed( this.payPrice = Math.abs(parseFloat(this.orderPrice - (parseFloat(this.priceValue[1] / 100).toFixed(
@ -415,27 +409,28 @@
this.$nextTick(() => (this.isDiscount = true)) this.$nextTick(() => (this.isDiscount = true))
}, },
// //
blockStart() {}, blockStart() {},
blockMoving() { blockMoving() {
// console.log('') // console.log('')
}, },
// //
blockEnd() { blockEnd() {
this.isDiscount = 1; this.isDiscount = 1;
if (this.deductionPrice == 0) { if (this.deductionPrice == 0) {
this.payPrice = Math.abs(parseFloat(this.totalprice - parseFloat(this.priceValue[1] / 100).toFixed(2)) this.payPrice = Math.abs(parseFloat(this.orderList.payPrice - parseFloat(this.priceValue[1] / 100)
.toFixed(2)); .toFixed(2))
} else { .toFixed(2));
this.payPrice = Math.abs(parseFloat(this.orderPrice - parseFloat(this.priceValue[1] / 100).toFixed(2) - } else {
this.deductionPrice).toFixed(2)); this.payPrice = Math.abs(parseFloat(this.orderPrice - parseFloat(this.priceValue[1] / 100).toFixed(2) -
} this.deductionPrice).toFixed(2));
if (this.payPrice == 0) { }
this.isUse = false; if (this.payPrice == 0) {
this.paytype = ''; this.isUse = false;
} else { this.paytype = '';
this.isUse = true; } else {
} this.isUse = true;
}
}, },
// //
@ -452,6 +447,55 @@
uni.showLoading({ uni.showLoading({
title: '支付中...' title: '支付中...'
}) })
if (this.payPrice == 0 && !this.orderNo) {
let goods = {
"identificationCode": this.gasOrderList.identificationCode,
"isTyAgent": this.gasOrderList.isTyAgent,
"gasStaffCode": app.globalData.staffCode,
"payGold": this.priceValue[1],
"memDiscountId": this.memDiscountId,
"payPwd": this.PaymentPassword,
"highChildOrderList": [{
"goodsType": this.gasOrderList.highChildOrderList[0].goodsType,
"goodsId": this.gasOrderList.highChildOrderList[0].goodsId,
"saleCount": 1,
"goodsPrice": this.gasOrderList.highChildOrderList[0].goodsPrice,
"gasGunNo": this.gasOrderList.highChildOrderList[0].gasGunNo,
"gasOilNo": this.gasOrderList.highChildOrderList[0].gasOilNo,
"gasOilType": this.gasOrderList.highChildOrderList[0].gasOilType,
"gasPriceGun": this.gasOrderList.highChildOrderList[0].gasPriceGun,
"gasPriceVip": this.gasOrderList.highChildOrderList[0].gasPriceVip,
}]
}
addOrder(goods).then(res => {
uni.hideLoading();
if (res.return_code == '000000') {
if (app.globalData.gasKey) {
app.globalData.gasKey = '';
app.globalData.staffCode = '';
uni.removeStorage({
key: 'gasKey'
})
uni.removeStorage({
key: 'staffCode'
})
}
this.orderNo = res.return_data.id;
uni.reLaunch({
url: '/pages/goods/refuel-succes/refuel-succes?id=' +
this.orderNo
});
} else {
uni.showToast({
title: res.return_msg,
icon: 'none',
duration: 2000
});
}
})
return;
}
if (this.paytype == 'jifen') { if (this.paytype == 'jifen') {
let params = { let params = {
"orderId": this.orderNo, "orderId": this.orderNo,
@ -500,11 +544,21 @@
return; return;
} }
if (res.return_code == '102130') { if (res.return_code == '102130') {
this.cancelOrder();
uni.navigateTo({ uni.navigateTo({
url: '../../login/updatePas/updatePas' url: '../../login/updatePas/updatePas'
}) })
return; return;
} }
if (res.return_code == '102132') {
this.cancelOrder();
uni.showToast({
title: res.return_msg,
icon: 'none'
})
return;
}
uni.navigateBack({})
uni.showToast({ uni.showToast({
title: res.return_msg, title: res.return_msg,
icon: 'none' icon: 'none'
@ -530,19 +584,41 @@
return; return;
} }
if (res.return_code == '102130') { if (res.return_code == '102130') {
this.cancelOrder();
uni.navigateTo({ uni.navigateTo({
url: '../../login/updatePas/updatePas' url: '../../login/updatePas/updatePas'
}) })
return; return;
} }
if (res.return_code == '102132') {
this.cancelOrder();
uni.showToast({
title: res.return_msg,
icon: 'none'
})
return;
}
uni.showToast({ uni.showToast({
title: res.return_msg, title: res.return_msg,
icon: 'none' icon: 'none'
}) })
uni.navigateBack({})
}) })
return; return;
} }
},
//
cancelOrder() {
let params = {
orderId: this.orderNo
}
cancelOrder(params).then(res => {
if (res.return_code == '000000') {
this.orderNo = '';
}
})
}, },
// //
changeRiado() { changeRiado() {
@ -578,21 +654,6 @@
return; return;
} }
}, },
getOrderById() {
uni.showLoading({
title: '加载中...'
})
let params = {
orderId: this.orderNo,
}
getOrderById(params).then(res => {
uni.hideLoading();
if (res.return_code == '000000') {
this.orderList = res.return_data.highChildOrderList[0];
this.timedeductionPrice = res.return_data.deductionPrice;
}
})
},
// //
getHuiLianTongCardBalance() { getHuiLianTongCardBalance() {
let params = { let params = {
@ -605,6 +666,70 @@
}); });
}, },
//
addOrder() {
if (this.payPrice == 0) {
this.$refs.paymentPassword.modalFun('show');
return;
}
if (this.paytype == '') {
uni.showToast({
title: '请选择支付方式',
icon: 'none',
duration: 2000
})
return;
}
if (this.orderNo) {
this.orderToPay();
return;
}
uni.showLoading({
title: '提交订单中...'
})
let goods = {
"identificationCode": this.gasOrderList.identificationCode,
"isTyAgent": this.gasOrderList.isTyAgent,
"gasStaffCode": app.globalData.staffCode,
"payGold": this.priceValue[1],
"memDiscountId": this.memDiscountId,
"highChildOrderList": [{
"goodsType": this.gasOrderList.highChildOrderList[0].goodsType,
"goodsId": this.gasOrderList.highChildOrderList[0].goodsId,
"saleCount": 1,
"goodsPrice": this.gasOrderList.highChildOrderList[0].goodsPrice,
"gasGunNo": this.gasOrderList.highChildOrderList[0].gasGunNo,
"gasOilNo": this.gasOrderList.highChildOrderList[0].gasOilNo,
"gasOilType": this.gasOrderList.highChildOrderList[0].gasOilType,
"gasPriceGun": this.gasOrderList.highChildOrderList[0].gasPriceGun,
"gasPriceVip": this.gasOrderList.highChildOrderList[0].gasPriceVip,
}]
}
addOrder(goods).then(res => {
uni.hideLoading();
if (res.return_code == '000000') {
if (app.globalData.gasKey) {
app.globalData.gasKey = '';
app.globalData.staffCode = '';
uni.removeStorage({
key: 'gasKey'
})
uni.removeStorage({
key: 'staffCode'
})
}
this.orderNo = res.return_data.id;
this.orderToPay();
} else {
uni.showToast({
title: res.return_msg,
icon: 'none',
duration: 2000
});
}
})
},
// //
orderToPay() { orderToPay() {
let that = this; let that = this;
@ -657,6 +782,7 @@
}, },
fail: function(err) { fail: function(err) {
uni.hideLoading(); uni.hideLoading();
uni.navigateBack({})
}, },
}); });
// #endif // #endif
@ -776,8 +902,12 @@
that.orderNo that.orderNo
}); });
}, },
cancel: function(r) {}, cancel: function(r) {
fail: function(res) {}, uni.navigateBack({})
},
fail: function(res) {
uni.navigateBack({})
},
complete: function(res) { complete: function(res) {
} }
@ -845,57 +975,59 @@
position: absolute; position: absolute;
right: 0px; right: 0px;
} }
} }
.concont { .concont {
border-radius: 12px; border-radius: 12px;
} }
.Bubble {
margin-left: 50%; .Bubble {
padding-top: 15px; margin-left: 50%;
} padding-top: 15px;
}
.tests {
border-radius: 15px; .tests {
height: 22px; border-radius: 15px;
line-height: 22px; height: 22px;
} line-height: 22px;
.cj-slider { }
width: 100%;
align-items: center; .cj-slider {
display: flex; width: 100%;
} align-items: center;
display: flex;
.yhqky { }
background: #ff0034;
color: #ffffff; .yhqky {
font-size: 14px; background: #ff0034;
padding-left: 5px; color: #ffffff;
padding-right: 5px; font-size: 14px;
margin-left: 8px; padding-left: 5px;
padding-top: 2px; padding-right: 5px;
padding-bottom: 2px; margin-left: 8px;
} padding-top: 2px;
padding-bottom: 2px;
.yhprice { }
margin-top: -30px;
} .yhprice {
margin-top: -30px;
.contrig { }
margin-left: 180rpx;
} .contrig {
margin-left: 180rpx;
.tccs { }
box-shadow: 0rpx 0rpx 10rpx rgba(0, 0, 0, 0.2);
border: 1px solid #f6f6f6; .tccs {
border-radius: 8px; box-shadow: 0rpx 0rpx 10rpx rgba(0, 0, 0, 0.2);
border: 1px solid #f6f6f6;
image { border-radius: 8px;
float: left;
width: 170rpx; image {
max-height: 170rpx; float: left;
margin-left: 10px; width: 170rpx;
} max-height: 170rpx;
margin-left: 10px;
}
} }
</style> </style>

@ -74,7 +74,7 @@
</view> </view>
<!-- 详情描述--> <!-- 详情描述-->
<view class="line10 mart15"></view> <view class="line10 mart15"></view>
<!-- <view class="width90 height40 mart10"> <!-- <view class="width90 height40 mart10">
<view class="flleft width50 font15 fcor666">加油升数:<text class="fcoreb5 margle"> <view class="flleft width50 font15 fcor666">加油升数:<text class="fcoreb5 margle">
{{oilLiters}}L</text></view> {{oilLiters}}L</text></view>
<view class="flright width50 font15 fcor666">油站直降:<text class="fcoreb5 margle"> <view class="flright width50 font15 fcor666">油站直降:<text class="fcoreb5 margle">
@ -216,7 +216,7 @@
}, },
onLoad(options) { onLoad(options) {
this.store_key = options.id; this.store_key = options.id;
this.counId = options.desId; this.counId = options.desId;
this.oilNo = options.oilNo; this.oilNo = options.oilNo;
if (app.globalData.accountId) { if (app.globalData.accountId) {
this.isTyAgent = true; this.isTyAgent = true;
@ -321,23 +321,24 @@
uni.hideLoading(); uni.hideLoading();
if (res.return_code == '000000') { if (res.return_code == '000000') {
this.storeList = res.return_data; this.storeList = res.return_data;
// if (!this.oilNo) { if (!this.oilNo || this.oilNo == undefined) {
// this.oilNo = res.return_data.oilPriceList[0].oilNoName; this.oilNo = res.return_data.oilPriceList[0].oilNoName;
this.priceVip = res.return_data.oilPriceList[0].priceVip; }
this.priceGun = res.return_data.oilPriceList[0].priceGun; this.priceVip = res.return_data.oilPriceList[0].priceVip;
this.priceOfficial = res.return_data.oilPriceList[0].priceOfficial; this.priceGun = res.return_data.oilPriceList[0].priceGun;
this.detailList = res.return_data.oilPriceList; this.priceOfficial = res.return_data.oilPriceList[0].priceOfficial;
this.counId = res.return_data.goodsId; this.detailList = res.return_data.oilPriceList;
this.oilType = res.return_data.oilPriceList[0].oilType; this.counId = res.return_data.goodsId;
this.gasGunList = res.return_data.gasGunList; this.oilType = res.return_data.oilPriceList[0].oilType;
for (var i = 0; i < res.return_data.gasGunList.length; i++) { this.gasGunList = res.return_data.gasGunList;
if (this.oilNo == res.return_data.gasGunList[i].oilNoName) { for (var i = 0; i < res.return_data.gasGunList.length; i++) {
this.gunnumber.push(res.return_data.gasGunList[i]) if (this.oilNo == res.return_data.gasGunList[i].oilNoName) {
// this.gunNo = res.return_data.gasGunList[i].gunNo; this.gunnumber.push(res.return_data.gasGunList[i])
this.gasOilNo = res.return_data.gasGunList[i].oilNo; // this.gunNo = res.return_data.gasGunList[i].gunNo;
} this.gasOilNo = res.return_data.gasGunList[i].oilNo;
} }
// } }
} else { } else {
uni.showToast({ uni.showToast({
title: res.return_msg, title: res.return_msg,
@ -661,13 +662,16 @@
}); });
return; return;
} }
uni.showLoading({ // uni.showLoading({
title: '提交订单中...' // title: '...'
}) // })
let goods = { let goods = {
"identificationCode": app.globalData.identificationCode, "identificationCode": app.globalData.identificationCode,
"isTyAgent": this.isTyAgent, "isTyAgent": this.isTyAgent,
"gasStaffCode": app.globalData.staffCode, "gasStaffCode": app.globalData.staffCode,
"gasimg": this.storeList.gasLogoSmall,
"gasname": this.storeList.gasName,
"gasaddress": this.storeList.gasAddress,
"highChildOrderList": [{ "highChildOrderList": [{
"goodsType": 3, "goodsType": 3,
"goodsId": this.counId, "goodsId": this.counId,
@ -681,32 +685,36 @@
}] }]
} }
addOrder(goods).then(res => { app.globalData.pelletoilList = goods;
uni.hideLoading(); uni.navigateTo({
if (res.return_code == '000000') { url: '/pages/goods/refuel-confirm/refuel-confirm'
if (app.globalData.gasKey) {
app.globalData.gasKey = '';
app.globalData.staffCode = '';
uni.removeStorage({
key: 'gasKey'
})
uni.removeStorage({
key: 'staffCode'
})
}
uni.redirectTo({
url: '/pages/goods/refuel-confirm/refuel-confirm?payprice=' + res.return_data
.payPrice + '&orderId=' + res.return_data.id + '&couponId=' + this.counId +
'&adres=' + this.storeList.gasAddress
})
} else {
uni.showToast({
title: res.return_msg,
icon: 'none',
duration: 2000
});
}
}) })
// addOrder(goods).then(res => {
// uni.hideLoading();
// if (res.return_code == '000000') {
// if (app.globalData.gasKey) {
// app.globalData.gasKey = '';
// app.globalData.staffCode = '';
// uni.removeStorage({
// key: 'gasKey'
// })
// uni.removeStorage({
// key: 'staffCode'
// })
// }
// uni.redirectTo({
// url: '/pages/goods/refuel-confirm/refuel-confirm?payprice=' + res.return_data
// .payPrice + '&orderId=' + res.return_data.id + '&couponId=' + this.counId +
// '&adres=' + this.storeList.gasAddress
// })
// } else {
// uni.showToast({
// title: res.return_msg,
// icon: 'none',
// duration: 2000
// });
// }
// })
}, },
} }
@ -725,8 +733,8 @@
border-radius: 5px; border-radius: 5px;
background-color: #f6f6f6; background-color: #f6f6f6;
color: #666666; color: #666666;
margin-right: 10px; margin-right: 3%;
margin-left: 15px; margin-left: 3%;
margin-top: 15px; margin-top: 15px;
display: inline-block; display: inline-block;
font-size: 16px; font-size: 16px;
@ -739,8 +747,8 @@
border-radius: 5px; border-radius: 5px;
border: 1px solid #089bf5; border: 1px solid #089bf5;
color: #089bf5; color: #089bf5;
margin-right: 10px; margin-right: 3%;
margin-left: 15px; margin-left: 3%;
margin-top: 15px; margin-top: 15px;
display: inline-block; display: inline-block;
font-size: 16px; font-size: 16px;

@ -18,7 +18,7 @@
</view> </view>
<view class="content"> <view class="content">
<view class="pay-list"> <view class="pay-list">
<view class="row" @tap="paytype='jinbi'" v-if="goodsType != 2 && goodsType != 8"> <view class="row" @tap="paytype='jinbi'" v-if="goodsType != 2 && goodsType != 8 && goodsType != 3">
<view class="left"> <view class="left">
<image src="../../../static/img/jfx.png"></image> <image src="../../../static/img/jfx.png"></image>
</view> </view>

@ -225,7 +225,7 @@
</view> </view>
<view class="width20 flright"> <view class="width20 flright">
<view class="yhprice"> <view class="yhprice">
<radio v-if="typeid == 1 && items.discountCondition && orderPrice > items.discountCondition" <radio v-if="typeid == 1 && items.discountCondition && orderPrice >= items.discountCondition"
color="#c72a20" :checked="items.id == memDiscountId" /> color="#c72a20" :checked="items.id == memDiscountId" />
<radio v-if="typeid == 1 && items.discountCondition && orderPrice < items.discountCondition" <radio v-if="typeid == 1 && items.discountCondition && orderPrice < items.discountCondition"
@ -234,7 +234,7 @@
<radio v-if="typeid == 1 && !items.discountCondition" color="#c72a20" <radio v-if="typeid == 1 && !items.discountCondition" color="#c72a20"
:checked="items.id == memDiscountId" /> :checked="items.id == memDiscountId" />
<radio v-if="typeid == 2 && items.discountCondition && orderPrice > items.discountCondition" <radio v-if="typeid == 2 && items.discountCondition && orderPrice >= items.discountCondition"
color="#2f6f43" :checked="items.id == memDiscountId" /> color="#2f6f43" :checked="items.id == memDiscountId" />
<radio v-if="typeid == 2 && items.discountCondition && orderPrice < items.discountCondition" <radio v-if="typeid == 2 && items.discountCondition && orderPrice < items.discountCondition"

@ -172,7 +172,7 @@
operatorType: item, operatorType: item,
regionId: app.globalData.cityId, regionId: app.globalData.cityId,
platformId: showType, platformId: showType,
rechargeType: this.swiperCurrent // rechargeType: this.swiperCurrent
} }
getListOutRechargePrice(params).then(res => { getListOutRechargePrice(params).then(res => {
uni.hideLoading() uni.hideLoading()

@ -35,7 +35,7 @@
</view> </view>
</view> </view>
<view class="width94 line1 mart5 marb5"></view> <view class="width94 line1 mart5 marb5"></view>
<view class="height50 width100 backcorfff" v-if="reType == 2" @click="showPopup()"> <view class="height50 width100 backcorfff" @click="showPopup()">
<view class="width50 flleft fcor333 fontwig6 font16" style="padding-left: 4%;"> <view class="width50 flleft fcor333 fontwig6 font16" style="padding-left: 4%;">
优惠抵扣<text class="yhqky">{{OrderPreList.length}}张可用</text> 优惠抵扣<text class="yhqky">{{OrderPreList.length}}张可用</text>
</view> </view>
@ -109,7 +109,7 @@
</view> </view>
</view> </view>
</view> </view>
<image :src="imagewxUrl+imgadres1" class="width100 mart20 marb30" mode="widthFix"></image> <!-- <image :src="imagewxUrl+imgadres1" class="width100 mart20 marb30" mode="widthFix"></image> -->
<view class="width100 height60"></view> <view class="width100 height60"></view>
<view class="footer"> <view class="footer">
<view class="settlement"> <view class="settlement">

Loading…
Cancel
Save