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.
40 lines
730 B
40 lines
730 B
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 网站参数
|
|
*/
|
|
export interface WebsiteField {
|
|
id?: number;
|
|
name?: string;
|
|
value?: string;
|
|
comments?: string;
|
|
userId?: number;
|
|
websiteId?: number;
|
|
status?: any;
|
|
sortNumber?: any;
|
|
createTime?: string;
|
|
}
|
|
|
|
export interface WebsiteParam {
|
|
// 网站名称
|
|
site_logo?: string;
|
|
// 登录页面标题
|
|
login_name?: string;
|
|
// 登录页面的背景图片
|
|
login_bg_img?: string;
|
|
}
|
|
|
|
// 约定的小程序参数名称
|
|
export interface MpWeixinParam {
|
|
// 我的页面顶部背景图片
|
|
mp_user_top?: string;
|
|
}
|
|
|
|
/**
|
|
* 网站参数搜索条件
|
|
*/
|
|
export interface WebsiteFieldParam extends PageParam {
|
|
id?: number;
|
|
userId?: number;
|
|
websiteId?: number;
|
|
}
|