Commit 0f95b925 by houweibin

moncler商品contactUs无法正常显示的问题。

parent 02b96620
......@@ -128,13 +128,12 @@
-(void)initBottomViewHidden{
if(self.product){
NSString *productVendor = self.product.vendor;
NSString *targetVendor = @"Moncler";
NSString *productVendor = self.product.vendor ?:@"";
productVendor = [productVendor lowercaseString];
NSString *targetVendor = @"moncler";
BOOL isShowContactUs = [productVendor isEqualToString:targetVendor];
self.vBottomBar.hidden = isShowContactUs;
self.btnContactUs.hidden = !isShowContactUs;
self.vBottomBar.hidden = NO;
}
}
......
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