feat: update VSCode settings for ESLint and Prettier integration
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 20s
Docker Build & Deploy / Deploy to Production (push) Successful in 7s
Docker Build & Deploy / Cleanup Dangling Images (push) Successful in 1s

chore: refactor ESLint configuration for improved linting rules and performance

fix: handle push event data parsing in service worker

style: adjust tabbar item properties for better readability in App.vue

refactor: remove unused functions and improve code clarity in TransactionDetail.vue

fix: ensure consistent event handling in CalendarView.vue

style: clean up component structure and formatting in various Vue files

chore: update launch script for better command execution

feat: add ESLint configuration file for consistent code style across the project

fix: resolve issues with button click events in multiple components
This commit is contained in:
孙诚
2026-01-07 14:33:30 +08:00
parent efdfe88155
commit b2339c1c5e
32 changed files with 380 additions and 241 deletions

View File

@@ -4,8 +4,8 @@
title="批量分类"
left-text="返回"
left-arrow
@click-left="handleBack"
placeholder
placeholder
@click-left="handleBack"
/>
<div class="scroll-content">
@@ -65,7 +65,7 @@ const loadUnclassifiedCount = async () => {
}
// 处理数据加载完成
const handleDataLoaded = ({ groups, total, finished: isFinished }) => {
const handleDataLoaded = ({ groups, finished: isFinished }) => {
hasData.value = groups.length > 0
finished.value = isFinished
}