//? ? // 將參數(shù)拼成字典
//? ? NSDictionary *paramDic = @{
//? ? ? ? ? ? ? ? ? ? ? ? ? ? ? @"wxaccount":acc,
//? ? ? ? ? ? ? ? ? ? ? ? ? ? ? @"password":pwd
//? ? ? ? ? ? ? ? ? ? ? ? ? ? ? };
//? ?
//? ? AFHTTPSessionManager *manager = [AFHTTPSessionManager manager];
//? ? [manager POST:URL_LOGIN parameters:paramDic success:^(NSURLSessionDataTask *task, id responseObject) {
//? ? ? ? // 停止菊花
//? ? ? ? dispatch_async(dispatch_get_main_queue(), ^{
//? ? ? ? ? ? [hud hide:YES];
//? ? ? ? ? ? hud = nil;
//? ? ? ? ? ?
//? ? ? ? ? ? NSLog(@"%@",responseObject);
//? ? ? ? ? ?
//? ? ? ? ? ?
//? ? ? ? });
//? ? } failure:^(NSURLSessionDataTask *task, NSError *error) {
//? ? ? ? // 停止菊花,同時給客戶提示服務(wù)器錯誤
//? ? ? ? dispatch_async(dispatch_get_main_queue(), ^{
//? ? ? ? ? ?
//? ? ? ? ? ? [hud hide:YES];
//? ? ? ? ? ? hud = nil;
//? ? ? ? ? ? MBProgressHUD *hud2 = [[MBProgressHUD alloc]initWithWindow:[APP_Delegate window]];
//? ? ? ? ? ? hud2.mode = MBProgressHUDModeText;
//? ? ? ? ? ? hud2.removeFromSuperViewOnHide = YES;
//? ? ? ? ? ? hud2.labelText = @"服務(wù)器連接錯誤汞幢!";
//? ? ? ? ? ? [[APP_Delegate window]addSubview:hud2];
//? ? ? ? ? ? [hud2 show:YES];
//? ? ? ? ? [hud2 hide:YES afterDelay:2.0];
//? ? ? ? });
//? ? }];
//? ?