bug修复

This commit is contained in:
2024-05-26 09:50:01 +08:00
parent 11a0637039
commit 4344adeb0b
6 changed files with 7 additions and 29 deletions

View File

@@ -35,7 +35,7 @@ export const showMessage = (status: number | string): string => {
message = 'HTTP版本不受支持(505)';
break;
default:
message = `连接出错(${status})!`;
message = `操作失败(${status})!`;
}
return `${message},请检查网络或联系管理员!`;
};