This commit is contained in:
Putoo
2026-07-08 19:23:34 +08:00
parent fe2696074b
commit c75f597405

View File

@@ -8,18 +8,19 @@
<GamePopup v-model:show="showView" title="【兑换】">
<!-- 自定义内容 -->
<div class="common">
<strong style="font-size: 14px;">兑换标题:</strong> {{ onData.name }}<br>
<strong style="font-size: 14px;">兑换说明:</strong>{{ onData.tips }}<br>
<strong style="font-size: 14px;">结束时间:</strong>{{ TimeExtend.Format(onData.endTime) }}<br>
<strong style="font-size: 14px;">兑换次数:</strong>{{ GameTool.GetTimeCountTips(onData.exType,
onData.count)}}<br>
<strong style="font-size: 14px;">兑换奖励:</strong><br>
<span style="font-size: 16px;">兑换标题:</span> {{ onData.name }}<br>
<span style="font-size: 16px;">兑换说明:</span>{{ onData.tips }}<br>
<span style="font-size: 16px;">结束时间:</span>{{ TimeExtend.Format(onData.endTime) }}<br>
<span style="font-size: 16px;">兑换次数:</span>{{ GameTool.GetTimeCountTips(onData.exType,
onData.count) }}<br>
<span style="font-size: 16px;">兑换奖励:</span><br>
<GameProp :data="onData.getData" :count="count"></GameProp>
<strong style="font-size: 14px;">兑换所需:</strong><br>
<span style="font-size: 16px;">兑换所需:</span><br>
<GamePropVerify :data="verifyData.needs"></GamePropVerify>
</div>
<div class="common" v-if="verifyData.result == true">
<strong style="font-size: 14px;">兑换数量:</strong><input type="number" class="search-ipt" v-model="count"><br>
<span style="font-size: 16px;">兑换数量:</span>
<input name="count" type="number" class="search-ipt" v-model="count" /><br>
<div style="text-align: center;">
<button class="ipt-btn" name="serch" @click="ExChangeOk" style="margin-top: 15px;">兑换</button>
</div>