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> </script>
<template> <template>
<IonPage> <ion-page>
<IonContent :fullscreen="true" class="ion-padding"> <ion-header>
<router-view /> <ion-toolbar class="ui-toolbar">
</IonContent> <ion-back-button slot="start" />
</IonPage> <ion-title>{{ t('myIssues.title') }}</ion-title>
</ion-toolbar>
</ion-header>
<router-view />
</ion-page>
</template> </template>
<style lang='css' scoped></style> <style lang='css' scoped></style>

View File

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