|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- package md
-
- var Module = map[string]string{
- "1": "home_page",
- "2": "member_center",
- "3": "bottom_bar",
- "4": "invitation_download_landing_page",
- "5": "invitation_poster",
- "6": "about_us",
- "7": "down_channel",
- "8": "contribution",
- "9": "egg_score",
- "10": "business_cooperation",
- "11": "qualification_certificate",
- "12": "withdraw",
- "13": "withdraw_account",
- "14": "user_real_name",
- "15": "website_about_us",
- "16": "star_sword_debate",
- "17": "upgrade_strategy",
- "18": "egg_paradise",
- "19": "egg_paradise_games",
- "20": "egg_paradise_car",
- "21": "egg_paradise_oil",
- "22": "egg_paradise_life",
- }
- var ModuleList = []map[string]interface{}{
-
- {"name": "首页", "mod_name": "home_page", "value": "1"},
- {"name": "会员中心", "mod_name": "member_center", "value": "2"},
- {"name": "底部导航", "mod_name": "bottom_bar", "value": "3"},
- {"name": "邀请下载落地页", "mod_name": "invitation_download_landing_page", "value": "4"},
- {"name": "邀请海报", "mod_name": "invitation_poster", "value": "5"},
- {"name": "关于我们", "mod_name": "about_us", "value": "6"},
- {"name": "下载渠道", "mod_name": "down_channel", "value": "7"},
- {"name": "贡献值", "mod_name": "contribution", "value": "8"},
- {"name": "蛋蛋分", "mod_name": "egg_score", "value": "9"},
- {"name": "商务合作", "mod_name": "business_cooperation", "value": "10"},
- {"name": "资质证书", "mod_name": "qualification_certificate", "value": "11"},
- {"name": "提现页", "mod_name": "withdraw", "value": "12"},
- {"name": "提现到账户", "mod_name": "withdraw_account", "value": "13"},
- {"name": "实名认证", "mod_name": "user_real_name", "value": "14"},
- {"name": "官网联系我们", "mod_name": "website_about_us", "value": "15"},
- {"name": "星球论剑", "mod_name": "star_sword_debate", "value": "16"},
- {"name": "升级攻略", "mod_name": "upgrade_strategy", "value": "17"},
- {"name": "蛋蛋乐园", "mod_name": "egg_paradise", "value": "18"},
- {"name": "蛋蛋乐园-小游戏", "mod_name": "egg_paradise_games", "value": "19"},
- {"name": "蛋蛋乐园-打车", "mod_name": "egg_paradise_car", "value": "20"},
- {"name": "蛋蛋乐园-加油", "mod_name": "egg_paradise_oil", "value": "21"},
- {"name": "蛋蛋乐园-便捷生活", "mod_name": "egg_paradise_life", "value": "22"},
- }
-
- var SkipData = []map[string]interface{}{
- {
- "name": "营销模块",
- "type": "sale",
- "list": []map[string]interface{}{
- {"name": "小游戏", "type": "station", "router": "", "url": "", "applet_id": "", "applet_appid": "", "data": map[string]interface{}{"type": "", "activity_id": ""}},
- {"name": "打车", "type": "station", "router": "", "url": "", "applet_id": "", "applet_appid": "", "data": map[string]interface{}{"type": "", "activity_id": ""}},
- {"name": "加油", "type": "station", "router": "", "url": "", "applet_id": "", "applet_appid": "", "data": map[string]interface{}{"type": "", "activity_id": ""}},
- {"name": "便捷生活", "type": "station", "router": "", "url": "", "applet_id": "", "applet_appid": "", "data": map[string]interface{}{"type": "", "activity_id": ""}},
- {"name": "短剧", "type": "station", "router": "", "url": "", "applet_id": "", "applet_appid": "", "data": map[string]interface{}{"type": "", "activity_id": ""}},
- {"name": "短视频", "type": "station", "router": "", "url": "", "applet_id": "", "applet_appid": "", "data": map[string]interface{}{"type": "", "activity_id": ""}},
- },
- },
- {
- "name": "打车",
- "type": "car",
- "list": []map[string]interface{}{},
- },
- {
- "name": "加油",
- "type": "oil",
- "list": []map[string]interface{}{},
- },
- {
- "name": "便捷生活",
- "type": "life",
- "list": []map[string]interface{}{},
- },
- {
- "name": "外链",
- "type": "url",
- "list": []map[string]interface{}{},
- },
- {
- "name": "小程序",
- "type": "applet",
- "list": []map[string]interface{}{},
- },
- }
|