From fd6ac90b67d75ed5f5510b25f9d16131151de5db Mon Sep 17 00:00:00 2001 From: 16337 <1633794139@qq.com> Date: Fri, 13 Feb 2026 16:31:08 +0800 Subject: [PATCH] =?UTF-8?q?fix(aiot):=20=E4=BF=AE=E5=A4=8D=E6=97=B6?= =?UTF-8?q?=E9=97=B4=E9=80=89=E6=8B=A9=E5=99=A8placeholder=E8=AF=AD?= =?UTF-8?q?=E6=B3=95=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将 placeholder 字符串改为数组绑定 :placeholder - 修复 Vue 编译错误:Attribute name cannot contain quotes Co-Authored-By: Claude Opus 4.6 --- .../src/views/aiot/device/roi/components/WorkingHoursEditor.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 6885fe0cf..1149e78ac 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 @@ -233,7 +233,7 @@ function getDuration(period: WorkingHourPeriod): string { v-model:value="currentRange" format="HH:mm" :minute-step="30" - placeholder="["开始时间", "结束时间"]" + :placeholder="['开始时间', '结束时间']" style="flex: 1" />