您不能選擇超過 %s 個話題 話題必須以字母或數字為開頭,可包含連接號 ('-') 且最長為 35 個字

22 行
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;