| 123456789101112131415161718192021222324252627 |
- /**
- * views personal
- */
- type NewInfo = {
- title: string;
- date: string;
- link: string;
- };
- type Recommend = {
- title: string;
- msg: string;
- icon: string;
- bg: string;
- iconColor: string;
- };
- declare type PersonalState = {
- newsInfoList: NewInfo[];
- recommendList: Recommend[];
- personalForm: {
- name: string;
- email: string;
- autograph: string;
- occupation: string;
- phone: string;
- sex: string;
- };
- };
|