feat: opt system notify init data
This commit is contained in:
@@ -450,6 +450,10 @@ export interface SiteSettings {
|
||||
openapi_enabled?: boolean
|
||||
openapi_token?: string
|
||||
openapi_token_expire?: string
|
||||
system_notice_days?: string
|
||||
system_notice_max_count?: string
|
||||
push_log_days?: string
|
||||
push_log_max_count?: string
|
||||
}
|
||||
|
||||
export interface SchedulerSettings {
|
||||
|
||||
@@ -200,13 +200,13 @@ function onDialogClose(open: boolean) {
|
||||
@click="showDetail(log)">
|
||||
<span class="w-12 sm:w-16 shrink-0 text-muted-foreground text-xs sm:text-sm">#{{ getLogIndex(index) }}</span>
|
||||
<span class="w-40 sm:w-56 shrink-0 font-medium text-xs sm:text-sm truncate" :title="log.title">{{ log.title }}</span>
|
||||
<span class="hidden sm:flex sm:flex-1 font-medium text-xs sm:text-sm text-muted-foreground truncate" :title="log.content">
|
||||
<span class="hidden sm:flex sm:flex-1 text-xs sm:text-sm text-muted-foreground truncate" :title="log.content">
|
||||
{{ log.content || '-' }}
|
||||
</span>
|
||||
<span class="w-10 sm:w-16 shrink-0 flex justify-center">
|
||||
<span :class="['h-2 w-2 rounded-full', log.status === LOG_STATUS.SUCCESS ? 'bg-green-500 shadow-[0_0_8px_rgba(34,197,94,0.4)]' : 'bg-red-500 shadow-[0_0_8px_rgba(239,68,68,0.4)]']"></span>
|
||||
<span :class="['h-2 w-2 rounded-full', log.status === LOG_STATUS.SUCCESS ? 'bg-green-500' : 'bg-red-500']"></span>
|
||||
</span>
|
||||
<span class="shrink-0 w-24 sm:w-40 sm:text-right text-[10px] sm:text-xs text-muted-foreground font-mono">
|
||||
<span class="shrink-0 w-24 sm:w-40 sm:text-right text-xs text-muted-foreground">
|
||||
{{ formatDate(log.created_at) }}
|
||||
</span>
|
||||
</div>
|
||||
|
||||
@@ -32,7 +32,11 @@ const form = ref<SiteSettings>({
|
||||
cookie_days: '7',
|
||||
openapi_enabled: false,
|
||||
openapi_token: '',
|
||||
openapi_token_expire: ''
|
||||
openapi_token_expire: '',
|
||||
system_notice_days: '30',
|
||||
system_notice_max_count: '500',
|
||||
push_log_days: '15',
|
||||
push_log_max_count: '5000'
|
||||
})
|
||||
const loading = ref(false)
|
||||
const showOpenapiConfirmDialog = ref(false)
|
||||
@@ -62,7 +66,11 @@ async function saveSettings() {
|
||||
await api.settings.updateSite({
|
||||
...form.value,
|
||||
page_size: String(form.value.page_size),
|
||||
cookie_days: String(form.value.cookie_days)
|
||||
cookie_days: String(form.value.cookie_days),
|
||||
system_notice_days: String(form.value.system_notice_days || '30'),
|
||||
system_notice_max_count: String(form.value.system_notice_max_count || '500'),
|
||||
push_log_days: String(form.value.push_log_days || '15'),
|
||||
push_log_max_count: String(form.value.push_log_max_count || '5000')
|
||||
})
|
||||
await refreshSettings()
|
||||
toast.success('保存成功')
|
||||
@@ -137,6 +145,43 @@ onMounted(loadSettings)
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="pt-6 border-t mt-6">
|
||||
<h3 class="text-lg font-medium text-foreground mb-4">日志清理策略</h3>
|
||||
<p class="text-sm text-muted-foreground mb-4">自动清理超过指定天数或数量的日志记录,保持系统性能。</p>
|
||||
|
||||
<div class="space-y-4">
|
||||
<div class="grid grid-cols-1 sm:grid-cols-4 items-center gap-2 sm:gap-4">
|
||||
<Label class="sm:text-right text-muted-foreground">系统通知</Label>
|
||||
<div class="sm:col-span-3 flex flex-wrap items-center gap-4">
|
||||
<div class="flex items-center gap-2">
|
||||
<Input v-model="form.system_notice_days" type="number" class="w-20" min="0" />
|
||||
<span class="text-sm text-muted-foreground">天后清理</span>
|
||||
</div>
|
||||
<div class="flex items-center gap-2">
|
||||
<span class="text-sm text-muted-foreground">或保留最新</span>
|
||||
<Input v-model="form.system_notice_max_count" type="number" class="w-24" min="0" />
|
||||
<span class="text-sm text-muted-foreground">条</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="grid grid-cols-1 sm:grid-cols-4 items-center gap-2 sm:gap-4">
|
||||
<Label class="sm:text-right text-muted-foreground">推送日志</Label>
|
||||
<div class="sm:col-span-3 flex flex-wrap items-center gap-4">
|
||||
<div class="flex items-center gap-2">
|
||||
<Input v-model="form.push_log_days" type="number" class="w-20" min="0" />
|
||||
<span class="text-sm text-muted-foreground">天后清理</span>
|
||||
</div>
|
||||
<div class="flex items-center gap-2">
|
||||
<span class="text-sm text-muted-foreground">或保留最新</span>
|
||||
<Input v-model="form.push_log_max_count" type="number" class="w-24" min="0" />
|
||||
<span class="text-sm text-muted-foreground">条</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="pt-6 border-t mt-6">
|
||||
<div class="flex items-center justify-between mb-4">
|
||||
<div class="flex items-center gap-2">
|
||||
|
||||
Reference in New Issue
Block a user