123456789101112131415161718192021222324252627282930 |
- /**
- * 平台登录
- */
- 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"
- }
|