Compare commits

..

5 Commits

6 changed files with 34 additions and 24 deletions

View File

@ -180,7 +180,25 @@ export default {
// 'custom-header': 'hello' //
},
success: (res) => {
this.createQrcode2(res.data.access_token)
// access_token
if (res.data && res.data.access_token) {
this.createQrcode2(res.data.access_token)
} else {
uni.hideLoading();
uni.showToast({
title: '获取二维码失败,请重试',
icon: 'none'
});
console.error('获取微信access_token失败:', res);
}
},
fail: (err) => {
console.error('获取微信access_token失败:', err);
uni.hideLoading();
uni.showToast({
title: '获取二维码失败,请重试',
icon: 'none'
});
}
});
},
@ -307,6 +325,7 @@ export default {
const params = {
id: this.OrderMsg.id,
back_wygjj: this.homeMoney,
back_points: this.integral,
}
request(apiArr.tradeQuery, "POST", params).then(res => {
})

View File

@ -630,6 +630,7 @@ image {
.walletBox_content{
display: flex;
justify-content: space-between;
padding: 0 80rpx;
}
.walletBox_item{

View File

@ -33,10 +33,10 @@
<view>{{ walletInfo.receivable ? walletInfo.receivable.toFixed(2) : "0.00" }}</view>
<view class="walletBox_item_text">应收</view>
</view>
<view class="walletBox_item" @click="goWallet(3, walletInfo.handling_fee.toFixed(2))">
<!-- <view class="walletBox_item" @click="goWallet(3, walletInfo.handling_fee.toFixed(2))">
<view>{{ walletInfo.handling_fee ? walletInfo.handling_fee.toFixed(2) : "0.00" }}</view>
<view class="walletBox_item_text">手续费</view>
</view>
</view> -->
</view>
</view>
<view class="iconStyle content2">

View File

@ -39,7 +39,10 @@
<text
:class="['amount-sign', record.change_reason == '下单' ? 'positive' : 'negative']">{{
record.change_reason == '下单' ? '+' : '-' }}</text>
<text
<text v-if="topVal == '积分'"
:class="['amount-value', record.change_reason == '下单' ? 'positive' : 'negative']">¥{{
record.change_value }}</text>
<text v-else
:class="['amount-value', record.change_reason == '下单' ? 'positive' : 'negative']">¥{{
record.amount_change }}</text>
</view>
@ -65,20 +68,7 @@ export default {
topVal: "",
photoVal: '',
balance: "",
records: [
{
name: "退单-1312312317972",
time: "2025-08-12 13:00:00",
amount: "-1808.5",
remain: "286.79"
},
{
name: "退单-1312312317972",
time: "2025-08-12 13:00:00",
amount: "-1808.5",
remain: "286.79"
}
],
records: [],
itemObj: {},
itemType: '',
page_num: 1,

View File

@ -137,7 +137,7 @@
.walletBox_item{
/* margin: 20rpx 30rpx; */
width: 25%;
width: 32%;
display: block;
text-align: center;
font-size: 35rpx;

View File

@ -17,22 +17,22 @@
<view class="walletBox">
<view class="walletBox_top">钱包</view>
<view class="walletBox_content">
<view class="walletBox_item" @click="goWallet(1, walletInfo.receivable.toFixed(2))">
<view class="walletBox_item" @click="goWallet(1, walletInfo.receivable ? walletInfo.receivable.toFixed(2) : '0.00')">
<view>{{ walletInfo.receivable ? walletInfo.receivable.toFixed(2) : "0.00" }}</view>
<view class="walletBox_item_text">应收</view>
</view>
<view class="walletBox_item" @click="goWallet(2, walletInfo.received.toFixed(2))">
<view class="walletBox_item" @click="goWallet(2, walletInfo.received ? walletInfo.received.toFixed(2) : '0.00')">
<view>{{ walletInfo.received ? walletInfo.received.toFixed(2) : "0.00" }}</view>
<view class="walletBox_item_text">已收</view>
</view>
<view class="walletBox_item" @click="goWallet(3, walletInfo.pending.toFixed(2))">
<view class="walletBox_item" @click="goWallet(3, walletInfo.pending ? walletInfo.pending.toFixed(2) : '0.00')">
<view>{{ walletInfo.pending ? walletInfo.pending.toFixed(2) : "0.00" }}</view>
<view class="walletBox_item_text">待收物业公积金</view>
</view>
<view class="walletBox_item" @click="goWallet(4, walletInfo.handling_fee.toFixed(2))">
<!-- <view class="walletBox_item" @click="goWallet(4, walletInfo.handling_fee.toFixed(2))">
<view>{{ walletInfo.handling_fee ? walletInfo.handling_fee.toFixed(2) : "0.00" }}</view>
<view class="walletBox_item_text">手续费</view>
</view>
</view> -->
</view>
</view>
<view class="work-order-section">