Commit a4a2b658 authored by 王炽's avatar 王炽

66666

parent f436a82f
...@@ -40,6 +40,11 @@ ...@@ -40,6 +40,11 @@
font-size: 36rpx; font-size: 36rpx;
font-weight: bold; font-weight: bold;
color: #1c1c1c; color: #1c1c1c;
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 470rpx; // 约13个字的宽度
&.item-4 { &.item-4 {
color: #FFF0DF; color: #FFF0DF;
...@@ -50,6 +55,11 @@ ...@@ -50,6 +55,11 @@
font-size: 24rpx; font-size: 24rpx;
color: #999999; color: #999999;
margin-top: 10rpx; margin-top: 10rpx;
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 500rpx; // 约20个字的宽度
&.item-4 { &.item-4 {
color: #FFF0DF; color: #FFF0DF;
...@@ -144,10 +154,10 @@ ...@@ -144,10 +154,10 @@
.star_character { .star_character {
position: absolute; position: absolute;
right: 44rpx; right: 30rpx;
bottom: -20rpx; bottom: 30rpx;
width: 216rpx; width: 130rpx;
height: 211rpx; height: 130rpx;
.star_img { .star_img {
width: 100%; width: 100%;
......
...@@ -19,10 +19,11 @@ ...@@ -19,10 +19,11 @@
</button> </button>
</view> </view>
<!-- 3D星星角色 --> <!-- 3D星星角色 -->
<!-- :src="$baseUrl + (itemIndex != 4 ? 'integral/1023/invate_star_character1023.png' : 'integral/1023/invate_star_character102302.png')" -->
<view class="star_character"> <view class="star_character">
<image <image
class="star_img" class="star_img"
:src="$baseUrl + (itemIndex != 4 ? 'integral/1023/invate_star_character1023.png' : 'integral/1023/invate_star_character102302.png')" :src="prizeImageIcon"
mode="aspectFit" mode="aspectFit"
/> />
</view> </view>
...@@ -65,6 +66,10 @@ const props = defineProps({ ...@@ -65,6 +66,10 @@ const props = defineProps({
subTitle: { subTitle: {
type: String, type: String,
default: '' default: ''
},
prizeImageIcon: {
type: String,
default: ''
} }
}); });
......
...@@ -448,6 +448,7 @@ ...@@ -448,6 +448,7 @@
class="invite_container" class="invite_container"
:subTitle="integralStore.originInviteHome?.data?.subTitle" :subTitle="integralStore.originInviteHome?.data?.subTitle"
:itemIndex="itemIndex" :itemIndex="itemIndex"
:prizeImageIcon="integralStore.originInviteHome?.data?.prizeImage"
:islogin="islogin" :islogin="islogin"
@invite="handleInviteClick" @invite="handleInviteClick"
@record="handleRecordClick" @record="handleRecordClick"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment