12345678910111213141516171819202122232425 |
- /*
- * @Author: your name
- * @Date: 2021-11-10 10:05:13
- * @LastEditTime: 2022-01-10 14:54:26
- * @LastEditors: Please set LastEditors
- * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
- * @FilePath: /KC-MiddlePlatform/src/pages/login/login.d.ts
- */
- declare namespace LoginPageTypes {
- //登录后可选平台项
- type SystemListItem = {
- icon: string;
- id: number;
- name: string;
- };
- //登录发送信息
- type LoginInfo = {
- account: string;
- // remember: boolean;
- password: string;
- hospSign: string;
- };
- }
|