feat(hand-factory): 添加live数据获取接口并更新多个组件

refactor(klp-header): 更新产线列表显示名称
fix(login): 修正验证码启用条件判断
style(l3): 注释掉用户欢迎语区块
refactor(klp-shutdown-statistic): 为switch case添加break语句
This commit is contained in:
砂糖
2025-10-27 14:28:29 +08:00
parent 718f0efc76
commit 57600f66c2
5 changed files with 19 additions and 9 deletions

View File

@@ -335,10 +335,13 @@ export default {
switch (this.activeTab) {
case "day":
return this.startDate;
break;
case "month":
return `${this.startDate}${this.endDate}`;
break;
case "year":
return `${this.startDate}${this.endDate}`;
break;
default:
return "";
}