From 6b096862b2b2405a78de8d01ad3aa89150d38cdf Mon Sep 17 00:00:00 2001 From: 16337 <1633794139@qq.com> Date: Fri, 13 Feb 2026 16:45:43 +0800 Subject: [PATCH] =?UTF-8?q?refactor(aiot):=20=E8=B0=83=E6=95=B4=E5=B7=A5?= =?UTF-8?q?=E4=BD=9C=E6=97=B6=E9=97=B4=E5=BF=AB=E6=8D=B7=E6=A8=A1=E6=9D=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 删除三班制模板 - 修改两班制时间为 08:30-11:00 和 12:00-17:30 - 保留全天监控和单班制模板 Co-Authored-By: Claude Opus 4.6 --- .../device/roi/components/WorkingHoursEditor.vue | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/apps/web-antd/src/views/aiot/device/roi/components/WorkingHoursEditor.vue b/apps/web-antd/src/views/aiot/device/roi/components/WorkingHoursEditor.vue index cd28ad3f6..5538b9f79 100644 --- a/apps/web-antd/src/views/aiot/device/roi/components/WorkingHoursEditor.vue +++ b/apps/web-antd/src/views/aiot/device/roi/components/WorkingHoursEditor.vue @@ -58,18 +58,8 @@ const templates = [ icon: '⏰', description: '上午+下午', periods: [ - { start: '09:00', end: '12:00' }, - { start: '14:00', end: '18:00' }, - ], - }, - { - label: '三班制', - icon: '🔄', - description: '早中晚班', - periods: [ - { start: '08:00', end: '16:00' }, - { start: '16:00', end: '00:00' }, - { start: '00:00', end: '08:00' }, + { start: '08:30', end: '11:00' }, + { start: '12:00', end: '17:30' }, ], }, ];