|
-
- local BaseShareView = require("core.luaScript.Views.Main.ShareView");
-
- local ShareView = class("ShareView", BaseShareView);
-
- function ShareView:ctor(...)
- logD("ShareView chuang nan ctor")
- ShareView.super.ctor(self, ...);
- end
-
- function ShareView:getSupportType()
- logD("ShareView chuang nan")
-
- local data = {
- WeiXin = {isShowed = true},
- Copy = {isShowed = true},
- WebZhanJi = {isShowed = false},
- };
- return data
- end
-
- return ShareView;
|