This commit is contained in:
Sliverber 2024-07-03 18:02:10 +08:00
parent efd58a0571
commit a677eb52fd
6 changed files with 596 additions and 1505 deletions

File diff suppressed because it is too large Load Diff

View File

@ -473,12 +473,13 @@
border-bottom: 2rpx solid #fff;
}
.qs_li{
margin-top: 10rpx;
// margin-top: 10rpx;
display: flex;
flex-wrap: nowrap;
align-items: center;
justify-content: space-between;
border-bottom: 2rpx solid #D8D8D8;
border-bottom: 2rpx solid #D8D8D870;
padding-top: 26rpx;
padding-bottom: 26rpx;
.qs_li_txt{

View File

@ -174,7 +174,8 @@
areaInfo: "",
isback:false,
showBack:false,
loadingmask:false
loadingmask:false,
ispaid:false
}
@ -337,64 +338,74 @@
});
},
sub4() {
let id = uni.getStorageSync('areaId');
let data = {
userId: this.userId,
// ruleId: this.freeInfo.ruleId,
money: this.areaInfo.deposit,
mark: "押金充值",
type: '4',
areaId: id
}
this.$u.post('/appVerify/pre/order', data).then((res) => {
if (res.code === 200) {
// this.freList=res.rows
let that = this
uni.requestPayment({
provider: 'wxpay',
timeStamp: res.data.timeStamp,
nonceStr: res.data.nonceStr,
package: res.data.packageVal,
signType: res.data.signType,
paySign: res.data.paySign,
success(res) {
//
// uni.showLoading({
// title: ''
// })
that.loadingmask=true
setTimeout(() => {
that.check()
}, 2000)
setTimeout(() => {
that.check()
}, 4000)
},
fail(err) {
//
uni.showToast({
title: '支付失败',
icon: 'none',
duration: 2000
});
}
});
} else {
uni.showToast({
title: res.data,
icon: 'none',
duration: 2000
});
if(this.ispaid==false){
this.ispaid=true
let id = uni.getStorageSync('areaId');
let data = {
userId: this.userId,
// ruleId: this.freeInfo.ruleId,
money: this.areaInfo.deposit,
mark: "押金充值",
type: '4',
areaId: id
}
})
let that = this
this.$u.post('/appVerify/pre/order', data).then((res) => {
if (res.code === 200) {
// this.freList=res.rows
uni.requestPayment({
provider: 'wxpay',
timeStamp: res.data.timeStamp,
nonceStr: res.data.nonceStr,
package: res.data.packageVal,
signType: res.data.signType,
paySign: res.data.paySign,
success(res) {
//
// uni.showLoading({
// title: ''
// })
that.ispaid=false
that.loadingmask=true
setTimeout(() => {
that.check()
}, 2000)
setTimeout(() => {
that.check()
}, 4000)
},
fail(err) {
that.ispaid=false
//
uni.showToast({
title: '支付失败',
icon: 'none',
duration: 2000
});
}
});
} else {
that.ispaid=false
uni.showToast({
title: res.data,
icon: 'none',
duration: 2000
});
}
})
}
},
}
}

File diff suppressed because it is too large Load Diff

View File

@ -135,7 +135,7 @@
infonum: {},
rangeMin: 0,
rangMax: 100,
rangeValue: [1, 100],
rangeValue: [0, 100],
status0: [], //
status1: [], //
status2: [], //

View File

@ -37,24 +37,36 @@
</view>
<view class="info">
<view class="info_li">
总营收
订单总费用
<span style="color: #4C97E7;" >{{displayAmount(info.income.totalFee) }}</span>
</view>
<view class="info_li">
手续费
<span style="color: #4C97E7;" >{{displayAmount(info.income.handlingFee)}}</span>
</view>
</view>
<view class="info">
<view class="info_li">
总营收:
<span style="color: #4C97E7;" v-if="info.income.totalIncome">{{info.income.totalIncome}}</span>
<span style="color: #4C97E7;" v-else>--</span>
</view>
<view class="info_li">
累计待支付
累计待支付:
<span style="color: #4C97E7;" v-if="info.income.totalUnpaid">{{info.income.totalUnpaid}}</span>
<span style="color: #4C97E7;" v-else>--</span>
</view>
</view>
<view class="info">
<view class="info_li">
已支付
已支付:
<span style="color: #3D3D3D;" v-if="info.income.totalPaid">{{info.income.totalPaid}}</span>
<span style="color: #3D3D3D;" v-else>--</span>
</view>
<view class="info_li">
已退款
已退款:
<span style="color: #3D3D3D;" v-if="info.income.totalRefund">{{info.income.totalRefund}}</span>
<span style="color: #3D3D3D;" v-else>--</span>
</view>