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.

39 lines
1.1 KiB

  1. ---
  2. -- ================================================================
  3. -- 文件名: zigongRoomToolView.lua
  4. -- 描述:
  5. -- 版权: Copyright © 2016-2019 公司名称 版权所有
  6. -- 作者: Administrator
  7. -- 创建日期: 2020-02-04
  8. -- 更新日期: 2020-02-04
  9. -- 备注:
  10. -- ================================================================
  11. --
  12. local MJRoomToolView = require("mj.luaScript.Views.Room.MJRoomToolView");
  13. local zigongRoomToolView = class("zigongRoomToolView", MJRoomToolView);
  14. function zigongRoomToolView:ctor ()
  15. zigongRoomToolView.super.ctor(self);
  16. end
  17. function zigongRoomToolView:onEnter()
  18. zigongRoomToolView.super.onEnter(self);
  19. if self.ui.Items.Layout_Rule then
  20. self.ui.Items.Layout_Rule:setVisible(false);
  21. end
  22. if self.ui.Items.Button_Rule then
  23. self.ui.Items.Button_Rule:setVisible(false);
  24. end
  25. end
  26. function zigongRoomToolView:onClickRule ()
  27. -- 重写,不使用MJRoomToolView里面的规则弹框
  28. end
  29. function zigongRoomToolView:hideRule ()
  30. -- 重写,不使用MJRoomToolView里面的规则弹框
  31. end
  32. return zigongRoomToolView;