You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ---
- -- ================================================================
- -- 文件名: zigongRoomToolView.lua
- -- 描述:
- -- 版权: Copyright © 2016-2019 公司名称 版权所有
- -- 作者: Administrator
- -- 创建日期: 2020-02-04
- -- 更新日期: 2020-02-04
- -- 备注:
- -- ================================================================
- --
- local MJRoomToolView = require("mj.luaScript.Views.Room.MJRoomToolView");
- local zigongRoomToolView = class("zigongRoomToolView", MJRoomToolView);
-
- function zigongRoomToolView:ctor ()
- zigongRoomToolView.super.ctor(self);
- end
-
- function zigongRoomToolView:onEnter()
- zigongRoomToolView.super.onEnter(self);
- if self.ui.Items.Layout_Rule then
- self.ui.Items.Layout_Rule:setVisible(false);
- end
-
- if self.ui.Items.Button_Rule then
- self.ui.Items.Button_Rule:setVisible(false);
- end
- end
-
- function zigongRoomToolView:onClickRule ()
- -- 重写,不使用MJRoomToolView里面的规则弹框
- end
-
- function zigongRoomToolView:hideRule ()
- -- 重写,不使用MJRoomToolView里面的规则弹框
- end
-
- return zigongRoomToolView;
|