1.修改文案

2.修改团油问题
yj-dev
杨杰 3 years ago
parent 08942d70a8
commit 1886cb29a0
  1. 4
      App.vue
  2. 9
      Utils/Api.js
  3. 2
      pages/goods/refuel-confirm/refuel-confirm.vue
  4. 151
      pages/goods/refuel-details/refuel-details.vue
  5. 4
      pages/goods/refuel-succes/refuel-succes.vue
  6. 9
      pages/goods/refuel/refuel.vue
  7. 6
      pages/order/confirmation.vue
  8. 56
      pages/tabBar/home/home.vue
  9. 6
      subPages/recharge-centre/recharge-centre.vue
  10. 4
      subPages/unionComfirmation/unionComfirmation.vue
  11. 4
      uni.scss

@ -32,7 +32,9 @@
//ID
storeid:'',
//
storename:''
storename:'',
//
accountId:''
},
onLaunch: function() {
},

@ -27,6 +27,10 @@ export const setUserPayPwd = params => {
export const updateUserPayPwd = params => {
return POST('POST', `${base}/highUser/updateUserPayPwd`, params).then(res => res.data);
}
//经纬度转换
export const findByLatAndLng = params => {
return POST('GET', `${base}/common/findByLatAndLng`, params).then(res => res.data);
}
//获取用户信息
export const findUser = params => {
@ -177,7 +181,10 @@ export const getGasStoreList = params => {
export const getGasDetailByStoreKey = params => {
return POST('GET', `${base}/highGas/getGasDetailByStoreKey`, params).then(res => res.data);
}
//团油距离限制
export const getDictionaryByCodeTypeOl = params => {
return POST('GET', `${base}/common/getDictionaryByCodeTypeOl`, params).then(res => res.data);
}
//获取已开通的省份
export const getDredgeProvince = params => {
return POST('GET', `${base}/common/getDredgeProvince`, params).then(res => res.data);

@ -137,7 +137,7 @@
let that = this;
that.paytype = '';
that.user = app.globalData.userInfo;
that.getHuiLianTongCardBalance();
// that.getHuiLianTongCardBalance();
},
methods: {
//

@ -2,7 +2,7 @@
<view>
<image mode="widthFix" class="width100" :src="storeList.gasLogoSmall"></image>
<view class="height100p titlecon backcorfff">
<view class="height60 paddtop25 width90">
<view class="height75 paddtop25 width90">
<view class="flleft width80p">
<view class="width100 text1 font18 fontwig6 fcor333">{{storeList.gasName}}</view>
<view class="width100 font14 fcor666 mart5">{{storeList.gasAddress}}</view>
@ -65,8 +65,8 @@
<view class="width90 mart15 font16 fcor666">加油金额</view>
<view class="width90 height40 mart10" style="border: 1px solid #f2f2f2;">
<view class="width8 flleft"></view>
<input type="digit" class="font16 width60 flleft height40" placeholder="输入金额" v-model="inputMoney"
@blur="Listeningfocus" maxlength="3" />
<input type="digit" class="font16 width60 flleft height40" placeholder="输入金额(保留1位小数)" v-model="inputMoney"
@blur="Listeningfocus" />
<view class="width30 height40 flright font14 fcor999 fotct"
style="border-left: 1px solid #f2f2f2;line-height: 40px;">
{{litre}}L
@ -82,17 +82,17 @@
<!-- 底部按钮 -->
<view class="footer">
<view class="flleft padleft15 font15 fcoreb5">
合计: <text class="font24">{{totalPrice}}</text><text
class="font12 fcor666" v-if="priceVip != priceOfficial">优惠约:{{discountPrice}}</text>
合计: <text class="font24">{{totalPrice}}</text><text class="font12 fcor666"
v-if="priceVip != priceOfficial">优惠约:{{discountPrice}}</text>
</view>
<!-- #ifdef MP -->
<button class="reBtn flright" v-if="user.phone == null" @click="jumpPhone">去支付</button>
<button class="reBtn flright" v-else @click="toPay">去支付</button>
<button class="reBtn flright" v-else @click="postionIng">去支付</button>
<!-- #endif -->
<!-- #ifdef H5 -->
<button class="reBtn flright" v-if="user.phone == null" @click="jumpH5Bding">去支付</button>
<button class="reBtn flright" v-else @click="toPay">去支付</button>
<button class="reBtn flright" v-else @click="postionIng">去支付</button>
<!-- #endif -->
</view>
@ -123,7 +123,8 @@
<script>
import {
getGasDetailByStoreKey,
addOrder
addOrder,
getDictionaryByCodeTypeOl
} from '../../../Utils/Api.js';
import wybPopup from '../../../components/wyb-popup/wyb-popup.vue';
let app = getApp();
@ -174,13 +175,21 @@
totalPrice: '0.00',
discountPrice: '0.00',
gasGunList: [],
oilType: ''
oilType: '',
distance: 9999, //
xzMoney: '300', //
isTyAgent: false //
}
},
onLoad(options) {
this.store_key = options.id;
this.counId = options.desId;
if (app.globalData.accountId) {
this.isTyAgent = true;
}
this.getGasDetailByStoreKey();
this.getDictionaryByCodeTypeOl();
this.getDictionaryByCodeTypeMoney();
},
onShow() {
this.user = app.globalData.userInfo;
@ -208,12 +217,14 @@
let params = {
storeKey: this.store_key,
latitude: app.globalData.latitude,
longitude: app.globalData.longitude
longitude: app.globalData.longitude,
isTyAgent: this.isTyAgent
}
getGasDetailByStoreKey(params).then(res => {
uni.hideLoading();
if (res.return_code == '000000') {
this.storeList = res.return_data;
if(!this.oilNo){
this.oilNo = res.return_data.oilPriceList[0].oilNoName;
this.priceVip = res.return_data.oilPriceList[0].priceVip;
this.priceGun = res.return_data.oilPriceList[0].priceGun;
@ -228,7 +239,7 @@
this.gasOilNo = res.return_data.gasGunList[i].oilNo;
}
}
}
} else {
uni.showToast({
title: res.return_msg,
@ -243,7 +254,28 @@
}
})
},
//
getDictionaryByCodeTypeOl() {
let datas = {
codeType: 'MILEAGE_LIMIT'
}
getDictionaryByCodeTypeOl(datas).then(res => {
if (res.return_code == '000000') {
this.distance = res.return_data.codeValue;
}
})
},
//
getDictionaryByCodeTypeMoney() {
let datas = {
codeType: 'TY_PRICE_LIMIT'
}
getDictionaryByCodeTypeOl(datas).then(res => {
if (res.return_code == '000000') {
this.xzMoney = res.return_data.codeValue;
}
})
},
//
changeValue(item) {
this.gunnumber = [];
@ -270,7 +302,7 @@
select(amount) {
this.inputMoney = amount.price;
this.litre = parseFloat(amount.price / this.priceGun).toFixed(2);
this.totalPrice = parseFloat(amount.price / this.priceGun * this.priceVip).toFixed(2);
this.totalPrice = parseFloat(amount.price / this.priceGun * this.priceVip).toFixed(1);
if (this.priceVip != this.priceGun) {
let gbprice = parseFloat(this.litre * this.priceOfficial).toFixed(2);
this.discountPrice = parseFloat(gbprice - this.inputMoney).toFixed(2);
@ -284,16 +316,45 @@
},
//
Listeningfocus() {
if(this.inputMoney > 800){
var a = /^[0-9]+(\.[0-9]{1})?$/;
var b = /^[0-9]+(.[0-9]{1})?$/;
if (this.inputMoney == '' || this.inputMoney < 10 || !(b.test(this.inputMoney)) || !(a.test(this
.inputMoney))) {
uni.showToast({
title: '加油金额不能超过800元',
icon: "none"
title: '请输入正确加油金额',
icon: "none",
duration: 2000
});
this.inputMoney = 800;
this.totalPrice = '0.00';
this.discountPrice = '0.00';
this.litre = '';
return;
}
// let inputs = this.inputMoney.split('.');
// if (inputs[1] != undefined && inputs[1].length > 1) {
// uni.showToast({
// title: '1',
// icon: "none",
// duration:2000
// });
// return;
// }
if (this.inputMoney > this.xzMoney) {
uni.showToast({
title: '加油金额不能超过' + this.xzMoney + '元',
icon: "none",
duration: 2000
});
this.inputMoney = this.xzMoney;
}
//
this.litre = parseFloat(this.inputMoney / this.priceOfficial).toFixed(2);
this.totalPrice = parseFloat(this.inputMoney / this.priceOfficial * this.priceVip).toFixed(2);
this.totalPrice = parseFloat(this.inputMoney / this.priceOfficial * this.priceVip).toFixed(1);
if (this.priceVip != this.priceOfficial) {
let gbprice = parseFloat(this.litre * this.priceOfficial).toFixed(2);
this.discountPrice = parseFloat(gbprice - this.totalPrice).toFixed(1);
@ -307,25 +368,67 @@
// }
},
//
jumpPhone(){
jumpPhone() {
uni.navigateTo({
url:'../../userLogin/userLogin'
url: '../../userLogin/userLogin'
})
},
/**
* 定位
*/
postionIng() {
let that = this;
if (that.inputMoney == '' || that.inputMoney < 10) {
uni.showToast({
title: '请输入正确金额',
icon: "none",
duration: 2000
});
return;
}
uni.getLocation({
type: 'wgs84',
success: function(res) {
app.globalData.latitude = res.latitude;
app.globalData.longitude = res.longitude;
that.getGasDetailByStoreKey();
setTimeout(() => {
that.toPay();
}, 500);
},
fail: (err) => {
uni.showToast({
title: '请打开设置里面的位置信息',
icon: "none",
duration: 2000
});
}
})
},
//
toPay() {
if (this.inputMoney == '' || this.inputMoney < 1) {
if (this.storeList.distance > this.distance) {
uni.showToast({
title: '请在' + this.distance + '公里内进行下单',
icon: "none",
duration: 3000
});
return;
}
if (this.inputMoney == '' || this.inputMoney < 10) {
uni.showToast({
title: '请输入正确金额',
icon: "none"
icon: "none",
duration: 2000
});
return false;
return;
}
uni.showLoading({
title: '提交订单中...'
})
let goods = {
"identificationCode":app.globalData.identificationCode,
"identificationCode": app.globalData.identificationCode,
"isTyAgent": this.isTyAgent,
"highChildOrderList": [{
"goodsType": 3,
"goodsId": this.counId,

@ -68,9 +68,9 @@
<text class="paddtright10">{{orderInfo.deductionPrice}}</text>
</view>
</view>
<view class="width90 font13 fcor999 mart10">
<!-- <view class="width90 font13 fcor999 mart10">
*本站不支持电子发票,如需发票请到加油站前台索取
</view>
</view> -->
</view>
</template>

@ -306,11 +306,15 @@
],
onilName: '92#',
latitudeful:'',
longitudeful:''
longitudeful:'',
isTyAgent: false //
}
},
onLoad() {
let that = this;
if (app.globalData.accountId) {
that.isTyAgent = true;
}
uni.getLocation({
type: 'wgs84',
success: function(res) {
@ -396,7 +400,8 @@
latitude: this.latitudeful,
longitude: this.longitudeful,
pageNum: pagenum,
pageSize: this.pageSize
pageSize: this.pageSize,
isTyAgent: this.isTyAgent
}
getGasStoreList(params).then(res => {
if (res.return_code == '000000') {

@ -91,11 +91,11 @@
<view class="width94 comorder mart10">
<view class="height50 width100 backcorfff">
<view class="width100 flleft fcor333 fontwig6 font16" style="padding-left: 4%;">
支付方式 <text class="jfrecharge" @click="jumpdeposits" v-if="couponList.payType == 2 || couponList.payType==3">积分充值</text>
支付方式 <text class="jfrecharge" @click="jumpdeposits" v-if="couponList.payType == 1 || couponList.payType == 2 || couponList.payType==3 || couponList.payType== 4">积分充值</text>
</view>
</view>
<view class="width94 line1 mart5 marb5"></view>
<view class="height50 width100 backcorfff" v-if="couponList.payType == 2 || couponList.payType==3 || couponList.payType== 4"
<view class="height50 width100 backcorfff" v-if="couponList.payType == 1 || couponList.payType == 2 || couponList.payType==3 || couponList.payType== 4"
@tap="paytype='jinbi'">
<view class="width70 flleft fcor333 fontwig6 font16 text1" style="padding-left: 4%;">
积分支付<text class="font14 fcor666 margle">可用积分: {{user.gold}}</text>
@ -105,7 +105,7 @@
<radio :checked="paytype=='jinbi'" color="#0083f5" />
</view>
</view>
<view class="width94 line1 mart5 marb5" v-if="couponList.payType == 2 || couponList.payType==3 || couponList.payType== 4"></view>
<view class="width94 line1 mart5 marb5" v-if="couponList.payType == 1 || couponList.payType == 2 || couponList.payType==3 || couponList.payType== 4"></view>
<view class="height50 width100 backcorfff" @tap="paytype='weixin'"
v-if="couponList.payType == 1 || couponList.payType==3 ">
<view class="width50 flleft fcor333 fontwig6 font16" style="padding-left: 4%;">

@ -65,7 +65,6 @@
</view>
</swiper-item>
</swiper>
<image mode="widthFix" style="margin-top: 30px;width: 90%;margin-left: 5%;" v-for="(row, index) in homeCateList"
:key="index" @click="jumphuafei(row)" :src="imageUrl+row.imgData"></image>
<!-- 赠券 -->
@ -89,7 +88,9 @@
<button open-type="contact">
<image :src="imagewxUrl+imgadres4" mode="widthFix" class="xfimg"></image>
</button>
<view class="height60"></view>
<view class="height40"></view>
<!-- <official-account bindload="bindload" binderror="binderror"></official-account> -->
<!-- <view class="height20"></view> -->
</view>
</template>
@ -104,7 +105,8 @@
getTPigKFCToken,
getTPigCinemaToken,
getCmsContent,
getMembershipLevel
getMembershipLevel,
findByLatAndLng
} from "../../../Utils/Api.js"; //api
import wybPopup from '../../../components/wyb-popup/wyb-popup.vue';
let app = getApp();
@ -185,8 +187,8 @@
}
},
onLoad(options) {
app.globalData.accountId = options.accountId;
let that = this;
// 1.wxcode
// #ifdef MP
uni.login({
@ -346,7 +348,7 @@
success: function(res) {
app.globalData.latitude = res.latitude;
app.globalData.longitude = res.longitude;
that.getUserLocation(res.longitude, res.latitude);
// that.findByLatAndLng(res.longitude, res.latitude);
// #ifdef MP
uni.request({
url: 'https://apis.map.qq.com/ws/geocoder/v1/?location=' + res.latitude +
@ -368,14 +370,47 @@
that.getCmsContentcmshome();
that.getCmsContentcmsContent();
},
fail() {
fail(err) {
uni.hideLoading()
}
})
//#endif
},
fail: (err) => {
if (err.errCode == 2) {
uni.showToast({
title: '请开启系统定位',
duration: 3000,
icon: 'none'
})
}
}
})
},
//
findByLatAndLng(item, item1) {
let that = this;
let datas = {
lng: item,
lat: item1
}
findByLatAndLng(datas).then(res => {
if (res.return_code == '000000') {
that.city = res.return_data.result.addressComponent.province;
app.globalData.cityName = res.return_data.result.addressComponent
.province;
app.globalData.cityId = res.return_data.result.addressComponent.adcode;
// app.globalData.cityId = '500100';
that.getCouponListArea();
that.getCouponListgold();
uni.hideLoading();
that.getCmsContent();
that.getCmsAactibity();
that.getCmsContentcmshome();
that.getCmsContentcmsContent();
}
});
},
//H5 openId
getH5AccessToken(item) {
let params = {
@ -449,7 +484,6 @@
})
.catch(err => {
uni.hideLoading()
console.log(err);
});
},
@ -488,7 +522,7 @@
return;
}
this.productListleg = res.return_data.total;
}else{
} else {
this.productList = [];
}
})
@ -510,7 +544,7 @@
return;
}
this.goldproductListleg = res.return_data.total;
}else{
} else {
this.productList = [];
}
})
@ -678,7 +712,7 @@
}
if (item.title == '优惠券包') {
uni.navigateTo({
url:'../../../subPages/coupon-package/coupon-package'
url: '../../../subPages/coupon-package/coupon-package'
})
return;
}
@ -706,7 +740,7 @@
height: 440px;
}
.xfimg{
.xfimg {
width: 80rpx;
bottom: 60rpx;
position: fixed;

@ -21,7 +21,7 @@
<view class="box" :class="{'on':item.id == inputAmountId}" v-for="(item,index) in amountList" :key="index"
@click="select(item)">
<view class="heTitle">{{item.price}}</view>
<view class="font13 fcor999" v-if="item.status != 2 && item.discount != 100">{{item.discount}} </view>
<view class="font13 fcoreb5 fontwig6" v-if="item.status != 2 && item.discount != 100">{{item.discount}} </view>
<view class="font13 fcor999" v-if="item.status == 2">已售空</view>
</view>
</view>
@ -32,7 +32,7 @@
<view class="mart5 width80 font14 fcoreb5 fontwig6" style="list-style-type: decimal;">
<view style="width: 5%;" class="flleft">1:</view>
<view style="margin-left: 5%;">
此业务为话费慢充日常72小时内到账如遇月初月末运营商高峰期或系统更新到账时间会有一定延迟敬请谅解充值失败后系统会自动为您退款至原账户急单请选择6小时到账充值端口感谢您的支持
此业务为话费慢充日常5个工作日内到账如遇月初月末运营商高峰期或系统更新到账时间会有一定延迟敬请谅解充值失败后系统会自动为您退款至原账户急单请选择6小时到账充值端口感谢您的支持
</view>
</view>
<view class="mart5 width80 font14 fcor999 fontwig6" style="list-style-type: decimal;">
@ -139,7 +139,7 @@
amountList: [],
price: '',
amoutstatus: '',
tabs: ["72小时到账", "6小时到账"], //
tabs: ["5个工作日", "6小时到账"], //
current: 0, //
swiperCurrent: 2
}

@ -81,7 +81,7 @@
</view>
</view>
</view>
<image src="../static/union5.jpg" 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="footer">
<view class="settlement">
@ -162,6 +162,8 @@
couponList: [],
UserNormalDiscountList: [],
imageUrl: app.globalData.imgUrl,
imagewxUrl: app.globalData.imageWxImg,
imgadres1: 'arrive_time_img.jpeg',
deductionPrice: '0.00',
paytheprice: '',
radioStatus: true,

@ -400,6 +400,10 @@ $uni-font-size-paragraph:30upx;
height: 70px;
}
.height75 {
height: 75px;
}
.height80 {
height: 80px;
}

Loading…
Cancel
Save