|
@@ -39,13 +39,12 @@
|
|
<template #icon>
|
|
<template #icon>
|
|
<image :src="imgObj.gift" mode="scaleToFill" />
|
|
<image :src="imgObj.gift" mode="scaleToFill" />
|
|
</template>
|
|
</template>
|
|
- <image
|
|
|
|
|
|
+ <wd-badge
|
|
v-if="countData.receiptActivityCount > 0"
|
|
v-if="countData.receiptActivityCount > 0"
|
|
- style="width: 128rpx; height: 48rpx"
|
|
|
|
- :src="imgObj.with"
|
|
|
|
- mode="scaleToFill"
|
|
|
|
- class="custom-text"
|
|
|
|
- />
|
|
|
|
|
|
+ :modelValue="countData.receiptActivityCount"
|
|
|
|
+ >
|
|
|
|
+ <view class="count flex-center">去提现</view>
|
|
|
|
+ </wd-badge>
|
|
</wd-cell>
|
|
</wd-cell>
|
|
<wd-cell
|
|
<wd-cell
|
|
is-link
|
|
is-link
|
|
@@ -55,13 +54,12 @@
|
|
<template #icon>
|
|
<template #icon>
|
|
<image :src="imgObj.lpIcon" mode="scaleToFill" />
|
|
<image :src="imgObj.lpIcon" mode="scaleToFill" />
|
|
</template>
|
|
</template>
|
|
- <image
|
|
|
|
|
|
+ <wd-badge
|
|
v-if="countData.quickClaimCount > 0"
|
|
v-if="countData.quickClaimCount > 0"
|
|
- style="width: 128rpx; height: 48rpx"
|
|
|
|
- :src="imgObj.with"
|
|
|
|
- mode="scaleToFill"
|
|
|
|
- class="custom-text"
|
|
|
|
- />
|
|
|
|
|
|
+ :modelValue="countData.quickClaimCount"
|
|
|
|
+ >
|
|
|
|
+ <view class="count flex-center">去提现</view>
|
|
|
|
+ </wd-badge>
|
|
</wd-cell>
|
|
</wd-cell>
|
|
<wd-cell
|
|
<wd-cell
|
|
border
|
|
border
|
|
@@ -424,5 +422,13 @@ onShow(() => {
|
|
height: 90rpx;
|
|
height: 90rpx;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ .count {
|
|
|
|
+ background: #ffe091;
|
|
|
|
+ border-radius: 40rpx;
|
|
|
|
+ height: 48rpx;
|
|
|
|
+ width: 128rpx;
|
|
|
|
+ color: #333333;
|
|
|
|
+ font-size: 24rpx;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
</style>
|
|
</style>
|