Commit 2c008fdd authored by rockyl's avatar rockyl

init

parents
# Created by .ignore support plugin (hsz.mobi)
### Node template
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
# nyc test coverage
.nyc_output
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration
.lock-wscript
# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release
# Dependency directories
node_modules/
jspm_packages/
# TypeScript v1 declaration files
typings/
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variables file
.env
# next.js build output
.next
*.iml
{"gameWinSkin":["src/gameWinSkin/gameWinSkinAuto.js","src/gameWinSkin/GameWinSkin.js","src/gameWinSkin/OptionItem.js"],"gameLoseSkin":["src/gameLoseSkin/gameLoseSkinAuto.js","src/gameLoseSkin/GameLoseSkin.js","src/gameLoseSkin/OptionItemSkin.js"],"gameWinnerSkin":["src/gameWinnerSkin/gameWinnerSkinAuto.js","src/gameWinnerSkin/GameWinnerSkin.js"],"gameEndSkin":["src/gameEndSkin/gameEndSkinAuto.js","src/gameEndSkin/GameEndSkin.js"],"gameStartSkin":["src/gameStartSkin/gameStartSkinAuto.js","src/gameStartSkin/GameStartSkin.js"],"gamePlaySkin":["src/gamePlaySkin/gamePlaySkinAuto.js","src/gamePlaySkin/GamePlaySkin.js","src/gamePlaySkin/Level2.js","src/gamePlaySkin/Level1.js"],"gameEndRankSkin":["src/gameEndRankSkin/gameEndRankSkinAuto.js","src/gameEndRankSkin/GameEndRankSkin.js","src/gameEndRankSkin/RoleListItem.js","src/gameEndRankSkin/RankListItem.js"],"gameRealTimeRankSkin":["src/gameRealTimeRankSkin/gameRealTimeRankSkinAuto.js","src/gameRealTimeRankSkin/GameRealTimeRankSkin.js","src/gameRealTimeRankSkin/AlwaysRankListItem.js","src/gameRealTimeRankSkin/Gold.js"],"gameGuideSkin":["src/gameGuideSkin/gameGuideSkinAuto.js","src/gameGuideSkin/GameGuideSkin.js"],"msgSkin":["src/msgSkin/msgSkinAuto.js","src/msgSkin/MsgSkin.js"],"ruleSkin":["src/ruleSkin/ruleSkinAuto.js","src/ruleSkin/RuleSkin.js"],"waitingSkin":["src/waitingSkin/waitingSkinAuto.js","src/waitingSkin/WaitingSkin.js"]}
\ No newline at end of file
This diff is collapsed.
<!--作者:小可 QQ:58529016 Email:anlun214@qq.com,欢迎合作洽谈!-->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Flash2AnnieEngine</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,minimum-scale=1.0,user-scalable=no">
<!--如果需要往qq里分享则需要开启下面三个属性-->
<!--<meta itemprop="name" content="Flash2x开发神器!">-->
<!--<meta itemprop="description" content="用Flash2x开发Html5项目,让制作更简单,让动画更高效!">-->
<!--<meta itemprop="image" content="http://web.flash2x.org/Public/images/Flash2xLogo.png">-->
<script src="libs2/annieCore.min.js"></script>
<!--如果有用到annieUI组件类,则需要开启下面的js-->
<script src="libs2/annieUI.min.js"></script>
<script src="libs2/zepto.min.js"></script>
<script src="libs2/downloadApp.js"></script>
<script src="libs2/security.js"></script>
<style>
html,
body {
width: 100%;
height: 100%;
margin: 0px;
border: 0px;
overflow: hidden;
position: absolute;
background-color: #000;
}
</style>
</head>
<body>
<script src="output.js"></script>
<!--如果不想canvas全屏而是作为html中的一个标签,请设置div的style.width和style.height为实际值如<div id="annieEngine" style="width:320px;height:576px;line-height:0;font-size:0"></div>-->
<div id="annieEngine" style="line-height:0;font-size:0"></div>
<script>
var gameId = 1;
var CFG = {
appInfo: {
"appId": 1,
"earnCreditsUrl": "https://www.baidu.com/",
"loginProgram": "",
"open": false,
"openLogin": false
},
gameInfo: {
"id": 1317,
"oaId": 19951,
"offDate": "2018-04-17 11:00",
"openTotalScoreSwitch": false,
"rankPrize": true,
"skincontent": ""
},
extra: {
"embedDomain": "//embedlog.duibatest.com.cn"
},
defenseStrategy: {
"scoreUnit": 10
}
}
var recordUrl = 'record/';
function resolve(a) {
var b = eval(a);
return b;
}
</script>
</body>
</html>
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
/**
* @note 函数 window.downloadApp
* @modify by zsl@duiba.com.cn
* @date 2016-07-31
* @modify 2016-09-01
*/
;
(function($) {
var ua = navigator.userAgent.toLowerCase();
// -------------------------- downloadApp主要函数 --------------------------//
var downloadApp = function() {
if (window.downloadAppConfig) {
if (ua.match(/iphone/ig) || ua.match(/ipad/ig)){
//ios
download();
}else{
if (window.downloadAppConfig.confirm || window.downloadAppConfig.confirm == 'true') {
$.modal({
type: 'confirm',
title: '下载确认',
section: '即将开始下载,是否继续',
callback: {
save: function() {
if (window.downloadAppConfig.stats) {
$.ajax({
url: window.downloadAppConfig.stats,
complete: function() {
download();
}
})
} else {
download();
}
}
}
})
}else{
download();
}
}
}else {
console.error('请先配置参数window.downloadAppConfig');
}
}
// -------------------------- format函数 --------------------------//
var formatUrl = function(downloadUrl) {
if (downloadUrl.indexOf('dbnewopen') != -1) {
window.location.href = downloadUrl;
} else {
if (downloadUrl.indexOf('?') !== -1) {
// modify by zsl date2016-07-28
if (downloadUrl.indexOf('#') !== -1) {
// 如果包含#号
window.location.href = downloadUrl.split('#')[0] + '&dbnewopen#' + downloadUrl.split('#')[1];
}else {
window.location.href = downloadUrl + '&dbnewopen';
}
} else if (downloadUrl !== '') {
window.location.href = downloadUrl + '?dbnewopen';
}
}
}
// -------------------------- URL处理函数 --------------------------//
var download = function() {
var openUrl = window.downloadAppConfig.openUrl || '';
var downloadUrl = '';
// 淘客url处理 start ------------------------------------------------------------
var TKHelper,
isSpecial = false;
if ( window.TBSDK_ADA !== undefined ) {
TKHelper = function(downloadUrl) {
var isTBSDK = function() {
isSpecial = true;
if (window.isSpecialApp) {
window.location.href = downloadUrl;
} else {
window.BC_SDK.openPage({
url: downloadUrl
});
}
};
// 如果包含手淘url 唤起手淘App的功能
if (downloadUrl.indexOf('taoquan.taobao.com') !== -1 || downloadUrl.indexOf('shop.m.taobao.com') !== -1 ) {
window.BC_SDK = TBSDK_ADA.init({
"appkey": '23402401',
openTBAPP: true
});
isTBSDK();
}
// 如果是s.click.taobao.com的URL,点击则调用百川goTaoke方法唤起手淘
if(downloadUrl.indexOf('s.click.taobao.com') !== -1) {
window.BC_SDK = TBSDK_ADA.init({
"appkey": '23454468',
"appSecret": '3846ae97316a0b31321a8f493f826986',
openTBAPP: true
});
isTBSDK();
}
};
}
// 淘客url处理 end -----------------------------------------------------------
// 特殊处理
var handleSpecial = function(downloadUrl) {
// 如果downloadUrl是weixin直接打开url(加了&dbnewopen SDK唤起weixin 中间会产生一个空白页)
if (downloadUrl && downloadUrl.indexOf('weixin://') !== -1) {
isSpecial = true;
window.location.href = downloadUrl;
return;
}
// @special openUrl为微信服务,
if (openUrl && openUrl.indexOf('weixin://') !== -1) {
return;
}
// 如果含有手淘url 唤起手淘App的功能
if (window.TBSDK_ADA !== undefined ) {
TKHelper(downloadUrl);
}
};
if (ua.match(/iphone/ig) || ua.match(/ipad/ig)) {
// ios
downloadUrl = window.downloadAppConfig.iosDownloadUrl;
handleSpecial(downloadUrl);
if(isSpecial){
return;
}
if (ua.match(/MicroMessenger/ig)) {
formatUrl(downloadUrl);
} else {
if (openUrl) {
window.location.href = openUrl;
} else {
if (downloadUrl.indexOf('itunes.apple.com') != -1) {
var ifr = document.createElement('iframe');
ifr.src = downloadUrl;
ifr.style.display = 'none';
window.setTimeout(function() {
document.body.appendChild(ifr);
}, 300)
} else {
formatUrl(downloadUrl);
}
}
}
} else {
// android
downloadUrl = window.downloadAppConfig.androidDownloadUrl;
handleSpecial(downloadUrl);
if(isSpecial){
return;
}
// 如果有oepnUrl
if (openUrl) {
window.location.href = openUrl;
return;
}
if (downloadUrl.indexOf('.apk') != -1 || downloadUrl.indexOf('dbnewopen') != -1) {
window.location.href = downloadUrl;
} else {
formatUrl(downloadUrl);
}
}
}
window.downloadApp = downloadApp;
})(Zepto);
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
const path = require('path');
const config = {
'/activityCommon/getRole': {
data: './json/getRole.json'
},
'/ngapi/getUserTotalScore': {
data: './json/getUserTotalScore.json'
},
'/ctool/getCredits': {
data: './json/getCredits.json'
},
'/ngame/new/getInfo': {
data: './json/getInfo.json'
},
'/ngapi/dostart': {
data: './json/dostart.json'
},
'/ngapi/getStartStatus': {
data: './json/getStartStatus.json'
},
'/ngame/new/submit': {
data: './json/gameSubmit.json'
},
'/ngame/new/getSubmitResult': {
data: './json/getGameSubmitResult.json'
},
'/ngapi/winranks': {
data: './json/winranks.json'
},
'/ngapi/getOptions': {
data: './json/getOptions.json'
},
'/ngapi/getRule': {
data: './json/getRule.json'
},
'/activityVist/addTimesForActivity': {
data: './json/addTimesForActivity.json'
},
'/collectGoods/getCollectGoodsInfo': {
data: './json/getCollectGoodsInfo.json'
},
'/ngapi/realtimerank/0': {
data: './json/realtimerank.json'
},
'/ngapi/realtimerank/1': {
data: './json/realtimerank2.json'
},
'/activityPlugDrawInfo/doJoinPlugdraw': {
data: './json/doJoinPlugdraw.json'
},
'/collectRule/getOrderStatus': {
data: './json/getPlugOrderStatus.json'
},
'/activityCommon/setRole': {
data: './json/setRole.json'
},
'/hdtool/ajaxElement': {
data: './json/ajaxElement.json'
},
'/hdtool/ajaxThroughInfo': {
data: './json/ajaxThroughInfo.json'
},
'/hdtool/doJoin': {
data: './json/doJoin.json'
},
'/hdtool/getOrderStatus': {
data: './json/getCustomOrderStatus.json'
},
'/hdtool/getOrderInfo': {
data: './json/getOrderInfo.json'
},
'/hdtool/submit': {
data: './json/customSubmit.json'
},
'/ngapi/guessPoker': {
data: './json/guessPoker.json'
},
'/activityPlugin/optionInfo': {
data: './json/optionInfo.json'
},
'/activityPlugin/unblocking': {
data: './json/unblocking.json'
},
'/ngame/new/datapash': {
data: './json/datapash.json'
}
}
for (let item in config) {
if (config.hasOwnProperty(item))
config[item].path = path.resolve(__dirname, config[item].data);
}
module.exports = config;
\ No newline at end of file
{
"success": true,
"msg": "报错啦",
"addedTimes": 1,
"shareCount": 1
}
\ No newline at end of file
{
"success": true,
//闯关信息
"throughCurrent": "1",
"throughMode": 3,
"throughNum": 1,
"throughCurrentStep": 8,
"jsTest": "//yun.duiba.com.cn/h5/showCouponPrize/4.0.0/index_201710191434.js",
//弹层js
"cssTest": "//yun.duiba.com.cn/h5/showCouponPrize/4.0.0/index_201710191440.css",
//弹层css
"rule": "欢迎加入夺宝大作战",
"type": "hdtool",
"options": [
{
"hidden": false,
"id": 212949,
"logo": "//yun.duiba.com.cn/upload/uP99F1462438316972.png",
"name": "谢谢参与",
"prizeType": "thanks"
},
{
"hidden": false,
"id": 212951,
"logo": "//yun.duiba.com.cn/upload/uP99F1462438316972.png",
"name": "谢谢参与",
"prizeType": "thanks"
}
],
"element": {
"isCreditsTypeOpen": false,
"freeLimit": 104,
"myCredits": "858102",
"needCredits": "2",
"status": 5
}
}
{
"throughNum": 1,
"throughCurrent": "1",
"throughCurrentStep": 9,
"skincontent": "<link rel=\"stylesheet\" href=\"//yun.dui88.com/h5/custom/richRabbit/index_201709221442.css\"> \n<style type=\"text/css\">\n \n </style>\n<div id=\"db-content\" style=\"display: none;\">\n <a href=\"\" class=\"record\"></a>\n <span class=\"rule\"></span>\n <div class=\"title\"></div>\n <div class=\"main\">\n <div class=\"title\"></div>\n <div class=\"touziP\">\n <div class=\"touzi\"></div>\n <div class=\"arrows\"></div>\n <div class=\"touziNum\"></div>\n </div>\n <div class=\"door door1\"></div>\n <div class=\"door door2\"></div>\n <div class=\"moonGirl\" id=\"moonGirl\"></div>\n <div class=\"needCredits\" id=\"needCredits\"></div>\n </div>\n <div class=\"jitu\">\n <div class=\"tup\">\n <div class=\"tu\">\n <img />\n <span></span>\n </div>\n <p></p>\n </div> \n <i class=\"jia1\"></i>\n <div class=\"tup\">\n <div class=\"tu\">\n <img />\n <span></span>\n </div>\n <p></p>\n </div> \n <i class=\"jia2\"></i>\n <div class=\"tup\">\n <div class=\"tu\">\n <img />\n <span></span>\n </div>\n <p></p>\n </div> \n </div>\n <div class=\"diagnose-modal\"></div>\n </div>\n<script type=\"text/javascript\">\nCFG.quirePluginOrder = '/activityPlugDrawInfo/getOrderStatusPlugdraw';\nCFG.getCollectGoodsInfo = '/collectGoods/getCollectGoodsInfo';\nCFG.id = '503';\nCFG.asyncFiles = [\n '//\nyun.dui88.com/h5/custom/richRabbit/components_201709221442.js'\n];\n\n</script>\n<script type=\"text/javascript\" src=\"//yun.dui88.com/h5/custom/richRabbit/index_201709221442.js\"></script>\n",
"throughMode": 3,
"success": true,
"throughInfo": [
{
"img": "",
"prizeType": 1,
"step": 3
},
{
"img": "",
"prizeType": 1,
"step": 5
},
{
"img": "",
"prizeType": 1,
"step": 7
},
{
"img": "",
"prizeType": 1,
"step": 9
},
{
"img": "",
"prizeType": 1,
"step": 11
},
{
"img": "",
"prizeType": 1,
"step": 13
},
{
"img": "",
"prizeType": 1,
"step": 15
},
{
"img": "",
"prizeType": 1,
"step": 17
},
{
"img": "",
"prizeType": 1,
"step": 19
},
{
"img": "",
"prizeType": 1,
"step": 21
},
{
"img": "",
"prizeType": 1,
"step": 23
},
{
"img": "",
"prizeType": 1,
"step": 25
},
{
"img": "",
"prizeType": 1,
"step": 27
},
{
"img": "",
"prizeType": 1,
"step": 29
},
{
"img": "",
"prizeType": 1,
"step": 31
},
{
"img": "",
"prizeType": 2,
"step": 33
},
{
"img": "",
"prizeType": 1,
"step": 36
}
]
}
\ No newline at end of file
{
"orderId": "547990844583110289",
"success": true,
"prizeType": 6,
"needPrize": false,
"point": 2,
"currentLocation": 3
}
\ No newline at end of file
{
"success": true,
"code": null,
"desc": null,
"data": null
}
\ No newline at end of file
{
"needCredits": 0,
"status": 1,
"orderId": "544328581298130001",
"success": false,
"message": "我靠又报错了"
}
\ No newline at end of file
{
"orderId": "552632497152350289",
"success": true
}
\ No newline at end of file
{
"message": "请求成功",
"success": true,
"ticketId": "171867459",
"token": "/*5BB9uoTyLt7*/var/*NbXqUV*/__4VUBo/*gfH63BA6f*/=\\u0053\\u0074\\u0072\\u0069\\u006e\\u0067\n/*k9hHbHpFp*/./*sJLQ6AIff4HZhH*/\\u0066r\\u006fm\\u0043ha\\u0072C\\u006fde/*sv50nOo9CIKj*/;\nvar/*najx33*/_x_PQd = [/*WXruNxCnG4jOZWemA*/1210,794,2073,591,844,/*Gv1hnM0iiVFCuA2Zk*/];//rQHYGnbZc9\nvar/*wYOIAwM*/_$GkC/*1WeIMg5u*/=/*wlnLuEikSDmnTpL1cV*/function(/*tdRNLt3GsMyRPuI7YYJ*/){\n/*hxvDuQxH2y1Dfn4qs1b*/return/*biuh45PAz73Nlgm3P*/arguments[/*iJABwXHs*/0]^/*YGFpx*/\n/*ot5URMyEKrOxj0aZg1*/_x_PQd[/*oSbd7lE0y*/0];/*90iBnDN7Ovuk3kUQ*/}/*yULSjRZjpg0FG0JY*/;\nvar/*djmGqjGMKHN*/_$jjQ9/*apbSVQeI373w01R*/=/*MFFoC6BGHEqY*/function(/*GryM8sOJd1vhdvLSVW*/){\n/*fc8x0*/return/*GGEtg846*/arguments[/*xFoUl4nfJ*/0]^/*51eU9jg0*/\n/*KVdsEN3*/_x_PQd[/*3bQQX0S9lqC*/1];/*TO2lwn1ZLfaNnbhmFUN*/}/*p1wlhvKs1*/;\nvar/*wUIaVFO4n3zEaaxaKn5*/_$A70/*OMDkRIWqKUo4ysiRt*/=/*7dfV4Ae*/function(/*F0SibNhlt9IiMTtIDVg*/){\n/*o6OPMGRkGS*/return/*UGllg0o*/arguments[/*XOVODvPrA9R*/0]^/*6FoWV9e9Kc*/\n/*LcIiYf5l3*/_x_PQd[/*7PZzyiJcQfk7zHYc*/2];/*gmG1bCy9*/}/*DsCjr*/;\nvar/*8qyQL*/_$yEy/*aJrGhTv52Wzp6QFOde*/=/*sM3L6y7kbIlY6Uwy*/function(/*VvRKMskWScg1YjzvhL*/){\n/*jOIUJHX*/return/*RjNdAL*/arguments[/*JN2V1cEyBCFYiu5ae*/0]^/*7pkk4XT6yM*/\n/*3rBmnCfv5lwX*/_x_PQd[/*gZhpN3XJEE0WimwX1h*/3];/*O4CGB06xsGttNG*/}/*qyLJhsLUq0bp4T*/;\nvar/*hWahv4UVyZi*/_$Zk8y/*aLzcSjbxOu0nOpouM*/=/*mkLhviHII8X*/function(/*cVvLxIBy1LrZgy3raY*/){\n/*vL3UDTvWx2XmyXJY*/return/*kMFjy2YQizhDEtWZTq*/arguments[/*Ybv7kmqRH*/0]^/*LhFOZ5c3ccfIPmL1AIQ*/\n/*1rnhcmfQPWy3hsEK*/_x_PQd[/*eDYLEc5Ecm2bZa*/4];/*VmUX1LKDyBDN*/}/*pIxnPZ4zkXiZo*/;\n/*0h54lNFAly*/\\u0065\\u0076\\u0061\\u006c/*rK4e0*/(__4VUBo(32)\n+/*IOOrUz*/__4VUBo(0x5f82/0400,116,-1-~/*DxI4*/(0x6f^0),1071/0xA,0x6579/0400,110,_$yEy(623),61,32,~(0x22^/*Rclf*/-1),\n103&(-1^0x00),Math.abs(121)&-1,0x6165>>/*Xo4ITNuG3jwwQb*/4>>4,_$GkC(~(0x4cc^/*F1Ae*/-1)),0x6873>>/*8heWaAIVKltT*/4>>4,0x0|0x36,49,1087/0xA,042/*ztuIUgNVZIZA00lpOXL6lL9oFkkseSL*/));/*b20x9hYEs*/\n",
"submitToken": "/*5BB9uoTyLt7*/var/*NbXqUV*/__4VUBo/*gfH63BA6f*/=\\u0053\\u0074\\u0072\\u0069\\u006e\\u0067\n/*k9hHbHpFp*/./*sJLQ6AIff4HZhH*/\\u0066r\\u006fm\\u0043ha\\u0072C\\u006fde/*sv50nOo9CIKj*/;\nvar/*najx33*/_x_PQd = [/*WXruNxCnG4jOZWemA*/1210,794,2073,591,844,/*Gv1hnM0iiVFCuA2Zk*/];//rQHYGnbZc9\nvar/*wYOIAwM*/_$GkC/*1WeIMg5u*/=/*wlnLuEikSDmnTpL1cV*/function(/*tdRNLt3GsMyRPuI7YYJ*/){\n/*hxvDuQxH2y1Dfn4qs1b*/return/*biuh45PAz73Nlgm3P*/arguments[/*iJABwXHs*/0]^/*YGFpx*/\n/*ot5URMyEKrOxj0aZg1*/_x_PQd[/*oSbd7lE0y*/0];/*90iBnDN7Ovuk3kUQ*/}/*yULSjRZjpg0FG0JY*/;\nvar/*djmGqjGMKHN*/_$jjQ9/*apbSVQeI373w01R*/=/*MFFoC6BGHEqY*/function(/*GryM8sOJd1vhdvLSVW*/){\n/*fc8x0*/return/*GGEtg846*/arguments[/*xFoUl4nfJ*/0]^/*51eU9jg0*/\n/*KVdsEN3*/_x_PQd[/*3bQQX0S9lqC*/1];/*TO2lwn1ZLfaNnbhmFUN*/}/*p1wlhvKs1*/;\nvar/*wUIaVFO4n3zEaaxaKn5*/_$A70/*OMDkRIWqKUo4ysiRt*/=/*7dfV4Ae*/function(/*F0SibNhlt9IiMTtIDVg*/){\n/*o6OPMGRkGS*/return/*UGllg0o*/arguments[/*XOVODvPrA9R*/0]^/*6FoWV9e9Kc*/\n/*LcIiYf5l3*/_x_PQd[/*7PZzyiJcQfk7zHYc*/2];/*gmG1bCy9*/}/*DsCjr*/;\nvar/*8qyQL*/_$yEy/*aJrGhTv52Wzp6QFOde*/=/*sM3L6y7kbIlY6Uwy*/function(/*VvRKMskWScg1YjzvhL*/){\n/*jOIUJHX*/return/*RjNdAL*/arguments[/*JN2V1cEyBCFYiu5ae*/0]^/*7pkk4XT6yM*/\n/*3rBmnCfv5lwX*/_x_PQd[/*gZhpN3XJEE0WimwX1h*/3];/*O4CGB06xsGttNG*/}/*qyLJhsLUq0bp4T*/;\nvar/*hWahv4UVyZi*/_$Zk8y/*aLzcSjbxOu0nOpouM*/=/*mkLhviHII8X*/function(/*cVvLxIBy1LrZgy3raY*/){\n/*vL3UDTvWx2XmyXJY*/return/*kMFjy2YQizhDEtWZTq*/arguments[/*Ybv7kmqRH*/0]^/*LhFOZ5c3ccfIPmL1AIQ*/\n/*1rnhcmfQPWy3hsEK*/_x_PQd[/*eDYLEc5Ecm2bZa*/4];/*VmUX1LKDyBDN*/}/*pIxnPZ4zkXiZo*/;\n/*0h54lNFAly*/\\u0065\\u0076\\u0061\\u006c/*rK4e0*/(__4VUBo(32)\n+/*IOOrUz*/__4VUBo(0x5f82/0400,116,-1-~/*DxI4*/(0x6f^0),1071/0xA,0x6579/0400,110,_$yEy(623),61,32,~(0x22^/*Rclf*/-1),\n103&(-1^0x00),Math.abs(121)&-1,0x6165>>/*Xo4ITNuG3jwwQb*/4>>4,_$GkC(~(0x4cc^/*F1Ae*/-1)),0x6873>>/*8heWaAIVKltT*/4>>4,0x0|0x36,49,1087/0xA,042/*ztuIUgNVZIZA00lpOXL6lL9oFkkseSL*/));/*b20x9hYEs*/\n",
"extra": {
"initialScore": 50,
"poker": 12
}
}
\ No newline at end of file
{
"success": true,
"code": null,
"desc": null,
"data": {
"orderId": 1915551,
"rsp": {
"totalScore": 122,
"maxScore": 122,
"maxScoreTime": "2018-04-17 11:02:47",
"rank": 1,
"percentage": 100.00,
"token": "/*de1p57gzlWHPB0oxj33*/var/*pnNUF3DoYb6UMSp*/__076KsOqa/*jStvZLjEnH6r*/=\\u0053\\u0074\\u0072\\u0069\\u006e\\u0067\n/*iGQdoj9XO*/./*kxZHMxtNo8sW*/\\u0066r\\u006fm\\u0043ha\\u0072C\\u006fde/*B5lirw9zGMC*/;\nvar/*iMApn8H9LUexXgbq*/_x_2Bd = [/*epZtAGJKfksd3iwfxiE*/1054,3876,579,3959,2426,/*MJaFDXV3qltvP2Hr8*/];//5EytlwVm1NmyByt\nvar/*IZSeCiQS00d8GgDzJU4*/_$FoT6/*XJPkgG6t6m50Lg884*/=/*VCuLfpxk0GhGj4ZI*/function(/*ydNqBRjn2zqwQaaH*/){\n/*Jd7gaLF*/return/*9bVQp56BlvY6Is*/arguments[/*DYU0QuRhm7O*/0]^/*vPlAmDixThZl5sdS0*/\n/*SUX4jR7Lr*/_x_2Bd[/*cFsu01*/0];/*sMsujZbxAJGEZBNaR*/}/*SeL3fXntthVJ1*/;\nvar/*UvC6bSrbN3q1kTX*/_$yI02/*ED2tBjL*/=/*kZfLU2GU0*/function(/*kVI9fRD*/){\n/*IIKDIdasg*/return/*1akA7xnetiDFXSCxW*/arguments[/*8q3UIK1ImBWXDZ*/0]^/*Ln4pcuWYo*/\n/*IFOh800sJKIrE*/_x_2Bd[/*jWGzQ60W*/1];/*TDeh2yiXeU*/}/*STSgKSxup5mJN*/;\nvar/*LeZ5io7XL*/_$GVG/*CtKFl79h*/=/*2wn0o*/function(/*TamhA*/){\n/*wYRLLfV*/return/*WajQjGl*/arguments[/*j7abTeE163AWK25tc*/0]^/*0FTVKrQ6hyjAu0G*/\n/*U2OCtGr3zVObvGOR*/_x_2Bd[/*jhbqR5luLc*/2];/*ZU5wcoaUR8to79*/}/*UHPyh8x9z*/;\nvar/*8VE8Y*/_$JbA/*cZuGYBOVDXRTRLNPx*/=/*WuSIVm*/function(/*WNtlYFZpPjT5fjem*/){\n/*SM97WURugN1*/return/*saMik5gAlMoHLN*/arguments[/*XhuNwkhNNsy4utIt*/0]^/*VRqr79EYun0t0quipIX*/\n/*uJQ7rEffyge4W4DXC*/_x_2Bd[/*qOmLavolgEHN6fA*/3];/*EX3UIquaRiOqQqsG9K*/}/*8zpCJAHGLeNPF7tv9Gp*/;\nvar/*l0HkqSs*/_$nRJ/*prCzB3y*/=/*j5OlWzh*/function(/*LLVPz0AitK28rLGLZ*/){\n/*Q7c6PQ1JSsAMib*/return/*bDpOMHAYScvJK*/arguments[/*A6vDwo*/0]^/*lUjmizrojuv1*/\n/*bnY8NxTbZwnEAqe*/_x_2Bd[/*xjRkXZD6Uk4WCyGAeb*/4];/*SKUacoLVZpka*/}/*tdKZZW5Cx3UtId*/;\n/*f4EasWboA3cfq*/\\u0065\\u0076\\u0061\\u006c/*E1Xnnbc*/(__076KsOqa(32)\n+/*uoLZy03O3nwxjEAnD1*/__076KsOqa(956/0xA,116,~(0x6f^/*0Mm*/-1),Math.abs(107)&-1,_$GVG(-1-~/*4jBm*/(0x226^0)),110,0x20,0x3d64>>/*g3bES7ay8Kdp*/4>>4,-1-~/*DZb*/(0x20^0),34,\n113,1090/0xA,0x6441>>/*FiUizY7o3*/4>>4,115&(-1^0x00),110,_$yI02(0xf4922/0400),0x6b,34/*NiH838QMhyVPMs*/));/*miSpZLDi8rhs6*/\n",
"consumerId": 1539361,
"status": {
"code": 0,
"btnText": "开始游戏",
"btnDisable": false,
"text": "今日剩余110次免费机会",
"btnEventType": null,
"btnEvent": null
}
}
}
}
\ No newline at end of file
{
"success": true,
"collectGoods": [
{
"count": 0,
"id": 35046,
"img": "//yun.duiba.com.cn/images/201709/bsovoba7s0.png",
"name": "兔宝宝"
},
{
"count": 1,
"id": 35044,
"img": "//yun.duiba.com.cn/images/201709/jp8qosxfcu.png",
"name": "胖胖兔"
},
{
"count": 4,
"id": 35045,
"img": "//yun.duiba.com.cn/images/201709/lgjlgfzti1.png",
"name": "富翁兔"
}
],
"prizeLeve": 0
}
\ No newline at end of file
{
"success": true,
"code": "0000000",
"desc": "成功",
"data": {
"unitName": "积分",
"credits": "100"
}
}
\ No newline at end of file
{
"result": 2,
"exposure": {
"dpm": "1.4.1.0",
"os": "0",
"orderId": "plugin_544328580315190001",
"isEmbed": true,
"consumerId": 1,
"ip": "124.160.94.131",
"materialId": 25636,
"advertId": 21540,
"dcm": "104.21540.0.0",
"activityId": 1893,
"activityUseType": "0",
"appId": 1,
"domain": "//activity.tuistone.com"
},
"success": true,
"lottery": {
"androidDownloadUrl": "//activity.tuistone.com/activity/redirect?orderId=plugin_544328580315190001&activityId=1893&appId=1&consumerId=1&materialId=25636&os=0&advertId=21540&ip=124.160.94.131&activityUseType=0&dpm=1.4.1.0&dcm=104.21540.0.0&device_type=duiba&url=http%3A%2F%2Fh5.ibczy.com%2Fdetails%2Fsimple%2F1999%3Fa_tuiaId%3D123",
"st_info_dpm_go_use": "{\"dpm\":\"1.4.1.0\",\"consumerId\":1,\"domain\":\"//embedlog.duiba.com.cn\",\"appId\":1,\"dcm\":\"104.21540.0.0\"}",
"link": "//trade.m.duiba.com.cn/crecord/recordLuckDetailNew?id=3501446110&locationId=1&dpm=1.4.3.0&dcm=104.21540.0.0&pluginId=1893",
"useBtnText": "下载答题",
"type": "lucky",
"title": "答题赢现金瓜分100万",
"openUrl": "",
"imgurl": "//yun.duiba.com.cn/babi/img/bm2ryg8wht.gif",
"showUse": true,
"linkTo": 0,
"st_info_dpm_close": "{\"dpm\":\"1.4.4.0\",\"consumerId\":1,\"domain\":\"//embedlog.duiba.com.cn\",\"appId\":1,\"dcm\":\"104.21540.0.0\"}",
"iosDownloadUrl": "//activity.tuistone.com/activity/redirect?orderId=plugin_544328580315190001&activityId=1893&appId=1&consumerId=1&materialId=25636&os=0&advertId=21540&ip=124.160.94.131&activityUseType=0&dpm=1.4.1.0&dcm=104.21540.0.0&device_type=duiba&url=http%3A%2F%2Fh5.ibczy.com%2Fdetails%2Fsimple%2F1999%3Fa_tuiaId%3D123",
"st_info_dpm_img": "{\"dpm\":\"1.4.1.0\",\"consumerId\":1,\"domain\":\"//embedlog.duiba.com.cn\",\"appId\":1,\"dcm\":\"104.21540.0.0\"}",
"tip": "西瓜视频发亿元红包啦!答对12题,100万现金等你来瓜分!",
"id": 8918,
"isDownloadUrl": true,
"validate": "2018-01-08"
}
}
\ No newline at end of file
{"success":true,"code":null,"desc":null,"data":{"success":true,"message":"请求成功","tip":"免费","option":{"name":"优惠券测试","image":"//yun.duiba.com.cn/images/201705/j7vbab38iw.jpg","link":"//trade.m.duiba.com.cn/crecord/recordDetailNew?orderId=655916401264300001&fromPage=record&dbnewopen&dpm=1.19.1.0&dcm=101.37155.0.0","type":"coupon","itemId":37155,"lottery":{"androidDownloadUrl":"https://h5.ele.me/baida/#group_sn=47a6055b57a86adb2a67556934f5d2c3&","coupon_code":"","st_info_dpm_go_use":"{\"dpm\":\"1.4.1.0\",\"consumerId\":1,\"domain\":\"//embedlog.duiba.com.cn\",\"appId\":1,\"dcm\":\"101.37155.0.0\"}","link":"//trade.m.duiba.com.cn/crecord/recordDetailNew?orderId=655916401264300001&after=1&dbnewopen&dpm=1.4.3.0&dcm=101.37155.0.0","useBtnText":"马上使用","title":"饿了么4-15元优惠券","confirm":false,"openUrl":"https://h5.ele.me/baida/#group_sn=47a6055b57a86adb2a67556934f5d2c3&","imgurl":"//yun.duiba.com.cn/images/201705/j7vbab38iw.jpg","showUse":true,"st_info_dpm_close":"{\"dpm\":\"1.4.4.0\",\"consumerId\":1,\"domain\":\"//embedlog.duiba.com.cn\",\"appId\":1,\"dcm\":\"101.37155.0.0\"}","iosDownloadUrl":"https://h5.ele.me/baida/#group_sn=47a6055b57a86adb2a67556934f5d2c3&","st_info_dpm_img":"{\"dpm\":\"1.4.1.0\",\"consumerId\":1,\"domain\":\"//embedlog.duiba.com.cn\",\"appId\":1,\"dcm\":\"101.37155.0.0\"}","tip":"","coupon_key":"","validate":"2018-05-31"}},"useDpm":"{\"dpm\":\"1.19.1.0\",\"consumerId\":1,\"domain\":\"//embedlog.duiba.com.cn\",\"appId\":1,\"dcm\":\"101.37155.0.0\"}","againDpm":"{\"dpm\":\"1.19.3.0\",\"consumerId\":1,\"domain\":\"//embedlog.duiba.com.cn\",\"appId\":1}","flag":false,"score":"0"}}
\ No newline at end of file
{
"success": true,
"code": null,
"desc": null,
"data": {
"success": true,
"message": "请求成功",
"tip": "2元宝/次",
"option": null,
"useDpm": "{\"dpm\":\"1.19.1.0\",\"consumerId\":1,\"domain\":\"//embedlog.duiba.com.cn\",\"appId\":1,\"dcm\":\"\"}",
"againDpm": "{\"dpm\":\"1.19.3.0\",\"consumerId\":1,\"domain\":\"//embedlog.duiba.com.cn\",\"appId\":1}",
"flag": false
}
}
\ No newline at end of file
{
"success": true,
"code": null,
"desc": null,
"timestamp": 1530520559768,
"data": {
"totalScore": 238,
"maxScore": 93,
"maxScoreTime": "2018-06-29 19:47:35",
"rank": 1,
"percentage": 100.00,
"token": "/*TXLmTG*/var/*lZ1VdJl9*/__Pxq/*J6LOF*/=\\u0053\\u0074\\u0072\\u0069\\u006e\\u0067\n/*reVLYNhi1FDmB*/./*uXU8N*/\\u0066r\\u006fm\\u0043ha\\u0072C\\u006fde/*oxMBvZ2t0fD5ZHyyz*/;\nvar/*C5ISxccziOZ3z0*/_x_ssh = [/*rBIup98AYAZqcUQdk*/1146,1895,3293,140,3771,/*pFFS8d*/];//sAK4wV5YvV\nvar/*Kb8TDK085kF*/_$QQEc/*S0J05*/=/*rkCpQg3wXqo3mS4ol*/function(/*nUMrFHuKR*/){\n/*cNlbpz6OH8*/return/*ZvYxBi9a71*/arguments[/*dsamw*/0]^/*IaqWz311GFdaTdIhB*/\n/*D1A6p7s33kGJGi*/_x_ssh[/*sr1Uo8*/0];/*0Q8K37JUqDSEvcW*/}/*6E00kx17tB3WVyvq*/;\nvar/*9zegxjVxs0Xv4V07gY*/_$5aeY/*cJeg5azBwDpgf*/=/*kat1d1GMo6aYcK*/function(/*Lg4myL*/){\n/*vd8hxJJVL*/return/*QKwblHJOx9nVm8g*/arguments[/*oCLX2qoOvHqzsl*/0]^/*KbHGWZcgWKK7p*/\n/*3s77CQKPU0s0l*/_x_ssh[/*HLLu6gGP2r5r*/1];/*XGNPr9qtWDd7HQddm9L*/}/*fBBOZvSxNEr3mpZN*/;\nvar/*8csCshBNjcQ*/_$yxC/*r253U5X*/=/*2dzg93F2vM*/function(/*c0DnKZj3t77kgoSiJR*/){\n/*npeC5MFXQJn8cqRk*/return/*7naNAzB4Yz*/arguments[/*4Og67T*/0]^/*hII9RQ1PNcIwrjXq*/\n/*XY12A1d*/_x_ssh[/*n7tn0Y*/2];/*kSxjf3hCH8pGCHH*/}/*vhTHTUpsFD9f*/;\nvar/*O5zkEBgR0V2kwVxU3Hg*/_$Fe3/*8w3iFkg4y*/=/*W6mC6rVrJ*/function(/*p17UaN4Z*/){\n/*dakW4AHP*/return/*NkzzyXdq*/arguments[/*aKWQ2KTBu*/0]^/*BGOLP1ZwQsVNflbb*/\n/*X3RcOksl*/_x_ssh[/*CU8CvW0*/3];/*u7XNJRS*/}/*Z4vvwmdJcpYbS*/;\nvar/*tBNZLeatP*/_$wcwG/*X6sRWAPLSfAlGrzC*/=/*NE9GzzqpqkxFDIvUq*/function(/*oZR0kq*/){\n/*9QECsWPHVyv*/return/*AQSHr6oeu*/arguments[/*iYRFg0rs*/0]^/*GsabosAPwVQNUGkDpEV*/\n/*1N6hN0iadhTki*/_x_ssh[/*3kkZTPtaapWWQVfJch*/4];/*1YJseA9kkuUX*/}/*g2EePtUYLwkojysLh*/;\n/*gTuxqVdKcUGjC6yiIL*/\\u0065\\u0076\\u0061\\u006c/*HmoA6F0wGIFUJ*/(__Pxq(32)\n+/*rfx2lGshxY1Nuzx*/__Pxq(95/*2i*/,116,_$5aeY(1800),0153,101,~(0x6e^/*Tj*/-1),Math.abs(32)&-1,_$5aeY(-1-~/*UEk*/(0x75a^0)),32,_$wcwG(3737&(-1^0x00)),\n54,1051/0xA,~/*BzDz97jGJM110AJRa*/~/*h540gIp*/115,_$QQEc(10267/0xA),~(0x74^/*qiqf*/-1),-1-~/*vneJ*/(0x6b^0),~(0x6f^/*EH*/-1),0x2282/0400/*aO69BkUWQgoIRTOHPyRm4bdicl*/));/*XX6RRQ*/\n",
"consumerId": 1,
"status": {
"code": 0,
"btnText": "开始游戏",
"btnDisable": false,
"text": "今日剩余50次免费机会",
"btnEventType": null,
"btnEvent": null
},
"credits": 3962659,
"uid": "1"
}
}
\ No newline at end of file
[
{
"autoOpen": false,
"description": "我是一个实物大奖",
"logo": "//yun.duiba.com.cn/developer/img/activityTool/shake/object.png",
"name": "实物大奖",
"scope": "1"
},
{
"autoOpen": false,
"description": "我是一个话费",
"logo": "//yun.duiba.com.cn/developer/img/activityTool/shake/phone.png",
"name": "话费",
"scope": "2-4"
},
{
"autoOpen": true,
"description": "我是一个优惠券",
"logo": "//yun.duiba.com.cn/developer/img/activityTool/shake/coupon.png",
"name": "优惠券",
"scope": "2-4"
},
{
"autoOpen": true,
"description": "我是一个优惠券",
"logo": "//yun.duiba.com.cn/developer/img/activityTool/shake/coupon.png",
"name": "优惠券",
"scope": "2-4"
},
{
"autoOpen": true,
"description": "我是一个优惠券",
"logo": "//yun.duiba.com.cn/developer/img/activityTool/shake/coupon.png",
"name": "优惠券",
"scope": "2-4"
}
]
{
"success": true,
"message": "请求成功",
"result": 2,
"type": "thanks",
"facePrice": 500,
"cacheInfo": null,
"title": "谢谢参与",
"orderId": 514366819203110289
}
\ No newline at end of file
{
"result": 1,
"success": true,
"lottery": {
"androidDownloadUrl": "//trade.m.duiba.com.cn",
"coupon_code": "123456",
"st_info": "{\"info_type\":\"1\",\"os\":\"1\",\"login_type\":1,\"item_id\":31164,\"isEmbed\":true,\"button_type\":\"70004\",\"ip\":\"115.238.95.186\",\"consumer_id\":1,\"duiba_activity_id\":350,\"domain\":\"//embedlog.duiba.com.cn\",\"activity_type\":\"7\",\"activity_id\":350,\"app_id\":1,\"info\":\"355045189855250001\"}",
"link": "//trade.m.duiba.com.cn/crecord/recordDetailNew?orderId=355045190182920001&after=1&dbnewopen&dpm=1.4.3.0&dcm=101.31164.0.0&pluginId=350",
"useBtnText": "查看使用方法",
"st_info_close": "{\"info_type\":\"1\",\"os\":\"1\",\"login_type\":1,\"item_id\":31164,\"isEmbed\":true,\"button_type\":\"70005\",\"ip\":\"115.238.95.186\",\"consumer_id\":1,\"duiba_activity_id\":350,\"domain\":\"//embedlog.duiba.com.cn\",\"activity_type\":\"7\",\"activity_id\":350,\"app_id\":1,\"info\":\"355045189855250001\"}",
"st_info_expouse": "{\"info_type\":\"1\",\"os\":\"1\",\"login_type\":1,\"item_id\":31164,\"isEmbed\":true,\"button_type\":\"70001\",\"ip\":\"115.238.95.186\",\"consumer_id\":1,\"duiba_activity_id\":350,\"domain\":\"//embedlog.duiba.com.cn\",\"activity_type\":\"7\",\"activity_id\":350,\"app_id\":1,\"info\":\"355045189855250001\"}",
"type": "coupon",
"title": "重复券测试grape",
"st_info_detail": "{\"info_type\":\"1\",\"os\":\"1\",\"login_type\":1,\"item_id\":31164,\"isEmbed\":true,\"button_type\":\"70002\",\"ip\":\"115.238.95.186\",\"consumer_id\":1,\"duiba_activity_id\":350,\"domain\":\"//embedlog.duiba.com.cn\",\"activity_type\":\"7\",\"activity_id\":350,\"app_id\":1,\"info\":\"355045189855250001\"}",
"confirm": false,
"openUrl": "//trade.m.duiba.com.cn/crecord/recordDetailNew?id=355045190182920001&after=1&dbnewopen&dpm=1.4.2.0&dcm=101.31164.0.0",
"imgurl": "//yun.duiba.com.cn/images/201607/73htz55ih9.jpg",
"showUse": true,
"st_info_dpm_close": "{\"dpm\":\"1.4.4.0\",\"consumerId\":1,\"domain\":\"//embedlog.duiba.com.cn\",\"appId\":1,\"dcm\":\"101.31164.0.0\"}",
"iosDownloadUrl": "//trade.m.duiba.com.cn",
"st_info_dpm_img": "{\"dpm\":\"1.4.2.0\",\"consumerId\":1,\"domain\":\"//embedlog.duiba.com.cn\",\"appId\":1,\"dcm\":\"101.31164.0.0\"}",
"tip": "",
"id": 38852,
"coupon_key": "111",
"st_info_use": "{\"info_type\":\"1\",\"os\":\"1\",\"login_type\":1,\"item_id\":31164,\"isEmbed\":true,\"button_type\":\"40003\",\"ip\":\"115.238.95.186\",\"consumer_id\":1,\"duiba_activity_id\":350,\"domain\":\"//embedlog.duiba.com.cn\",\"activity_type\":\"7\",\"activity_id\":350,\"app_id\":1,\"info\":\"355045189855250001\"}",
"validate": "2020-04-01",
"st_info_pic": "{\"info_type\":\"1\",\"os\":\"1\",\"login_type\":1,\"item_id\":31164,\"isEmbed\":true,\"button_type\":\"70003\",\"ip\":\"115.238.95.186\",\"consumer_id\":1,\"duiba_activity_id\":350,\"domain\":\"//embedlog.duiba.com.cn\",\"activity_type\":\"7\",\"activity_id\":350,\"app_id\":1,\"info\":\"355045189855250001\"}"
}
}
\ No newline at end of file
{
"success": true,
"code": null,
"desc": null,
"data": {
"role": "女"
}
}
\ No newline at end of file
"测试排行榜图片<font color=\"0xff0000\">展示测</font> 试排行榜图片展示测试排行榜图片展示测试排行榜图片展示测试排行榜图片展示测试排行榜图片展示<br>测试排行榜图片展示<br>测试排行榜图片展示<br>测试排行榜图片展示<br>测试排行榜图片展示<br>测试排行榜图片展示<br><br><ul><li>使得发达省份</li><li>fdsgdfgdfg</li><li>阿斯达斯的</li><li>阿斯达斯的</li></ul>阿斯达斯的<br>阿萨德阿萨德<br><ul><li>131232132132</li></ul><ol><li>都市风格豆腐干豆腐干</li><li>的风格豆腐干豆腐干</li><li>豆腐干dfgdfgdfgg豆腐干豆腐干</li><li>但是法国豆腐干豆腐干豆腐干</li></ol><h4><ol><li>但是复苏的发达省份第三方<a href=\"http://baidu.com/\" data-tag=\"is-link\" title=\"Link: http://baidu.com\">http://baidu.com/</a></li></ol></h4>"
\ No newline at end of file
{
"code": 1,
"message": "处理成功",
"success": true
}
\ No newline at end of file
{
"success": true,
"data": 0
}
\ No newline at end of file
{
"success": true,
"code": null,
"desc": null,
"data": {
"win": true,
"poker": 52,
"score": 0,
"times": 1
}
}
\ No newline at end of file
{
"success": true,
"code": null,
"desc": null,
"data": {
"list": [
{
"pluginId": 962,
"options": [
{
"id": 274,
"count": 93,
"name": "shiwu",
"img": "//yun.duiba.com.cn/developer/img/activityTool/slotMachine/object.png",
"type": "object"
},
{
"id": 279,
"count": 1,
"name": "1",
"img": "//yun.duiba.com.cn/developer/img/activityTool/slotMachine/coupon.png",
"type": "coupon"
},
{
"id": 315,
"count": 150,
"name": "开心码",
"img": "//yun.duiba.com.cn/developer/img/happy_code.png",
"type": "happyCode"
}
]
},
{
"pluginId": 1003,
"options": [
]
},
{
"pluginId": 1005,
"options": [
{
"id": 334,
"count": 22,
"name": "22",
"img": "//yun.duiba.com.cn/developer/img/activityTool/slotMachine/object.png",
"type": "object"
}
]
}
]
}
}
\ No newline at end of file
{
"success": true,
"code": 1,
"desc": "111",
"data": {
"userList": [
{
"active": false,
"cid": "500131007",
"maxScore": "2",
"rank": "1",
"nickName": "asdasd",
"avatar": null
},
{
"active": false,
"cid": "1539361",
"maxScore": "1",
"nickName": "没了谁",
"rank": "2",
"avatar": null
},
{
"active": false,
"cid": "1539361",
"maxScore": "1",
"nickName": "没了谁",
"rank": "3",
"avatar": null
},
{
"active": false,
"cid": "1539361",
"maxScore": "1",
"nickName": "没了谁",
"rank": "5",
"avatar": null
},
{
"active": false,
"cid": "1539361",
"maxScore": "1",
"nickName": "没了谁",
"rank": "6",
"avatar": null
},
{
"active": false,
"cid": "1539361",
"maxScore": "1",
"nickName": "没了谁",
"rank": "7",
"avatar": null
},
{
"active": false,
"cid": "1539361",
"maxScore": "1",
"nickName": "没了谁",
"rank": "8",
"avatar": null
},
{
"active": false,
"cid": "1539361",
"maxScore": "1",
"nickName": "没了谁",
"rank": "9",
"avatar": null
},
{
"active": false,
"cid": "1",
"maxScore": "1",
"nickName": "没了谁",
"rank": "10",
"avatar": null
},
{
"active": false,
"cid": "1539361",
"maxScore": "1",
"nickName": "没了谁",
"rank": "11",
"avatar": null
},
{
"active": false,
"cid": "1539361",
"maxScore": "1",
"nickName": "没了谁",
"rank": "12",
"avatar": null
},
{
"active": false,
"cid": "1539361",
"maxScore": "1",
"nickName": "没了谁",
"rank": "13",
"avatar": null
},
{
"active": false,
"cid": "1539361",
"maxScore": "1",
"nickName": "没了谁",
"rank": "14",
"avatar": null
},
{
"active": false,
"cid": "1539361",
"maxScore": "1",
"nickName": "没了谁",
"rank": "15",
"avatar": null
},
{
"active": false,
"cid": "1539361",
"maxScore": "16",
"nickName": "没了谁",
"rank": "2",
"avatar": null
}
],
"user": {
"cid": "***133000",
"rank": "2",
"maxScore": "1",
"active": false,
"nickName": null,
"avatar": null
},
"inRank": true
}
}
{
"success": true,
"code": null,
"desc": null,
"data": {
"userList": null,
"user": null,
"inRank": false,
"lastScore": null
}
}
\ No newline at end of file
{
"success": true,
"code": null,
"desc": null,
"data": null
}
\ No newline at end of file
{
"success": true,
"code": null,
"desc": null,
"data": {
"status": 0
}
}
\ No newline at end of file
{
"consumer": {
"cid": "***9361",
"join": true,
"rank": "1"
},
"message": "请求成功",
"ranks": [
{
"imageUrl": "//yun.dui88.com/images/201710/s314xd9k60.png",
"name": "11111111111111111111111",
"users": [
{
"active": true,
"cid": "***9361",
"maxScore": "6",
"rank": "1"
}
]
},
{
"imageUrl": "//yun.dui88.com/images/201710/s314xd9k60.png",
"name": "11",
"users": [
{
"active": true,
"cid": "***9361",
"maxScore": "6",
"rank": "1"
}
]
},
{
"imageUrl": "//yun.dui88.com/images/201710/s314xd9k60.png",
"name": "11",
"users": [
{
"active": true,
"cid": "***9361",
"maxScore": "6",
"rank": "1"
}
]
},
{
"imageUrl": "//yun.dui88.com/images/201710/s314xd9k60.png",
"name": "11",
"users": [
{
"active": true,
"cid": "***9361",
"maxScore": "6",
"rank": "1"
}
]
},
{
"imageUrl": "//yun.dui88.com/images/201710/s314xd9k60.png",
"name": "11",
"users": [
{
"active": true,
"cid": "***9361",
"maxScore": "6",
"rank": "1"
}
]
},
{
"imageUrl": "//yun.dui88.com/images/201710/s314xd9k60.png",
"name": "11",
"users": [
{
"active": true,
"cid": "***9361",
"maxScore": "6",
"rank": "1"
}
]
}
],
"success": true
}
{
"name": "{projectName}",
"version": "1.0.0",
"description": "",
"main": "index.html",
"scripts": {
"build": "webpack --config webpack.prod.js",
"watch": "webpack --watch",
"start": "webpack-dev-server --open --config webpack.dev.js",
"test": "echo \"Error: no test specified\" && exit 1",
"publish": "webpack --config webpack.prod.js && gulp && gulp packToOne",
"installDepot": "cnpm uninstall git+ssh://git@gitlab2.dui88.com:clq/wx.git#1.0"
},
"keywords": [],
"author": "anlun214 qq:58529016",
"license": "ISC",
"devDependencies": {
"base64-min": "^1.2.0",
"del": "^2.2.1",
"fs": "0.0.2",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.0",
"gulp-pngquant": "^1.0.10",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-sequence": "^0.4.5",
"gulp-uglify": "^1.5.4",
"merge-stream": "^1.0.0",
"mock-webpack-plugin": "^2.0.0",
"path": "^0.12.7",
"ali-oss": "^4.11.4",
"chalk": "^2.3.0",
"co": "^4.6.0",
"progress": "^2.0.0",
"@types/jquery": "^3.3.1",
"ts-loader": "^4.0.0",
"tslint": "^5.9.1",
"typescript": "^2.7.2",
"webpack": "^4.1.0",
"webpack-cli": "^2.0.9",
"webpack-dev-server": "^3.1.0",
"webpack-merge": "^4.1.2"
},
"dependencies": {
"duiba_tc": "git+ssh://git@gitlab2.dui88.com:clq/tc.git#1.0",
"duiba_tw": "git+ssh://git@gitlab2.dui88.com:clq/tw.git#1.0",
"duiba_tl": "git+ssh://git@gitlab2.dui88.com:clq/tl.git#1.0",
"duiba_wx": "git+ssh://git@gitlab2.dui88.com:clq/wx.git#1.0"
}
}
{
"type":"activity",
"name":"photo51-201804261030"
}
\ No newline at end of file
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"noImplicitAny": false,
"sourceMap": true,
"removeComments": true,
"noEmitOnError":true,
"outDir":"dist"
},
"exclude": [
"node_modules"
]
}
\ No newline at end of file
window.addEventListener("load", function () {
new Main();
});
export class Main {
/**
* 舞台
*/
private stage: annie.Stage;
constructor() {
annie.debug = false;
window['F2xExtend'] = eval('__extends');
/**
* 最上层div的id,可以在一个页面同时放多个stage.
* 设计尺寸的宽
* 设计尺寸的高
* FPS刷新率
* 缩放模式
* 渲染模式
*/
this.stage = new annie.Stage("annieEngine", 640, 1030, 60, annie.StageScaleMode.FIXED_WIDTH, 0);
//默认关闭自动旋转和自动resize
//stage.autoResize=true;
//stage.autoSteering=true;
this.stage.addEventListener(annie.Event.INIT_TO_STAGE, this.onAddToStage.bind(this));
}
private onAddToStage(e: annie.Event): void {
}
}
\ No newline at end of file
const path = require('path');
module.exports = {
entry: './tsSrc/Main.ts',
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/
}
]
},
resolve: {
extensions: ['.tsx', '.ts', '.js']
},
output: {
filename: 'output.js',
path: __dirname
}
};
\ No newline at end of file
const merge = require('webpack-merge');
const common = require('./webpack.common.js');
const webpack = require('webpack');
const MockWebpackPlugin = require('mock-webpack-plugin');
const mockConfig = require('./mock/config.js');
module.exports = merge(common, {
devtool: 'eval-source-map',
devServer: {
contentBase: '.',
proxy: {
'/ngapi/*': 'http://localhost:3000',
'/ngame/*': 'http://localhost:3000',
'/activityCommon/*': 'http://localhost:3000',
'/ctool/*': 'http://localhost:3000',
'/activityVist/*': 'http://localhost:3000',
'/collectGoods/*': 'http://localhost:3000',
'/activityPlugDrawInfo/*': 'http://localhost:3000',
'/collectRule/*': 'http://localhost:3000',
'/hdtool/*': 'http://localhost:3000',
'/activityPlugin/*': 'http://localhost:3000'
}
},
plugins: [
new MockWebpackPlugin({
config: mockConfig,
port: 3000
})
]
});
\ No newline at end of file
const merge = require('webpack-merge');
const common = require('./webpack.common.js');
const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
const webpack = require('webpack');
module.exports = merge(common, {
devtool: 'source-map',
plugins: [
new UglifyJSPlugin(
{ sourceMap: true }
), new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify('production')
})
]
});
\ No newline at end of file
//一些名称相关的字符串替换
exports.replace = {
constants: {
projectName: null, //会用项目名替换
},
contentInFiles: [
'source/package.json'
],
nameOfFiles: [
'{projectName}-main.fla'
]
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment