更新 .gitignore,添加 .claude/ 目录;新增 MY_REQUIREMENTS.md 文件,记录个人需求清单;优化小键盘组件,调整布局并添加删除按钮;修改路由配置,禁用某些页面的动画效果;全局样式中调整过渡时长。
This commit is contained in:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user