login.d.ts 619 B

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