- 添加了.dockerignore、.env.example和.gitignore配置文件 - 实现了文件服务器、模块API和服务器API的代理功能 - 创建了动态路由页面用于展示文章列表和详情 - 实现了商品详情页面包括图片展示和价格信息 - 添加了静态页面展示功能支持富文本内容渲染 - 配置了SEO元数据和面包屑导航组件
65 lines
1.2 KiB
TypeScript
65 lines
1.2 KiB
TypeScript
import type { PageParam } from '@/api';
|
||
|
||
/**
|
||
* 应用参数
|
||
*/
|
||
export interface CmsWebsiteField {
|
||
// 自增ID
|
||
id?: number;
|
||
// 类型,0文本 1图片 2其他
|
||
type?: number;
|
||
// 名称
|
||
name?: string;
|
||
// 默认值
|
||
defaultValue?: string;
|
||
// 可修改的值 [on|off]
|
||
modifyRange?: string;
|
||
// 备注
|
||
comments?: string;
|
||
// css样式
|
||
style?: string;
|
||
// 名称
|
||
value?: any;
|
||
// 语言
|
||
lang?: string;
|
||
// 是否加密
|
||
encrypted?: boolean;
|
||
// 模板
|
||
template?: string;
|
||
// 排序(数字越小越靠前)
|
||
sortNumber?: number;
|
||
// 是否删除, 0否, 1是
|
||
deleted?: number;
|
||
// 租户id
|
||
tenantId?: number;
|
||
// 创建时间
|
||
createTime?: string;
|
||
}
|
||
|
||
/**
|
||
* 应用参数搜索条件
|
||
*/
|
||
export interface CmsWebsiteFieldParam extends PageParam {
|
||
id?: number;
|
||
keywords?: string;
|
||
}
|
||
|
||
export interface Config {
|
||
siteName?: string;
|
||
siteLogo?: string;
|
||
domain?: string;
|
||
icpNo?: string;
|
||
copyright?: string;
|
||
loginBgImg?: string;
|
||
address?: string;
|
||
tel?: string;
|
||
kefu2?: string;
|
||
kefu1?: string;
|
||
email?: string;
|
||
loginTitle?: string;
|
||
sysLogo?: string;
|
||
// 添加API地址配置项
|
||
ApiUrl?: string;
|
||
// 添加主题配置项
|
||
theme?: string;
|
||
} |