Files
xiaoshi-pad-card/xiaoshi-pad-card.js

26 lines
768 B
JavaScript
Raw Normal View History

2026-01-27 21:06:33 +08:00
console.info("%c 消逝卡-平板端 \n%c v 1.0.8 ", "color: red; font-weight: bold; background: black", "color: white; font-weight: bold; background: black");
2025-11-11 22:58:58 +08:00
2026-01-01 15:12:37 +08:00
const loadCards = () => {
2026-01-25 16:17:34 +08:00
import('./xiaoshi-pad-climate-card.js');
2026-01-03 22:08:27 +08:00
import('./xiaoshi-pad-grid-card.js');
2025-11-11 22:58:58 +08:00
window.customCards = window.customCards || [];
window.customCards.push(...cardConfigs);
};
const cardConfigs = [
{
type: 'xiaoshi-pad-grid-card',
name: '消逝卡(平板端)-分布卡',
description: '温度分布、湿度分布'
2026-01-25 16:17:34 +08:00
},
{
type: 'xiaoshi-pad-climate-card',
2026-01-27 20:24:40 +08:00
name: '消逝卡(平板端)-空调/水暖毯/热水器/加湿器卡',
description: '平板端空调/水暖毯/热水器卡/加湿器卡',
2026-01-25 16:17:34 +08:00
preview: true
2025-11-11 22:58:58 +08:00
}
];
2025-11-23 22:49:10 +08:00
loadCards();