Commit 92203163 authored by tyyin lan's avatar tyyin lan

chore: 首页导航卡片面板优化

parent 22ef7d9e
......@@ -103,14 +103,26 @@ async function handleCreateDigitalHumanDialogue(digitalHumanDialogueForm: Digita
<div class="flex items-center">
<div class="flex flex-1 flex-col items-center text-[16px]">
<div class="font-600 mb-2 truncate text-[18px]">{{ userInfo.taskConfigNum || '-' }}</div>
<div class="font-600 mb-2 truncate text-[18px]">
<template v-if="typeof userInfo.taskConfigNum === 'number'">
<n-number-animation :from="0" :to="userInfo.taskConfigNum" />
</template>
<span v-else>-</span>
</div>
<div>創作</div>
</div>
<div class="h-[34px] w-[2px] bg-[#bbb]"></div>
<div class="flex flex-1 flex-col items-center text-[16px]">
<div class="font-600 mb-2 truncate text-[18px]">{{ userInfo.equityNum || '-' }}</div>
<div class="font-600 mb-2 truncate text-[18px]">
<template v-if="typeof userInfo.equityNum === 'number'">
<n-number-animation :from="0" :to="userInfo.equityNum" />
</template>
<span v-else>-</span>
</div>
<div>餘額</div>
</div>
</div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment