|
CommonActPageManager = {}
|
|
local this = CommonActPageManager
|
|
|
|
function this.Initialize()
|
|
end
|
|
|
|
function this.GetData(actType)
|
|
if actType == ActivityTypeDef.YunYouShangRen then
|
|
this.GetYunYouData()
|
|
end
|
|
end
|
|
|
|
function this.GetYunYouData()
|
|
-- body
|
|
end
|
|
|
|
return CommonActPageManager |