Commit 7c29df19 authored by zhangguangyi's avatar zhangguangyi

update bugs

parent 447d3ae6
No preview for this file type
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
## Build generated
build/
fir_build/
DerivedData/
## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/
## Other
*.moved-aside
*.xcuserstate
# *.xcworkspace/
node_modules/
*/.DS_Store
.DS_Store
.DS_Store?
## Obj-C/Swift specific
*.hmap
*.ipa
*.dSYM.zip
*.dSYM
*.generated.swift
## Playgrounds
timeline.xctimeline
playground.xcworkspace
# Swift Package Manager
#
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
# Packages/
.build/
# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
Pods/
# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts
Carthage/Build
# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md
fastlane/report.xml
fastlane/Preview.html
fastlane/README.md
fastlane/screenshots
fastlane/test_output
......@@ -955,8 +955,8 @@
A9C2B8CA24D039B400010EAE /* APIs */ = {
isa = PBXGroup;
children = (
A9C2B8CB24D039B400010EAE /* ZJZMFAPIFactory.m */,
A9C2B8CC24D039B400010EAE /* ZJZMFAPIFactory.h */,
A9C2B8CB24D039B400010EAE /* ZJZMFAPIFactory.m */,
);
path = APIs;
sourceTree = "<group>";
......
......@@ -227,6 +227,12 @@
{
[collectionView deselectItemAtIndexPath:indexPath animated:YES];
if (![ZJUserInfoManager shared].isLogin) {
UIViewController *vc = [[NSClassFromString(@"ZJPhoneLoginViewController") alloc] init];
[self.navigationController pushViewController:vc animated:YES];
return;
}
if(![ZJUserInfoManager shared].userInfoModel.isMember){
[[ZJGoodsMagager shared] goodsWithVC:self callBack:^(id _Nonnull s) {
[[ZJUserInfoManager shared] updataUserInfo:^(ZJMineUserInfoModel * _Nonnull model) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment