|
@@ -285,6 +285,48 @@
|
|
|
|
|
|
[self initMainTabbarFun];
|
|
|
|
|
|
+ self.isLoginAgainType = NO;
|
|
|
+
|
|
|
+ __block BOOL isPrivacyMode = [connectDeviceManager shareInstance].DeviceThirdIdMod.data.isPrivacyMode;
|
|
|
+
|
|
|
+ //KWeakSelf
|
|
|
+ if(!_isQRCodeType){
|
|
|
+
|
|
|
+ if(isPrivacyMode)
|
|
|
+ {
|
|
|
+ [self showCalculatorVC];
|
|
|
+ }
|
|
|
+ else{
|
|
|
+ [self HandleEnterNotPrivacyModeFun];
|
|
|
+
|
|
|
+ dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(1.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
|
|
|
+ mainBlock(^{
|
|
|
+ [connectDeviceManager shareInstance].isFirstInputPwdDone = YES;
|
|
|
+ //playerRootVC.isPwdVCShow = NO;
|
|
|
+ //[playerRootVC setShowImgAndVoiceTypeFun:YES];
|
|
|
+ //[weakSelf shareAwakenAppBy:weakSelf.getShareStr];
|
|
|
+
|
|
|
+ if(self->_session && self->_connectionOptions){
|
|
|
+ [self scene:self->_session openURLContexts:self->_connectionOptions.URLContexts];
|
|
|
+ }
|
|
|
+ });
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ //_isQRCodeType = NO;
|
|
|
+ }
|
|
|
+ else{
|
|
|
+ if(isPrivacyMode)
|
|
|
+ {
|
|
|
+ [self showCalculatorVC];
|
|
|
+ }
|
|
|
+ else{
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ _isQRCodeType = NO;
|
|
|
+
|
|
|
//数据埋点
|
|
|
[[netWorkManager shareInstance] DataEmbeddingPointBy:1 withEventValue:@"Nas"];
|
|
|
return;
|