江投页面
This commit is contained in:
138
BagStation/pages/makeOrder/JXPayResult.vue
Normal file
138
BagStation/pages/makeOrder/JXPayResult.vue
Normal file
@@ -0,0 +1,138 @@
|
||||
<template>
|
||||
<view>
|
||||
<cu-custom class="main-totextbar bg-main-oil" :isBack="true" bgColor="bg-main-oil">
|
||||
<block slot="backText">返回</block>
|
||||
<block slot="content">支付结果</block>
|
||||
</cu-custom>
|
||||
<view style="background-color: #F9F9F9;height: calc(100vh - 140rpx);">
|
||||
<view style="text-align: center;font-size: 28rpx;color: #000000;opacity: 0.49;margin-top: 20rpx;">
|
||||
请告知加油员使用江投能源支付
|
||||
</view>
|
||||
<view style="text-align: center;margin: 60rpx 0;">
|
||||
<image src="https://xoil-public.oss-cn-beijing.aliyuncs.com/miniProgram/xingyou/jt-logo.png"
|
||||
style="width: 220rpx;height: 160rpx;"></image>
|
||||
</view>
|
||||
<view style="text-align: center;color: #000000;font-weight: bold;">
|
||||
<view style="font-size: 64rpx;">-{{order.xoilAmountGun |moneyFormat}}</view>
|
||||
<view style="font-size: 40rpx;" v-if="status=='success'">交易成功</view>
|
||||
<view style="font-size: 40rpx;color: #FF0000;" v-if="status!='success'">交易失败</view>
|
||||
</view>
|
||||
<view style="margin-top: 100rpx;padding: 0 30rpx;font-size: 28rpx; font-weight: bold;">
|
||||
<view style="background-color: #fff;border-radius: 20rpx;">
|
||||
<view class="padding-tb-xs text-left paddingLR">
|
||||
订单号
|
||||
<text class="fr">{{order.orderSerialNumber?order.orderSerialNumber:''}}</text>
|
||||
|
||||
</view>
|
||||
<view class="padding-tb-xs text-left paddingLR">
|
||||
油品类型
|
||||
<text class="fr">
|
||||
{{order.oilsCode?order.oilsCode+' ':''}}
|
||||
<!-- <text>{{order.oilProductType=="DIESEL"?'柴油':order.oilProductType=="PETROL"?'汽油':order.oilProductType=="GAS"?'天然汽':''}}</text> -->
|
||||
<text v-if="order.oilsBar">({{order.oilsBar?order.oilsBar+'号枪':'未选择油枪'}})</text>
|
||||
</text>
|
||||
</view>
|
||||
<view class="padding-tb-xs text-left paddingLR">
|
||||
加油升数
|
||||
<text class="fr">{{order.volume?order.volume :'未输入' | moneyFormath}} L</text>
|
||||
</view>
|
||||
<view class="padding-tb-xs text-left paddingLR">
|
||||
单价
|
||||
<text class="fr">{{order.sitePrice?order.sitePrice :'' | moneyFormath}} 元/L</text>
|
||||
</view>
|
||||
<view class="padding-tb-xs text-left paddingLR">
|
||||
加油金额
|
||||
<text class="fr" style="color: #FF0000;">¥{{order.xoilAmountGun |moneyFormat}}</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
<view style="display: flex;margin-top: 60rpx;">
|
||||
<button class="btnJX" @tap="backToOrderList">查看订单</button>
|
||||
<button class="btnJX" @tap="backToIndex">返回首页</button>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import toilApi from '@/api/toil.js'
|
||||
import oilSiteApi from '@/api/oil-site.js'
|
||||
export default {
|
||||
data() {
|
||||
const now = new Date()
|
||||
return {
|
||||
status: "",
|
||||
textstatus: '正在支付中',
|
||||
status: 'fail',
|
||||
order: uni.getStorageSync('orderMade')
|
||||
}
|
||||
},
|
||||
onLoad(option) {
|
||||
let _that = this
|
||||
if (option.status == 'success') {
|
||||
if (option.status == 'success') {
|
||||
this.textstatus = '支付成功'
|
||||
this.status = option.status
|
||||
} else {
|
||||
this.textstatus = '支付失败'
|
||||
this.status = option.status
|
||||
}
|
||||
return
|
||||
}
|
||||
if (option.status == 'fail') {
|
||||
this.textstatus = '支付失败'
|
||||
this.status = option.status
|
||||
return
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
backToOrderList() {
|
||||
uni.redirectTo({
|
||||
url: `/BagStation/orderDetail/orderDetail?id=${this.order.orderSerialNumber}`
|
||||
})
|
||||
},
|
||||
backToIndex() {
|
||||
uni.switchTab({
|
||||
url: '/pages/tabbar/home/home'
|
||||
})
|
||||
}
|
||||
},
|
||||
|
||||
filters: {
|
||||
moneyFormath(value) {
|
||||
if (value != 'xxx.x') {
|
||||
let number = value.toFixed(2)
|
||||
return number
|
||||
} else {
|
||||
return value
|
||||
}
|
||||
},
|
||||
moneyFormat(value) {
|
||||
if (value != 'xxx.x') {
|
||||
let realAmount = (parseInt(value * 100) / 100).toFixed(2)
|
||||
return realAmount
|
||||
} else {
|
||||
return value
|
||||
}
|
||||
},
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.btnJX {
|
||||
width: 180rpx;
|
||||
height: 60rpx;
|
||||
border-radius: 20rpx;
|
||||
background-color: #2E53B2;
|
||||
color: #fff;
|
||||
font-size: 32rpx;
|
||||
line-height: 60rpx;
|
||||
padding: 2rpx;
|
||||
}
|
||||
.paddingLR{
|
||||
padding: 20rpx 40rpx;
|
||||
}
|
||||
</style>
|
||||
@@ -286,10 +286,12 @@
|
||||
type: '',
|
||||
ureaCompanyOtherList: [],
|
||||
companyNature: '',
|
||||
shareCompanyQuota: ''
|
||||
shareCompanyQuota: '',
|
||||
secondChannelCode: ''
|
||||
}
|
||||
},
|
||||
onLoad(option) {
|
||||
|
||||
if (option.type == 'urea') {
|
||||
this.order = uni.getStorageSync('ureaOrderMade')
|
||||
this.order.companyStatus = true
|
||||
@@ -297,13 +299,12 @@
|
||||
this.findUreaAccount()
|
||||
} else {
|
||||
let oilItem = uni.getStorageSync('oilItem')
|
||||
// console.log
|
||||
this.order = uni.getStorageSync('orderMade')
|
||||
this.type = 'oil'
|
||||
this.showtitles = oilItem.listTag
|
||||
this.secondChannelCode = oilItem.secondChannelCode
|
||||
if (option.payMethod == null) {
|
||||
this.payMethod = oilItem.payMethod
|
||||
// console.log(this.payMethod )
|
||||
} else {
|
||||
this.payMethod = option.payMethod
|
||||
}
|
||||
@@ -312,7 +313,7 @@
|
||||
computed: {
|
||||
companyList() {
|
||||
if (this.isCompany) {
|
||||
let companyAccounts = this.order.companyAccounts || []
|
||||
let companyAccounts = this.order.companyAccounts || []
|
||||
let filterData = companyAccounts.filter(item => item.companyType != 5)
|
||||
return filterData
|
||||
}
|
||||
@@ -320,9 +321,9 @@
|
||||
companyOtherList() {
|
||||
if (this.isCompany) {
|
||||
// return this.order.otherAccounts
|
||||
let otherAccounts = this.order.otherAccounts || []
|
||||
let otherAccounts = this.order.otherAccounts || []
|
||||
let filterData = otherAccounts.filter(item => item.companyType != 5)
|
||||
let target = this.sortParticulars(filterData,'balance')
|
||||
let target = this.sortParticulars(filterData, 'balance')
|
||||
return target
|
||||
}
|
||||
}
|
||||
@@ -356,7 +357,9 @@
|
||||
for (let value of map.values()) {
|
||||
values.push(value)
|
||||
}
|
||||
values.sort((a,b)=>{return a - b})
|
||||
values.sort((a, b) => {
|
||||
return a - b
|
||||
})
|
||||
values.reverse()
|
||||
values.forEach(value => {
|
||||
keys.forEach(key => {
|
||||
@@ -376,12 +379,10 @@
|
||||
})
|
||||
},
|
||||
hidenPopup(e) {
|
||||
console.log(e)
|
||||
this.PopupShow = e
|
||||
},
|
||||
findUreaAccount() {
|
||||
ureaFinanceApi.findUreaAccount(this.order.driverId).then(res => {
|
||||
console.log(res)
|
||||
this.ureaCompanyOtherList = res.data
|
||||
})
|
||||
},
|
||||
@@ -392,9 +393,7 @@
|
||||
return timestampDeadline
|
||||
},
|
||||
ureaCancelOrder(id) {
|
||||
console.log(id)
|
||||
ureaFinanceApi.cancelTheOrder(id).then(res => {
|
||||
console.log(res)
|
||||
if (res.code == 20000) {
|
||||
uni.showToast({
|
||||
title: res.msg,
|
||||
@@ -442,7 +441,6 @@
|
||||
this.shareCompanyQuota = card.shareCompanyQuota
|
||||
},
|
||||
selectCompanyCard(card) {
|
||||
console.log(card)
|
||||
this.card = card
|
||||
this.checked = card.accountCardCode
|
||||
this.accountCardCode = card.accountCardCode
|
||||
@@ -487,7 +485,6 @@
|
||||
// this.getPayStatus(this.outTradeNo)
|
||||
// this.getLastMoney()
|
||||
// this.getCards()
|
||||
// console.log('success:' + JSON.stringify(res));
|
||||
uni.showToast({
|
||||
title: res.msg
|
||||
})
|
||||
@@ -531,7 +528,6 @@
|
||||
return false
|
||||
}
|
||||
if (this.card.balance < this.order.realAmount && this.card.shareCompanyQuota != 1) {
|
||||
console.log(this.type)
|
||||
if (this.type == 'urea') {
|
||||
this.PopupShow = true
|
||||
this.PopupType = 2
|
||||
@@ -564,13 +560,23 @@
|
||||
title: res.msg
|
||||
})
|
||||
setTimeout(() => {
|
||||
uni.redirectTo({
|
||||
url: '/BagStation/pages/makeOrder/payResult?status=success&&payMethod=' +
|
||||
this.payMethod,
|
||||
fail: (err) => {
|
||||
// console.log(err)
|
||||
}
|
||||
})
|
||||
if (this.secondChannelCode == 'JX_INVEST') {
|
||||
uni.redirectTo({
|
||||
url: '/BagStation/pages/makeOrder/JXPayResult?status=success&&payMethod=' +
|
||||
this.payMethod,
|
||||
fail: (err) => {
|
||||
// console.log(err)
|
||||
}
|
||||
})
|
||||
} else {
|
||||
uni.redirectTo({
|
||||
url: '/BagStation/pages/makeOrder/payResult?status=success&&payMethod=' +
|
||||
this.payMethod,
|
||||
fail: (err) => {
|
||||
// console.log(err)
|
||||
}
|
||||
}) }
|
||||
|
||||
}, 1000)
|
||||
|
||||
} else {
|
||||
@@ -585,6 +591,7 @@
|
||||
url: `/BagStation/pages/makeOrder/payResult?status=fail&&errMsg=${msg}payMethod=` +
|
||||
this.payMethod
|
||||
})
|
||||
|
||||
}, 1000)
|
||||
}
|
||||
|
||||
@@ -605,7 +612,6 @@
|
||||
companyShared: this.shareCompanyQuota
|
||||
}
|
||||
ureaFinanceApi.orderPay(payData).then(res => {
|
||||
console.log(res)
|
||||
if (res.code == 20000) {
|
||||
uni.setStorageSync('ureaOrderMade', res.data)
|
||||
if (res.data.formats == '2') {
|
||||
@@ -623,7 +629,6 @@
|
||||
_that.PopupType = 2
|
||||
this.isdisabled = false
|
||||
}
|
||||
console.log(res)
|
||||
})
|
||||
}
|
||||
},
|
||||
@@ -648,7 +653,6 @@
|
||||
}
|
||||
},
|
||||
moneyFormath(value) {
|
||||
console.log(value)
|
||||
if (value != 'xxx.x') {
|
||||
let number = value.toFixed(2)
|
||||
return number
|
||||
@@ -715,4 +719,4 @@
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
Reference in New Issue
Block a user