修复已知问题

This commit is contained in:
2024-09-27 14:17:12 +08:00
parent c0328fa23e
commit 5e56c31300
299 changed files with 17512 additions and 987 deletions

View File

@@ -4,46 +4,51 @@ import type { PageParam } from '@/api';
* 页面管理记录表
*/
export interface CmsDesign {
// ID
pageId?: number;
// 页面标题
name?: string;
// 所属栏目ID
categoryId?: number;
// 页面关键词
keywords?: string;
// 页面描述
description?: string;
// 缩列图
path?: string;
component?: string;
photo?: string;
// 购买链接
buyUrl?: string;
content?: string;
// 类型
type?: string;
categoryId?: number;
// 宽
width?: string;
// 高
height?: string;
// 页面样式
style?: string;
// 页面内容
content?: string;
// 是否开启布局
showLayout?: number;
// 页面布局
layout?: string;
// 上级id, 0是顶级
parentId?: number;
// 附件
images?: string;
// 用户ID
userId?: number;
// 设为首页
home?: number;
// 排序(数字越小越靠前)
// 排序
sortNumber?: number;
// 备注
comments?: string;
// 状态, 0正常, 1冻结
// 状态
status?: number;
// 是否删除, 0否, 1是
deleted?: number;
// 租户id
tenantId?: number;
// 创建时间
createTime?: string;
// 更新时间
updateTime?: string;
// 页面布局
layout?: string;
backgroundColor?: string;
// 关联网站导航ID
navigationId?: number;
showLayout?: boolean;
btn?: any[];
showBanner?: boolean;
buyUrl?: string;
demoUrl?: string;
account?: string;
docUrl?: string;
}
/**