小修小补

This commit is contained in:
2025-09-09 00:18:17 +08:00
parent 983320d500
commit 1a738f7090
2 changed files with 4 additions and 2 deletions

View File

@@ -9,8 +9,6 @@ interface DesignTemplate {
previewImage?: string; // 模板预览图
// 模板包含的组件
components: ScreenDesignModeConfig["components"];
// 模板包含的分组信息
groups: ScreenDesignModeConfig["groups"];
// 模板可能依赖的变量
variables: ScreenDesignModeConfig["variables"];
// 模板可能依赖的过滤器

View File

@@ -1,6 +1,10 @@
// 大屏设计时的配置,可以被导出/导入
export interface ScreenDesignModeConfig {
id: string;
name: string;
author: string;
createdTime: string;
updatedTime: string;
// 大屏样式
style: {
width: number;