feat: 实现发行申请提交

This commit is contained in:
2025-12-16 03:49:39 +07:00
parent 831bc78ec5
commit 2d1454d08e
21 changed files with 870 additions and 40 deletions

View File

@@ -30,7 +30,6 @@ import WalletCard from "./components/wallet-card.vue";
<WalletCard />
<IssuingAsset />
<PurchaseAsset />
<AssetBalance />
<MyRevenue />
</IonContent>
</IonPage>

View File

@@ -160,6 +160,7 @@ onMounted(() => {
<ion-modal :keep-contents-mounted="true">
<ion-datetime
id="datetime"
class="ui-datetime"
done-text="Done"
presentation="date"
:value="userProfile?.birthday"
@@ -187,21 +188,4 @@ ion-avatar {
ion-item {
--min-height: 60px;
}
ion-datetime {
--background: rgb(255 255 255);
--background-rgb: 255, 255, 255;
--wheel-highlight-background: rgb(194 194 194);
--wheel-fade-background-rgb: 255, 255, 255;
border-radius: 16px;
overflow: hidden;
}
@media (prefers-color-scheme: dark) {
ion-datetime {
--background: rgb(15, 15, 15);
--background-rgb: 15, 15, 15;
--wheel-highlight-background: rgb(50, 50, 50);
--wheel-highlight-border-radius: 48px;
--wheel-fade-background-rgb: 15, 15, 15;
}
}
</style>