This commit is contained in:
zpc 2025-04-04 18:46:08 +08:00
parent 031ddf3975
commit db6ae0837f
2 changed files with 25 additions and 2 deletions

View File

@ -141,6 +141,7 @@
<view class="pic flex">
<image class="img100" style="border-radius: 16rpx 16rpx 0rpx 0rpx;" :src="a.imgurl" mode="aspectFill"></image>
<view v-if="a.goods_type == 2" class="yu-tag ziti">预售</view>
<view v-if="a.doubling>1" class="yu-tag ziti" style="bottom:79%;right: 15rpx; font-size:40rpx;color: #FF5722;font-style: italic;transform: skewX(-10deg);">x{{ a.doubling }}</view>
</view>
<view class="title hang1">
{{ a.title }}
@ -245,6 +246,7 @@
{{ item.shang_title }}
</view>
<view class="num center">{{ item.prize_num || '1' }}</view>
<view v-if="item.doubling>1" class="yu-tag-text ziti" style="bottom:75%;right: 15rpx; font-size:40rpx;color: #FF5722;font-style: italic;transform: skewX(-10deg);">x{{ item.doubling }}</view>
</view>
<view class="title hang1" style="text-align: center;">
<text> {{ item.goodslist_title }}</text>
@ -316,7 +318,7 @@
<view class="flex row center" style="font-size: 20rpx; color: #999999; margin-top: 24rpx;">
<text>挑战领主获得吧唧币奖励</text>
<text>挑战领主获得UU币奖励</text>
<text class="get-money-one">玩家每挑战一发,领主可获得</text>
<!-- <image class="get-money-two" :src="$img('/static/img/pay_type2.png')" mode="widthFix"></image> -->
@ -2702,4 +2704,25 @@
}
}
}
.gradient-text {
background-image: linear-gradient(to right, #FF5722, #FFEB3B); /* 从橙色到黄色的渐变 */
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: #FF5722;
}
.yu-tag-text {
position: absolute;
right: 10rpx;
bottom: 10rpx;
z-index: 1;
display: flex;
justify-content: center;
align-items: center;
font-weight: 400;
font-size: 32rpx;
}
</style>

View File

@ -438,7 +438,7 @@
//
let url = "/pages/shouye/detail";
if (e.type == 2 || e.type == 8) {
if (e.type == 2 || e.type == 8 || e.type == 16) {
url = "/pages/shouye/detail_wuxian";
}