提交代码

This commit is contained in:
zpc 2025-04-13 17:41:08 +08:00
parent 50037d98bb
commit cc2d99ccca
3 changed files with 103 additions and 32 deletions

View File

@ -235,7 +235,7 @@ export default {
width: 68rpx;
}
.lingzhu-tag {
.lingzhu-tag {
position: absolute;
left: 15rpx;
top: 15rpx;
@ -257,17 +257,17 @@ export default {
justify-content: center;
align-items: center;
font-weight: 400;
// background-color: ;
//
background: linear-gradient(to right, #8D5104, #3C0300);
color: #ffffff;
width: 48rpx;
height: 32rpx;
border-radius: 25rpx;
bottom: 15rpx;
left: 15rpx;
font-size: 24rpx;
line-height: 32rpx;
background: url($iconurl + "fanbei.png") no-repeat;
background-size: 100% 100%;
color: #000;
width: 60rpx;
height: 48rpx;
// border-radius: 25rpx;
top: 15rpx;
right: 15rpx;
font-size: 28rpx;
line-height: 48rpx;
}
//

View File

@ -81,7 +81,7 @@
<image v-else :src="$img1('common/check.png')" lazy-load></image>
</view>
</view>
<view class="pay-type" @click="changePay(1)">
<!-- <view class="pay-type" @click="changePay(1)">
<view class="" style="width: 100%; color: #333333;">
{{ $config.getAppSetting('currency2_name') }}
@ -92,7 +92,7 @@
<image v-if="zhifu == 1" :src="$img1('common/check_act.png')" lazy-load></image>
<image v-else :src="$img1('common/check.png')" lazy-load></image>
</view>
</view>
</view> -->
</view>
@ -252,9 +252,7 @@ export default {
if (this.zhifu == 1) {
}
// this[e] = !this[e]
// this.confirmSubmit(0)
},
confirmSubmit(type) {

View File

@ -160,6 +160,9 @@
<view class="log-list">
<view class="log-item br10" v-for="(a, b) in logList" :key="b">
<!-- 添加角标 -->
<view class="corner-tag" v-if="a.doubling > 1"></view>
<view class="avatar">
<image :src="a.user_info && a.user_info.headimg" style="width:80rpx; height: 80rpx;">
</image>
@ -174,11 +177,19 @@
</view>
<view class="prize">
<view class="pic flex">
<image class="img100" :src="a.goodslist_imgurl"></image>
</view>
<view class="align-end column">
<view class="center" :style="{ background: a.shang_color }">{{ a.shang_title }}</view>
<view style="display: flex; align-items: center;">
<view class="center log-tag" :style="{ background: a.shang_color }">{{ a.shang_title
}}
</view>
<view v-if="a.doubling > 1" class="center multiple-tag" style="">x{{
a.doubling }}</view>
</view>
<view class="align-center mt10">
<view class="title hang1">
{{ a.goodslist_title }}
@ -208,8 +219,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);">
<view v-if="item.doubling > 1" class="yu-tag-text ziti log-multiple-tag" style="">
x{{ item.doubling }}</view>
</view>
<view class="title hang1" style="text-align: center;">
@ -1698,6 +1708,8 @@ export default {
align-items: center;
background: #F8F8F8;
margin-top: 24rpx;
position: relative;
/* 添加相对定位 */
.avatar {
width: 80rpx;
@ -1743,19 +1755,19 @@ export default {
height: 100rpx;
}
>view:nth-child(2) {
>view:nth-child(1) {
padding: 0 20rpx;
min-width: 68rpx;
height: 32rpx;
box-sizing: border-box;
line-height: 40rpx;
border-radius: 18rpx;
font-size: 14rpx;
color: #FFFFFF;
}
// >view:nth-child(2) {
// >view:nth-child(1) {
// padding: 0 20rpx;
// min-width: 68rpx;
// height: 32rpx;
// box-sizing: border-box;
// line-height: 40rpx;
// border-radius: 18rpx;
// font-size: 14rpx;
// color: #FFFFFF;
// }
}
// }
.title {
width: 120rpx;
@ -2506,4 +2518,65 @@ export default {
line-height: 35rpx;
color: #333333;
}
.log-tag {
padding: 0 20rpx;
min-width: 68rpx;
height: 32rpx;
box-sizing: border-box;
line-height: 32rpx;
border-radius: 18rpx;
font-size: 22rpx;
color: #FFFFFF;
}
.multiple-tag {
padding: 0 20rpx;
min-width: 50rpx;
height: 32rpx;
box-sizing: border-box;
line-height: 32rpx;
border-radius: 18rpx;
color: #FFFFFF;
background-color: #BBF3D0;
font-size: 22rpx;
margin-left: 6rpx;
}
/* 添加角标样式 */
.corner-tag {
position: absolute;
left: 0;
top: 0;
background: url($iconurl + "fbs.png") no-repeat;
background-size: 100% 100%;
color: #FFFFFF;
font-size: 20rpx;
padding: 4rpx 12rpx;
border-radius: 0 0 12rpx 0;
z-index: 10;
min-width: 68rpx;
height: 32rpx;
}
.log-multiple-tag {
position: absolute;
z-index: 5;
display: flex;
justify-content: center;
align-items: center;
font-weight: 400;
background: url($iconurl + "fanbei.png") no-repeat;
background-size: 100% 100%;
color: #000;
width: 68rpx;
height: 32rpx;
// border-radius: 25rpx;
top: 12rpx;
right: 12rpx;
font-size: 22rpx;
line-height: 32rpx;
}
</style>