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}}]}, ],