Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

22 rindas
449 B

  1. local BaseShareView = require("core.luaScript.Views.Main.ShareView");
  2. local ShareView = class("ShareView", BaseShareView);
  3. function ShareView:ctor(...)
  4. logD("ShareView chuang nan ctor")
  5. ShareView.super.ctor(self, ...);
  6. end
  7. function ShareView:getSupportType()
  8. logD("ShareView chuang nan")
  9. local data = {
  10. WeiXin = {isShowed = true},
  11. Copy = {isShowed = true},
  12. WebZhanJi = {isShowed = false},
  13. };
  14. return data
  15. end
  16. return ShareView;