feat: 更新网络请求工具函数
All checks were successful
CI Monitor CI/CD / build-image (push) Successful in 29s
CI Monitor CI/CD / deploy (push) Successful in 30s

This commit is contained in:
zhaoyingbo 2024-07-12 11:20:32 +00:00
parent f89feffaba
commit e3c188c1b7

View File

@ -226,6 +226,6 @@ netTool.serverError = (msg: string, data?: any, requestId?: string) =>
* @returns 200 OK的响应对象
*/
netTool.ok = (data?: any, requestId?: string) =>
Response.json({ code: 200, msg: "ok", data, requestId });
Response.json({ code: 0, msg: "success", data, requestId });
export default netTool;