chore: format code style and update linting configuration

This commit is contained in:
Megghy
2025-10-02 10:38:23 +08:00
parent 6fd046adcd
commit 758549d29d
253 changed files with 16258 additions and 15833 deletions

View File

@@ -1,19 +1,20 @@
<script setup lang="ts">
import { NSpace, NSwitch, NInputNumber, NSelect, NCollapseItem } from 'naive-ui';
import { AutoActionItem, TriggerType } from '@/client/store/useAutoAction';
import type { AutoActionItem } from '@/client/store/useAutoAction'
import { NCollapseItem, NInputNumber, NSelect, NSpace, NSwitch } from 'naive-ui'
import { TriggerType } from '@/client/store/useAutoAction'
const props = defineProps({
action: {
type: Object as () => AutoActionItem,
required: true
}
});
required: true,
},
})
// SC过滤模式选项
const scFilterModeOptions = [
{ label: '不过滤', value: 'none' },
{ label: '最低价格', value: 'price' }
];
{ label: '最低价格', value: 'price' },
]
</script>
<template>
@@ -74,4 +75,4 @@ const scFilterModeOptions = [
</NSpace>
</NSpace>
</NCollapseItem>
</template>
</template>