|
@@ -197,7 +197,13 @@ public class CheckViewBizAuthAspect {
|
|
|
headers.clear();
|
|
|
headers.put("userName", userName);
|
|
|
headers.put("password", Base64Converter.decode(password));
|
|
|
- checkNumAuth = myClient.checkNumAuth(url, headers);
|
|
|
+
|
|
|
+ Map<String, String> checkNumAuthParams = new HashMap<>();
|
|
|
+ checkNumAuthParams.put("num", num);
|
|
|
+ checkNumAuthParams.put("userName", userName);
|
|
|
+ checkNumAuthParams.put("password", Base64Converter.decode(password));
|
|
|
+ String url2 = host.concat("/service/manage/inner/checkNumAuth");
|
|
|
+ checkNumAuth = myClient.checkNumAuthPost(url2, checkNumAuthParams);
|
|
|
if(checkNumAuth.getCode() == ServerCode.SUCCESS.code()){
|
|
|
data = checkNumAuth.getData();
|
|
|
}
|