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. 177
      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. 60
      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 //ID
storeid:'', storeid:'',
// //
storename:'' storename:'',
//
accountId:''
}, },
onLaunch: function() { onLaunch: function() {
}, },

@ -27,6 +27,10 @@ export const setUserPayPwd = params => {
export const updateUserPayPwd = params => { export const updateUserPayPwd = params => {
return POST('POST', `${base}/highUser/updateUserPayPwd`, params).then(res => res.data); 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 => { export const findUser = params => {
@ -177,7 +181,10 @@ export const getGasStoreList = params => {
export const getGasDetailByStoreKey = params => { export const getGasDetailByStoreKey = params => {
return POST('GET', `${base}/highGas/getGasDetailByStoreKey`, params).then(res => res.data); 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 => { export const getDredgeProvince = params => {
return POST('GET', `${base}/common/getDredgeProvince`, params).then(res => res.data); return POST('GET', `${base}/common/getDredgeProvince`, params).then(res => res.data);

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

@ -2,7 +2,7 @@
<view> <view>
<image mode="widthFix" class="width100" :src="storeList.gasLogoSmall"></image> <image mode="widthFix" class="width100" :src="storeList.gasLogoSmall"></image>
<view class="height100p titlecon backcorfff"> <view class="height100p titlecon backcorfff">
<view class="height60 paddtop25 width90"> <view class="height75 paddtop25 width90">
<view class="flleft width80p"> <view class="flleft width80p">
<view class="width100 text1 font18 fontwig6 fcor333">{{storeList.gasName}}</view> <view class="width100 text1 font18 fontwig6 fcor333">{{storeList.gasName}}</view>
<view class="width100 font14 fcor666 mart5">{{storeList.gasAddress}}</view> <view class="width100 font14 fcor666 mart5">{{storeList.gasAddress}}</view>
@ -65,8 +65,8 @@
<view class="width90 mart15 font16 fcor666">加油金额</view> <view class="width90 mart15 font16 fcor666">加油金额</view>
<view class="width90 height40 mart10" style="border: 1px solid #f2f2f2;"> <view class="width90 height40 mart10" style="border: 1px solid #f2f2f2;">
<view class="width8 flleft"></view> <view class="width8 flleft"></view>
<input type="digit" class="font16 width60 flleft height40" placeholder="输入金额" v-model="inputMoney" <input type="digit" class="font16 width60 flleft height40" placeholder="输入金额(保留1位小数)" v-model="inputMoney"
@blur="Listeningfocus" maxlength="3" /> @blur="Listeningfocus" />
<view class="width30 height40 flright font14 fcor999 fotct" <view class="width30 height40 flright font14 fcor999 fotct"
style="border-left: 1px solid #f2f2f2;line-height: 40px;"> style="border-left: 1px solid #f2f2f2;line-height: 40px;">
{{litre}}L {{litre}}L
@ -82,17 +82,17 @@
<!-- 底部按钮 --> <!-- 底部按钮 -->
<view class="footer"> <view class="footer">
<view class="flleft padleft15 font15 fcoreb5"> <view class="flleft padleft15 font15 fcoreb5">
合计: <text class="font24">{{totalPrice}}</text><text 合计: <text class="font24">{{totalPrice}}</text><text class="font12 fcor666"
class="font12 fcor666" v-if="priceVip != priceOfficial">优惠约:{{discountPrice}}</text> v-if="priceVip != priceOfficial">优惠约:{{discountPrice}}</text>
</view> </view>
<!-- #ifdef MP --> <!-- #ifdef MP -->
<button class="reBtn flright" v-if="user.phone == null" @click="jumpPhone">去支付</button> <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 --> <!-- #endif -->
<!-- #ifdef H5 --> <!-- #ifdef H5 -->
<button class="reBtn flright" v-if="user.phone == null" @click="jumpH5Bding">去支付</button> <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 --> <!-- #endif -->
</view> </view>
@ -123,7 +123,8 @@
<script> <script>
import { import {
getGasDetailByStoreKey, getGasDetailByStoreKey,
addOrder addOrder,
getDictionaryByCodeTypeOl
} from '../../../Utils/Api.js'; } from '../../../Utils/Api.js';
import wybPopup from '../../../components/wyb-popup/wyb-popup.vue'; import wybPopup from '../../../components/wyb-popup/wyb-popup.vue';
let app = getApp(); let app = getApp();
@ -174,13 +175,21 @@
totalPrice: '0.00', totalPrice: '0.00',
discountPrice: '0.00', discountPrice: '0.00',
gasGunList: [], gasGunList: [],
oilType: '' oilType: '',
distance: 9999, //
xzMoney: '300', //
isTyAgent: false //
} }
}, },
onLoad(options) { onLoad(options) {
this.store_key = options.id; this.store_key = options.id;
this.counId = options.desId; this.counId = options.desId;
if (app.globalData.accountId) {
this.isTyAgent = true;
}
this.getGasDetailByStoreKey(); this.getGasDetailByStoreKey();
this.getDictionaryByCodeTypeOl();
this.getDictionaryByCodeTypeMoney();
}, },
onShow() { onShow() {
this.user = app.globalData.userInfo; this.user = app.globalData.userInfo;
@ -208,27 +217,29 @@
let params = { let params = {
storeKey: this.store_key, storeKey: this.store_key,
latitude: app.globalData.latitude, latitude: app.globalData.latitude,
longitude: app.globalData.longitude longitude: app.globalData.longitude,
isTyAgent: this.isTyAgent
} }
getGasDetailByStoreKey(params).then(res => { getGasDetailByStoreKey(params).then(res => {
uni.hideLoading(); uni.hideLoading();
if (res.return_code == '000000') { if (res.return_code == '000000') {
this.storeList = res.return_data; this.storeList = res.return_data;
this.oilNo = res.return_data.oilPriceList[0].oilNoName; if(!this.oilNo){
this.priceVip = res.return_data.oilPriceList[0].priceVip; this.oilNo = res.return_data.oilPriceList[0].oilNoName;
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.oilType = res.return_data.oilPriceList[0].oilType; this.detailList = res.return_data.oilPriceList;
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,
@ -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) { changeValue(item) {
this.gunnumber = []; this.gunnumber = [];
@ -270,7 +302,7 @@
select(amount) { select(amount) {
this.inputMoney = amount.price; this.inputMoney = amount.price;
this.litre = parseFloat(amount.price / this.priceGun).toFixed(2); 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) { if (this.priceVip != this.priceGun) {
let gbprice = parseFloat(this.litre * this.priceOfficial).toFixed(2); let gbprice = parseFloat(this.litre * this.priceOfficial).toFixed(2);
this.discountPrice = parseFloat(gbprice - this.inputMoney).toFixed(2); this.discountPrice = parseFloat(gbprice - this.inputMoney).toFixed(2);
@ -284,16 +316,45 @@
}, },
// //
Listeningfocus() { 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({ uni.showToast({
title: '加油金额不能超过800元', title: '请输入正确加油金额',
icon: "none" 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.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) { if (this.priceVip != this.priceOfficial) {
let gbprice = parseFloat(this.litre * this.priceOfficial).toFixed(2); let gbprice = parseFloat(this.litre * this.priceOfficial).toFixed(2);
this.discountPrice = parseFloat(gbprice - this.totalPrice).toFixed(1); this.discountPrice = parseFloat(gbprice - this.totalPrice).toFixed(1);
@ -307,25 +368,67 @@
// } // }
}, },
// //
jumpPhone(){ jumpPhone() {
uni.navigateTo({ 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() { 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({ uni.showToast({
title: '请输入正确金额', title: '请输入正确金额',
icon: "none" icon: "none",
duration: 2000
}); });
return false; return;
} }
uni.showLoading({ uni.showLoading({
title: '提交订单中...' title: '提交订单中...'
}) })
let goods = { let goods = {
"identificationCode":app.globalData.identificationCode, "identificationCode": app.globalData.identificationCode,
"isTyAgent": this.isTyAgent,
"highChildOrderList": [{ "highChildOrderList": [{
"goodsType": 3, "goodsType": 3,
"goodsId": this.counId, "goodsId": this.counId,

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

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

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

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

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

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

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

Loading…
Cancel
Save