We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4eb9c4 commit 94e6b80Copy full SHA for 94e6b80
src/components/msgCom/GiftMsgCom.vue
@@ -15,8 +15,15 @@ const { msg } = defineProps<{
15
<UserName :userInfo="msg.user" />
16
<TBox>
17
<TText>赠送了</TText>
18
- <TText>(¥{{ msg.price / 1000 }}) </TText>
19
- <TText>【{{ msg.gift_name }}】 * {{ msg.amount }}</TText>
+ <TText>
+ <TText color="magenta"> (¥{{ msg.price / 1000 }}) </TText>
20
+ <TText color="magenta">{{ msg.gift_name }}</TText>
21
+ <TText> * {{ msg.amount }}</TText>
22
+ </TText>
23
+ <TText v-if="msg.send_master?.uname">
24
+ <TText> 给 </TText>
25
+ <TText color="magenta" dimColor>{{ msg.send_master.uname }}</TText>
26
27
</TBox>
28
29
0 commit comments