Commit 4e44def6 authored by pete谢兆麟's avatar pete谢兆麟

通屏参数

parent 1c811e0a
...@@ -29,7 +29,7 @@ class YHBannerModel: SmartCodable { ...@@ -29,7 +29,7 @@ class YHBannerModel: SmartCodable {
var token: String = "" //声网直播 var token: String = "" //声网直播
var rtmp_channel: String = "" //声网直播 var rtmp_channel: String = "" //声网直播
var user_id: Int = 0 var user_id: Int = 0
var is_full_screen : Bool = false //是否通屏 var is_full_screen : Bool? //是否通屏
//是否为本地 //是否为本地
var isLocalItemFlag : Bool = false var isLocalItemFlag : Bool = false
......
...@@ -207,8 +207,8 @@ extension YHHomeBannerView: FSPagerViewDataSource, FSPagerViewDelegate { ...@@ -207,8 +207,8 @@ extension YHHomeBannerView: FSPagerViewDataSource, FSPagerViewDelegate {
vc.isHideNavigationBar = false vc.isHideNavigationBar = false
} }
if model.is_full_screen { if let tag = model.is_full_screen {
vc.isHideNavigationBar = false vc.isFullScreenFlag = tag
} }
if model.is_share_h5_flag { if model.is_share_h5_flag {
......
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