From bb1f1591982c57f3cb67f799b34db73b54d2adf7 Mon Sep 17 00:00:00 2001 From: YuHoYe Date: Mon, 9 Feb 2026 19:54:51 +0800 Subject: [PATCH] =?UTF-8?q?feat(DailySummary):=20Cron=20=E5=AD=97=E6=AE=B5?= =?UTF-8?q?=E6=94=B9=E7=94=A8=20VCronField=20GUI=20=E9=80=89=E6=8B=A9?= =?UTF-8?q?=E5=99=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugins.v2/dailysummary/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins.v2/dailysummary/__init__.py b/plugins.v2/dailysummary/__init__.py index a890bbb..e3e50fd 100644 --- a/plugins.v2/dailysummary/__init__.py +++ b/plugins.v2/dailysummary/__init__.py @@ -250,11 +250,11 @@ class DailySummary(_PluginBase): "component": "VRow", "content": [ {"component": "VCol", "props": {"cols": 12, "md": 3}, - "content": [{"component": "VTextField", "props": {"model": "daily_cron", "label": "每日 Cron"}}]}, + "content": [{"component": "VCronField", "props": {"model": "daily_cron", "label": "每日周期"}}]}, {"component": "VCol", "props": {"cols": 12, "md": 3}, - "content": [{"component": "VTextField", "props": {"model": "weekly_cron", "label": "每周 Cron"}}]}, + "content": [{"component": "VCronField", "props": {"model": "weekly_cron", "label": "每周周期"}}]}, {"component": "VCol", "props": {"cols": 12, "md": 3}, - "content": [{"component": "VTextField", "props": {"model": "monthly_cron", "label": "每月 Cron"}}]}, + "content": [{"component": "VCronField", "props": {"model": "monthly_cron", "label": "每月周期"}}]}, {"component": "VCol", "props": {"cols": 12, "md": 3}, "content": [{"component": "VSelect", "props": {"model": "test_type", "label": "测试类型", "items": test_options}}]}, ],