feat: 更新 my-issues 和 my-subscribe 组件,添加头部和返回按钮

This commit is contained in:
2025-12-25 19:10:45 +07:00
parent f9aad197c6
commit 88065295f3
2 changed files with 18 additions and 8 deletions

View File

@@ -3,11 +3,15 @@ const { t } = useI18n();
</script>
<template>
<IonPage>
<IonContent :fullscreen="true" class="ion-padding">
<router-view />
</IonContent>
</IonPage>
<ion-page>
<ion-header>
<ion-toolbar class="ui-toolbar">
<ion-back-button slot="start" />
<ion-title>{{ t('myIssues.title') }}</ion-title>
</ion-toolbar>
</ion-header>
<router-view />
</ion-page>
</template>
<style lang='css' scoped></style>

View File

@@ -2,9 +2,15 @@
</script>
<template>
<IonPage>
<ion-router-outlet />
</IonPage>
<ion-page>
<ion-header>
<ion-toolbar class="ui-toolbar">
<ion-back-button slot="start" />
<ion-title>我的申购</ion-title>
</ion-toolbar>
</ion-header>
<router-view />
</ion-page>
</template>
<style lang='css' scoped></style>