问题修复

This commit is contained in:
2025-10-10 15:56:22 +08:00
parent 87babdda60
commit 8f7852f834
5 changed files with 48 additions and 17 deletions

View File

@@ -321,12 +321,13 @@ function formatCoupon(){
const shopId = uni.cache.get('shopId');
for (let i = 0; i < couponList.value.length; i++) {
const coupon = couponList.value[i];
const selCoupon=querForm.value.statusActiveIndex!=1?quansSelArr.value.filter(v=>v.type!=2):quansSelArr.value.filter(v=>v.type==2)
const canuseResult = UTILS.returnCouponCanUse({
canDikouGoodsArr,
coupon,
goodsOrderPrice,
user,
selCoupon: quansSelArr.value,
selCoupon:selCoupon,
shopInfo
});
const { canUse, reason } = canuseResult;

View File

@@ -2,7 +2,10 @@
<!-- 账单明细 -->
<view style="padding-bottom: 40rpx;">
<up-navbar bgColor="transparent" title="明细" @leftClick="back"></up-navbar>
<view class="bild" style="background-image: url(/static/czzx_header_bg.png);">
<view class="bild" >
<view class="bg">
<image class="image" src="/static/czzx_header_bg.png" mode=""></image>
</view>
<view class="bildLeft">
<text>我的余额</text>
<view>{{shopUserInfo.amount||0}}</view>
@@ -217,7 +220,19 @@
display: flex;
justify-content: space-around;
align-items: center;
position:relative;
.bg{
position:absolute;
left:0;
right:0;
top:0;
bottom:0;
z-index:-1;
.image{
width:100%;
height:100%;
}
}
.bildLeft,
.bildRight {
font-weight: 400;