This commit is contained in:
18401019693 2022-07-27 11:12:02 +08:00
parent 53df42ad3a
commit d4cc6f747b
4 changed files with 11 additions and 0 deletions

View File

@ -50,6 +50,15 @@ public class NoviceInstructorManager extends BaseCacheManager {
return this; return this;
} }
/**
* 检查需不需要弹出新人面向指导员弹窗
*/
public void checktHomeZdyPop() {
if (!TextUtils.isEmpty(homeZdyPop) && TextUtils.equals(homeZdyPop, "1")) {
netHandler.post(instructorOperationOpenRunnable);
}
}
/** /**
* 获取单利 * 获取单利
* *

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -592,7 +592,9 @@ public class MainActivity extends AbsActivity implements MainAppBarLayoutListene
mTabButtonGroup.setCurPosition(Constants.isShowPage); mTabButtonGroup.setCurPosition(Constants.isShowPage);
} }
Constants.isShowPage = -1; Constants.isShowPage = -1;
//获取指导员引导逻辑
NoviceInstructorManager.get(mContext).getNoviceInstructor(); NoviceInstructorManager.get(mContext).getNoviceInstructor();
NoviceInstructorManager.get(mContext).checktHomeZdyPop();
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB