更新 .gitignore,添加 .claude/ 目录;新增 MY_REQUIREMENTS.md 文件,记录个人需求清单;优化小键盘组件,调整布局并添加删除按钮;修改路由配置,禁用某些页面的动画效果;全局样式中调整过渡时长。

This commit is contained in:
2026-04-05 16:31:02 +08:00
parent 97fb73ad43
commit 285fef6eba
6 changed files with 261 additions and 14 deletions
+8 -4
View File
@@ -159,7 +159,8 @@ const routes: Router.RouteParameters[] = [
{
path: '/transaction/list',
async: asyncResolve(TransactionListPage),
beforeEnter: [checkLogin]
beforeEnter: [checkLogin],
options: { animate: false }
},
{
path: '/transaction/filter/amount',
@@ -184,7 +185,8 @@ const routes: Router.RouteParameters[] = [
{
path: '/account/list',
async: asyncResolve(AccountListPage),
beforeEnter: [checkLogin]
beforeEnter: [checkLogin],
options: { animate: false }
},
{
path: '/account/add',
@@ -209,7 +211,8 @@ const routes: Router.RouteParameters[] = [
{
path: '/statistic/transaction',
async: asyncResolve(StatisticsTransactionPage),
beforeEnter: [checkLogin]
beforeEnter: [checkLogin],
options: { animate: false }
},
{
path: '/statistic/settings',
@@ -259,7 +262,8 @@ const routes: Router.RouteParameters[] = [
{
path: '/settings',
async: asyncResolve(SettingsPage),
beforeEnter: [checkLogin]
beforeEnter: [checkLogin],
options: { animate: false }
},
{
path: '/app_lock',