diff --git a/http/http.js b/http/http.js index 61be1ca..dcef9d8 100644 --- a/http/http.js +++ b/http/http.js @@ -73,8 +73,6 @@ function commonsProcess(showLoading, httpReqCallback, isreturm) { // http响应码不正确 if (statusCode != 200 && statusCode != 204 && statusCode != 201) { isShowErrorToast = true; - data.message = - data.message == "Bad credentials" ? "用户名或密码错误" : data.message; infoBox.showToast(data.message || "服务器异常"); return Promise.reject(bodyData); // 跳转到catch函数 }