|
|
@@ -33,6 +33,8 @@
|
|
|
|
|
|
BOOL hadUploadTaskType;
|
|
|
BOOL hadDownloadTaskType;
|
|
|
+
|
|
|
+ BOOL canShareType;
|
|
|
}
|
|
|
@property (nonatomic, strong) UICollectionView *dataCollectionView;
|
|
|
|
|
|
@@ -909,7 +911,7 @@
|
|
|
vc.index = index;
|
|
|
vc.totalDataArr = totalArr;
|
|
|
[self.navigationController pushViewController:vc animated:YES];
|
|
|
-
|
|
|
+ vc.canShareType = canShareType;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@@ -961,6 +963,7 @@
|
|
|
[[netWorkManager shareInstance] CommonGetWithCallBackCode:queryShareSwitchFun Parameters:paraDict success:^(id _Nonnull responseObject){
|
|
|
queryShareModel *queryShareMod = [[queryShareModel alloc] initWithDictionary:responseObject error:nil];
|
|
|
if(queryShareMod){
|
|
|
+ self->canShareType = queryShareMod.data.configValue;
|
|
|
[weakSelf.curEditTypeBottomView setCanShaewFunBy:queryShareMod.data.configValue];
|
|
|
}
|
|
|
|