Skip to main content
Version: 3.9

View 页面

1. 结构声明

class View extends Annotatable {
pageTemplateId?: string;
name: string = '';
uuid?: string;
title: string;
crumb?: StaticString;
auth: boolean;
authDescription?: string;
isIndex?: boolean;
template?: string;
script: string;
style?: string;
elements: Array<ViewElement>;
params: Array<Param>;
variables: Array<Variable>;
logics: Array<Logic>;
bindEvents: Array<BindEvent>;
bindRoles: Array<string>;
children: Array<View>;
}