From e8a7beb5455d0c9f50f93004b600dd2781ad6bfd Mon Sep 17 00:00:00 2001
From: baoshiwei <baoshiwei@shlanbao.cn>
Date: 星期一, 30 六月 2025 09:36:56 +0800
Subject: [PATCH] feat(空调控制): 实现空调控制功能并优化 SVG 数据加载- 新增 AirCondConstants 类,定义空调控制常量 - 修改 AirConditionerServiceImpl,使用常量替代硬编码值 - 更新 MQTT 消息发送逻辑,使用常量定义主题 - 优化 SVG 数据加载和处理逻辑,改进标签值更新方式 - 调整域名地址配置,支持生产环境 API

---
 zhitan-vue/src/views/system/holiday/index.vue |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/zhitan-vue/src/views/system/holiday/index.vue b/zhitan-vue/src/views/system/holiday/index.vue
index 8383b0c..d817b1a 100644
--- a/zhitan-vue/src/views/system/holiday/index.vue
+++ b/zhitan-vue/src/views/system/holiday/index.vue
@@ -2,7 +2,7 @@
   <div class="app-container page">
     <div class="form-card">
       <el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="80px">
-        <el-form-item label="鑺傚亣鏃ュ悕绉�" prop="holidayName">
+        <el-form-item label="鍚嶇О" prop="holidayName">
           <el-input
             v-model="queryParams.holidayName"
             placeholder="璇疯緭鍏ヨ妭鍋囨棩鍚嶇О"
@@ -11,7 +11,7 @@
             @keyup.enter="handleQuery"
           />
         </el-form-item>
-        <el-form-item label="鑺傚亣鏃ユ棩鏈�" prop="holidayDate">
+        <el-form-item label="鏃ユ湡" prop="holidayDate">
           <el-date-picker
             v-model="queryParams.holidayDate"
             type="date"
@@ -20,7 +20,7 @@
             style="width: 240px"
           />
         </el-form-item>
-        <el-form-item label="鑺傚亣鏃ョ被鍨�" prop="holidayType">
+        <el-form-item label="绫诲瀷" prop="holidayType">
           <el-select v-model="queryParams.holidayType" placeholder="鑺傚亣鏃ョ被鍨�" clearable style="width: 240px">
             <el-option
               v-for="dict in sys_holiday_type"

--
Gitblit v1.9.3