You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
884 B
53 lines
884 B
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 页面
|
|
*/
|
|
export interface Design {
|
|
pageId?: number;
|
|
name?: string;
|
|
keywords?: string;
|
|
description?: string;
|
|
path?: string;
|
|
component?: string;
|
|
photo?: string;
|
|
content?: string;
|
|
// 类型
|
|
type?: string;
|
|
// 宽
|
|
width?: string;
|
|
// 高
|
|
height?: string;
|
|
// 页面样式
|
|
styles?: string;
|
|
// 附件
|
|
images?: string;
|
|
// 用户ID
|
|
userId?: number;
|
|
// 设为首页
|
|
home?: number;
|
|
// 排序
|
|
sortNumber?: number;
|
|
// 备注
|
|
comments?: string;
|
|
// 状态
|
|
status?: number;
|
|
// 创建时间
|
|
createTime?: string;
|
|
// 更新时间
|
|
updateTime?: string;
|
|
// 页面布局
|
|
layout?: string;
|
|
backgroundColor?: string;
|
|
buyUrl?: string;
|
|
}
|
|
|
|
/**
|
|
* 页面搜索条件
|
|
*/
|
|
export interface DesignParam extends PageParam {
|
|
pageId?: string;
|
|
name?: number;
|
|
type?: number;
|
|
userId?: number;
|
|
}
|