修复管理员界面相关问题,优化页面显示

This commit is contained in:
sijinhui
2023-12-29 23:49:26 +08:00
parent d5e92a7b06
commit 067ccb481b
3 changed files with 158 additions and 144 deletions

View File

@@ -252,7 +252,7 @@ function isPinYin(input: string): boolean {
export function isName(input: string): boolean {
const denyList = [
"suibian",
"suibian", "某某", "张三", "李四"
]
if (denyList.includes(input)) {
return false;
@@ -300,4 +300,4 @@ function cleanUpString(input: string): string {
catch {
return '';
}
}
}