export interface IAboutConfig { version: string; serviceTel: string; serviceTels: string[]; serviceQQ: string; address: string; copyright: string; } export interface IBaseConfig { title: string; printUrl: string; /** * 登录框标题 */ loginTitle: string; /** * 系统副标题 */ subTitle: string; /** * 系统名称 */ appTitle: string; baseURL: string; wsURL: string; previewURL: string; invoiceURL: string; downloadURL: string; liunxCameraURL: string; windowsCameraURL: string; adminURL: string; ythURL: string; smsURL: string; scczssURL: string; verification: boolean; passwordCheck: boolean; loginMsgAppId: string; loginMsgAppKey: string; loginMsgTemplateId: string; passwordReg: string; mobileCheck: boolean; usesCaptcha: boolean; /** * 登入检测部门 * */ loginWidthDept: boolean; /** * 存放地点是否联动部门权限 * */ laidWidthDept: boolean; /** * 在业务中,选择的部门是否为用户权限中的部门 * */ get4dept: boolean; /** * 是否需要校验签名 * */ signatureCheck: boolean; houseURL: string; jscURL: string; initPassword:string, /**模块大类 */ sysclasc:number, /**是否启动登录页 */ isLogin:boolean, /**系统截止时间 */ endkjqj:number } export interface IPathConfig { usesRotatePdf: boolean; } export interface IToolDownLoadData { name: string; describe: string; url: string; } export interface IWtuiConfig { toolDownLoadData: IToolDownLoadData[]; } export interface ISsoConfig { cwxtURL: string; } export interface IConfig { baseConfig: IBaseConfig; aboutConfig: IAboutConfig; pathConfig: IPathConfig; wtuiConfig: IWtuiConfig; ssoConfig: ISsoConfig; }