feat: 更新依赖版本,优化路由组件,重构文件预览和订单面板,添加市场组件

This commit is contained in:
2026-01-12 00:00:49 +07:00
parent ba9f88a38e
commit 405ca17664
18 changed files with 241 additions and 111 deletions

View File

@@ -10,10 +10,9 @@ const { t } = useI18n();
<template>
<div class="mt-2">
<!-- Rwa about -->
<div>
<div class="font-semibold">
{{ t('market.tradeRwa.about') }}
关于
</div>
<div class="text-xs mt-2">
{{ data?.product?.description || t('market.tradeRwa.noDescription') }}
@@ -31,7 +30,7 @@ const { t } = useI18n();
</ion-col>
<ion-col>
<div class="label">
{{ t('market.tradeRwa.fields.valuation') }}
市值
</div>
<div>${{ formatAmountWithUnit(data?.product?.estimatedValue) }}</div>
</ion-col>
@@ -64,4 +63,10 @@ const { t } = useI18n();
</div>
</template>
<style lang='css' scoped></style>
<style lang='css' scoped>
@reference "tailwindcss";
.label {
@apply text-(--ion-text-color-step-300) mb-1 text-sm;
}
</style>