提交 6fa304ba 编写于 作者: Y yixiangboy

判断平台中如果不存在pId的情况

上级 e7b1620b
......@@ -259,7 +259,16 @@
}
[DoraemonNetworkUtil postWithUrlString:@"http://dokit-test.intra.xiaojukeji.com/healthCheck/addCheckData" params:dic success:^(NSDictionary * _Nonnull result) {
[DoraemonToastUtil showToastBlack:@"数据上传成功" inView:[UIViewController rootViewControllerForDoraemonHomeWindow].view];
NSInteger code = [result[@"code"] integerValue];
if (code == 200) {
[DoraemonToastUtil showToastBlack:@"数据上传成功" inView:[UIViewController rootViewControllerForDoraemonHomeWindow].view];
}else{
NSString *msg = result[@"msg"];
if (msg) {
[DoraemonToastUtil showToastBlack:msg inView:[UIViewController rootViewControllerForDoraemonHomeWindow].view];
}
}
} error:^(NSError * _Nonnull error) {
[DoraemonToastUtil showToastBlack:@"数据上传失败" inView:[UIViewController rootViewControllerForDoraemonHomeWindow].view];
}];
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册