diff --git a/src/views/Activities/Game/index.vue b/src/views/Activities/Game/index.vue index cb13141..ba62dfd 100644 --- a/src/views/Activities/Game/index.vue +++ b/src/views/Activities/Game/index.vue @@ -521,9 +521,11 @@ const getCountdown = () => { // 格式化奖励的展示信息 const showDetail = (type, reward) => { - let showamount = ['GOLD', 'DIAMOND', 'GIFT', 'FRAGMENTS', 'DOLLARS'] + let showamount = ['GOLD', 'DIAMOND', 'GIFT', 'FRAGMENTS'] if (showamount.includes(type)) { return reward.content + } else if (type === 'DOLLARS') { + return `$${reward.content}` } else { return `${reward.quantity}Days` }