修改红包问题
This commit is contained in:
@@ -43,8 +43,8 @@
|
||||
<view class="red-envelope-person">
|
||||
<view class="name-box">
|
||||
<image
|
||||
v-if="userInfo?.avatar"
|
||||
:src="userInfo?.avatar"
|
||||
v-if="viewData.avatar"
|
||||
:src="viewData.avatar"
|
||||
mode="aspectFill"
|
||||
class="avatar"
|
||||
></image>
|
||||
@@ -53,7 +53,7 @@
|
||||
type="contact-filled"
|
||||
size="54rpx"
|
||||
></uni-icons>
|
||||
<text>{{ userInfo?.userName }}发出的的红包</text>
|
||||
<text>{{ viewData.userName }}发出的的红包</text>
|
||||
</view>
|
||||
<text class="tips">{{ viewData?.title }}</text>
|
||||
</view>
|
||||
@@ -77,16 +77,29 @@
|
||||
:key="item.id"
|
||||
class="red-envelope-card"
|
||||
>
|
||||
<view class="avatar"></view>
|
||||
<image
|
||||
v-if="item?.avatar"
|
||||
:src="item?.avatar"
|
||||
mode="aspectFill"
|
||||
class="avatar"
|
||||
></image>
|
||||
<uni-icons
|
||||
v-else
|
||||
type="contact-filled"
|
||||
size="80rpx"
|
||||
></uni-icons>
|
||||
<view class="right-box">
|
||||
<view class="top-name">
|
||||
<text>用户名称</text>
|
||||
<text>{{ item.userName }}</text>
|
||||
<text>{{ item.receiveAmount }}积分</text>
|
||||
</view>
|
||||
<view class="bottom-name">
|
||||
<text class="date">{{ item.receiveTime }}</text>
|
||||
<view
|
||||
v-if="viewData.luckyReceive.userId === item.userId"
|
||||
v-if="
|
||||
!isPersonal &&
|
||||
viewData.luckyReceive.userId === item.userId
|
||||
"
|
||||
class="tisp"
|
||||
>
|
||||
<image
|
||||
|
||||
Reference in New Issue
Block a user