fix
This commit is contained in:
@@ -13,8 +13,16 @@
|
||||
<div class="text-sm mb-2" style="color: var(--van-text-color-2);">
|
||||
累计收益:¥ {{ (data?.total_earnings || 0).toFixed(2) }}
|
||||
</div>
|
||||
<div class="text-sm mb-6" style="color: var(--van-text-color-2);">
|
||||
冻结余额:¥ {{ (data?.frozen_balance || 0).toFixed(2) }}
|
||||
<div class="text-sm mb-6 flex items-center" style="color: var(--van-text-color-2);">
|
||||
待结账金额:¥ {{ (data?.frozen_balance || 0).toFixed(2) }}
|
||||
<van-popover v-model:show="showTooltip" placement="bottom-start" :offset="10">
|
||||
<template #reference>
|
||||
<van-icon name="question-o" class="ml-2 cursor-help" @mouseenter="showTooltip = true" @mouseleave="showTooltip = false" />
|
||||
</template>
|
||||
<div class="p-2 text-sm" style="max-width: 200px;">
|
||||
待结账金额将在订单创建10小时后自动解冻
|
||||
</div>
|
||||
</van-popover>
|
||||
</div>
|
||||
<div class="grid grid-cols-2 gap-3">
|
||||
<button @click="toWithdraw"
|
||||
@@ -207,6 +215,7 @@ const agentStore = useAgentStore();
|
||||
const { isAgent } = storeToRefs(agentStore);
|
||||
const router = useRouter();
|
||||
const data = ref(null);
|
||||
const showTooltip = ref(false);
|
||||
|
||||
// 日期选项映射
|
||||
const dateRangeMap = {
|
||||
|
||||
Reference in New Issue
Block a user