/** * 平台登录 */ export interface ReqPlatLogin { pid:string; //包ID param:string[]; //参数 } /** * 返回平台登录信息 */ export interface ResPlatLogin { openId:string //唯一标识 token:string //唯一标识对应的token noticeWais:Notices[] //登陆界面公告 } export interface Notices { type: number; //公告类型 title: string; //这里是公告标题 content: string; //这里是公告内容 } export const conf = { connet: "http" }