|
@@ -1,5 +1,6 @@
|
|
|
import { GUIManager } from "../../../engines/gui/GUIManager";
|
|
|
import GUIMediator from "../../../engines/gui/GUIMediator";
|
|
|
+import { LiangLiangSDK } from "../../../platforms/libs/liangliangSDK";
|
|
|
import { PlatformManager } from "../../../platforms/PlatformManager";
|
|
|
import UI_WX_S_04 from "../../../ui/WXSExport/UI_WX_S_04";
|
|
|
import UIKeys from "../../UIKeys";
|
|
@@ -18,6 +19,11 @@ export default class WXS04Mediator extends GUIMediator
|
|
|
if(this.list==null){
|
|
|
this.list=new ExportList(this.view.m_listIcon,1);
|
|
|
}
|
|
|
+ if(LiangLiangSDK.CanWuChu()){
|
|
|
+ this.view.m_btnVideo.visible = true;
|
|
|
+ }else{
|
|
|
+ this.view.m_btnVideo.visible = false;
|
|
|
+ }
|
|
|
this.list.Refresh();
|
|
|
}
|
|
|
|