feat: update VSCode settings for ESLint and Prettier integration
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:
@@ -33,8 +33,8 @@
|
||||
:loading="classifying"
|
||||
:disabled="selectedCount === 0"
|
||||
round
|
||||
@click="startClassify"
|
||||
class="action-btn"
|
||||
@click="startClassify"
|
||||
>
|
||||
{{ classifying ? '分类中...' : `开始分类 (${selectedCount}组)` }}
|
||||
</van-button>
|
||||
@@ -43,8 +43,8 @@
|
||||
type="success"
|
||||
:disabled="!hasChanges || classifying"
|
||||
round
|
||||
@click="saveClassifications"
|
||||
class="action-btn"
|
||||
@click="saveClassifications"
|
||||
>
|
||||
保存分类
|
||||
</van-button>
|
||||
@@ -91,7 +91,7 @@ const loadUnclassifiedCount = async () => {
|
||||
}
|
||||
|
||||
// 处理数据加载完成
|
||||
const handleDataLoaded = ({ groups, total }) => {
|
||||
const handleDataLoaded = ({ total }) => {
|
||||
totalGroups.value = total
|
||||
// 默认全选所有分组
|
||||
if (groupListRef.value) {
|
||||
|
||||
Reference in New Issue
Block a user