feat(projects): page manage_user

This commit is contained in:
Soybean
2024-01-28 16:24:43 +08:00
parent a19f895cd9
commit 8a170eeebd
11 changed files with 703 additions and 52 deletions

29
src/typings/app.d.ts vendored
View File

@ -459,6 +459,35 @@ declare namespace App {
disable: string;
};
};
user: {
title: string;
form: {
userName: string;
userGender: string;
nickName: string;
userPhone: string;
userEmail: string;
userStatus: string;
userRole: string;
};
userName: string;
userGender: string;
nickName: string;
userPhone: string;
userEmail: string;
userStatus: string;
userRole: string;
addUser: string;
editUser: string;
gender: {
male: string;
female: string;
};
status: {
enable: string;
disable: string;
};
};
};
};
form: {