fix(miniprogram): 删除重复页面 report/followup,修复 EmptyState 导入 bug

This commit is contained in:
iven
2026-04-24 12:19:24 +08:00
parent d26a847be2
commit f3716dbdc5
17 changed files with 42 additions and 475 deletions

View File

@@ -10,9 +10,7 @@ export default defineAppConfig({
'pages/appointment/detail/index',
'pages/article/index',
'pages/article/detail/index',
'pages/report/index',
'pages/report/detail/index',
'pages/followup/index',
'pages/followup/detail/index',
'pages/profile/index',
'pages/profile/family/index',
@@ -28,11 +26,11 @@ export default defineAppConfig({
backgroundColor: '#FFFFFF',
borderStyle: 'white',
list: [
{ pagePath: 'pages/index/index', text: '首页' },
{ pagePath: 'pages/health/index', text: '健康' },
{ pagePath: 'pages/appointment/index', text: '预约' },
{ pagePath: 'pages/article/index', text: '资讯' },
{ pagePath: 'pages/profile/index', text: '我的' },
{ pagePath: 'pages/index/index', text: '首页', iconPath: 'assets/tabbar/home.png', selectedIconPath: 'assets/tabbar/home-active.png' },
{ pagePath: 'pages/health/index', text: '健康', iconPath: 'assets/tabbar/health.png', selectedIconPath: 'assets/tabbar/health-active.png' },
{ pagePath: 'pages/appointment/index', text: '预约', iconPath: 'assets/tabbar/appointment.png', selectedIconPath: 'assets/tabbar/appointment-active.png' },
{ pagePath: 'pages/article/index', text: '资讯', iconPath: 'assets/tabbar/article.png', selectedIconPath: 'assets/tabbar/article-active.png' },
{ pagePath: 'pages/profile/index', text: '我的', iconPath: 'assets/tabbar/profile.png', selectedIconPath: 'assets/tabbar/profile-active.png' },
],
},
window: {