Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
DuibaTestToolV2.1
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵然
DuibaTestToolV2.1
Commits
a7039a75
Commit
a7039a75
authored
Oct 13, 2018
by
赵然
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
zr
parent
554530af
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
539 additions
and
11 deletions
+539
-11
CreatUrlModule.java
src/main/com/atguigu/springmvc/handlers/CreatUrlModule.java
+95
-0
AutoTable.html
webapp/AutoTable.html
+7
-1
CardCommon.html
webapp/CardCommon.html
+7
-1
CollectCard.html
webapp/CollectCard.html
+7
-1
activity.html
webapp/activity.html
+7
-1
bury.html
webapp/bury.html
+7
-1
creatUrl.html
webapp/creatUrl.html
+367
-0
dashboard.html
webapp/dashboard.html
+7
-1
encoder.html
webapp/encoder.html
+7
-1
package.html
webapp/package.html
+7
-1
red.html
webapp/red.html
+7
-1
sign.html
webapp/sign.html
+7
-1
success.html
webapp/success.html
+7
-1
No files found.
src/main/com/atguigu/springmvc/handlers/CreatUrlModule.java
0 → 100644
View file @
a7039a75
package
main
.
com
.
atguigu
.
springmvc
.
handlers
;
import
cn.com.duiba.credits.sdk.CreditTool
;
import
org.springframework.stereotype.Controller
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RequestMethod
;
import
org.springframework.web.bind.annotation.ResponseBody
;
import
org.springframework.web.servlet.ModelAndView
;
import
javax.servlet.http.HttpServletRequest
;
import
java.util.Base64
;
import
java.util.HashMap
;
import
java.util.Map
;
@Controller
public
class
CreatUrlModule
{
final
Base64
.
Decoder
decoder
=
Base64
.
getDecoder
();
final
Base64
.
Encoder
encoder
=
Base64
.
getEncoder
();
/**
* 功能:生成免登链接操作
* @return
*/
@RequestMapping
(
value
=
"/urlLink"
,
method
=
RequestMethod
.
POST
)
@ResponseBody
public
Map
urlLink
(
HttpServletRequest
request
)
throws
Exception
{
String
appkey
=
request
.
getParameter
(
"appkey"
);
if
(
appkey
.
equals
(
null
)
||
appkey
.
equals
(
""
)
||
appkey
.
isEmpty
()){
appkey
=
"jlg88lyxz7siqtmr"
;
}
String
appsecret
=
request
.
getParameter
(
"appsecret"
);
if
(
appsecret
.
equals
(
null
)
||
appsecret
.
equals
(
""
)
||
appsecret
.
isEmpty
()){
appsecret
=
"1x0eap95f4xfi77uaptrnwh9ewzvlm"
;
}
String
userId
=
request
.
getParameter
(
"userId"
);
if
(
userId
.
equals
(
null
)
||
userId
.
equals
(
""
)
||
userId
.
isEmpty
()){
userId
=
"not_login"
;
}
String
credits
=
request
.
getParameter
(
"credits"
);
if
(
credits
.
equals
(
null
)
||
credits
.
equals
(
""
)
||
credits
.
isEmpty
()){
credits
=
"0"
;
}
String
dcustom
=
request
.
getParameter
(
"dcustom"
);
String
transfer
=
request
.
getParameter
(
"transfer"
);
String
redirect
=
request
.
getParameter
(
"redirect"
);
String
phone
=
request
.
getParameter
(
"phone"
);
String
alipay
=
request
.
getParameter
(
"alipay"
);
String
realName
=
request
.
getParameter
(
"realName"
);
String
qq
=
request
.
getParameter
(
"qq"
);
String
vip
=
request
.
getParameter
(
"vip"
);
System
.
out
.
println
(
"appkey为:"
+
appkey
);
System
.
out
.
println
(
"appsecret为:"
+
appsecret
);
System
.
out
.
println
(
"userId为:"
+
userId
);
System
.
out
.
println
(
"credits为:"
+
credits
);
System
.
out
.
println
(
"dcustom为:"
+
dcustom
);
CreditTool
tool
=
new
CreditTool
(
appkey
,
appsecret
);
Map
<
String
,
String
>
params
=
new
HashMap
<
String
,
String
>();
params
.
put
(
"uid"
,
userId
);
params
.
put
(
"credits"
,
credits
);
if
(
dcustom
!=
null
&&
dcustom
!=
""
&&
dcustom
!=
"null"
)
{
params
.
put
(
"dcustom"
,
dcustom
);
}
if
(
transfer
!=
null
&&
transfer
!=
""
&&
transfer
!=
"null"
){
params
.
put
(
"transfer"
,
transfer
);
}
if
(
redirect
!=
null
&&
redirect
!=
""
&&
redirect
!=
"null"
){
params
.
put
(
"redirect"
,
redirect
);
}
if
(
phone
!=
null
&&
phone
!=
""
&&
phone
!=
"null"
)
{
params
.
put
(
"phone"
,
phone
);
}
if
(
alipay
!=
null
&&
alipay
!=
""
&&
alipay
!=
"null"
)
{
params
.
put
(
"alipay"
,
alipay
);
}
if
(
realName
!=
null
&&
realName
!=
""
&&
realName
!=
"null"
)
{
params
.
put
(
"realname"
,
realName
);
}
if
(
qq
!=
null
&&
qq
!=
""
&&
qq
!=
"null"
)
{
params
.
put
(
"QQ"
,
qq
);
}
if
(
vip
!=
null
&&
vip
!=
""
&&
vip
!=
"null"
)
{
params
.
put
(
"vip"
,
vip
);
}
String
url
=
tool
.
buildUrlWithSign
(
"https://activity.m.duibatest.com.cn/autoLogin/autologin?"
,
params
);
System
.
out
.
println
(
url
);
Map
<
String
,
String
>
map
=
new
HashMap
<>();
map
.
put
(
"message"
,
url
);
return
map
;
}
}
webapp/AutoTable.html
View file @
a7039a75
...
@@ -357,6 +357,12 @@
...
@@ -357,6 +357,12 @@
<li><a
href=
"http://172.16.80.141:9999"
class=
"mws-i-24 i-chart"
target=
'_BLANK'
>
代理工具
</a></li>
<li><a
href=
"http://172.16.80.141:9999"
class=
"mws-i-24 i-chart"
target=
'_BLANK'
>
代理工具
</a></li>
<li><a
href=
"encoder.html"
class=
"mws-i-24 i-cog"
>
转码工具
</a></li>
<li><a
href=
"encoder.html"
class=
"mws-i-24 i-cog"
>
转码工具
</a></li>
<li><a
href=
"bury.html"
class=
"mws-i-24 i-eyedropper"
>
埋点工具
</a></li>
<li><a
href=
"bury.html"
class=
"mws-i-24 i-eyedropper"
>
埋点工具
</a></li>
<li>
<a
href=
"#"
class=
"mws-i-24 i-iphone-4"
>
积分商城助手
</a>
<ul>
<li><a
href=
"creatUrl.html"
>
生成免登链接
</a></li>
</ul>
</li>
<li>
<li>
<a
href=
"#"
class=
"mws-i-24 i-day-calendar"
>
签到助手
</a>
<a
href=
"#"
class=
"mws-i-24 i-day-calendar"
>
签到助手
</a>
<ul>
<ul>
...
@@ -365,7 +371,7 @@
...
@@ -365,7 +371,7 @@
</ul>
</ul>
</li>
</li>
<li>
<li>
<a
href=
"#"
class=
"mws-i-24 i-
list
"
>
活动助手
</a>
<a
href=
"#"
class=
"mws-i-24 i-
dribbble-4
"
>
活动助手
</a>
<ul>
<ul>
<li><a
href=
"package.html"
>
开发者测试包
</a></li>
<li><a
href=
"package.html"
>
开发者测试包
</a></li>
<li><a
href=
"activity.html"
>
自定义活动
</a></li>
<li><a
href=
"activity.html"
>
自定义活动
</a></li>
...
...
webapp/CardCommon.html
View file @
a7039a75
...
@@ -178,6 +178,12 @@ $(document).ready(function(){
...
@@ -178,6 +178,12 @@ $(document).ready(function(){
<li><a
href=
"http://172.16.80.141:9999"
class=
"mws-i-24 i-chart"
target=
'_BLANK'
>
代理工具
</a></li>
<li><a
href=
"http://172.16.80.141:9999"
class=
"mws-i-24 i-chart"
target=
'_BLANK'
>
代理工具
</a></li>
<li><a
href=
"encoder.html"
class=
"mws-i-24 i-cog"
>
转码工具
</a></li>
<li><a
href=
"encoder.html"
class=
"mws-i-24 i-cog"
>
转码工具
</a></li>
<li><a
href=
"bury.html"
class=
"mws-i-24 i-eyedropper"
>
埋点工具
</a></li>
<li><a
href=
"bury.html"
class=
"mws-i-24 i-eyedropper"
>
埋点工具
</a></li>
<li>
<a
href=
"#"
class=
"mws-i-24 i-iphone-4"
>
积分商城助手
</a>
<ul>
<li><a
href=
"creatUrl.html"
>
生成免登链接
</a></li>
</ul>
</li>
<li>
<li>
<a
href=
"#"
class=
"mws-i-24 i-day-calendar"
>
签到助手
</a>
<a
href=
"#"
class=
"mws-i-24 i-day-calendar"
>
签到助手
</a>
<ul>
<ul>
...
@@ -186,7 +192,7 @@ $(document).ready(function(){
...
@@ -186,7 +192,7 @@ $(document).ready(function(){
</ul>
</ul>
</li>
</li>
<li
class=
"active"
>
<li
class=
"active"
>
<a
href=
"#"
class=
"mws-i-24 i-
list
"
>
活动助手
</a>
<a
href=
"#"
class=
"mws-i-24 i-
dribbble-4
"
>
活动助手
</a>
<ul>
<ul>
<li><a
href=
"package.html"
>
开发者测试包
</a></li>
<li><a
href=
"package.html"
>
开发者测试包
</a></li>
<li><a
href=
"activity.html"
>
自定义活动
</a></li>
<li><a
href=
"activity.html"
>
自定义活动
</a></li>
...
...
webapp/CollectCard.html
View file @
a7039a75
...
@@ -227,6 +227,12 @@ $(document).ready(function(){
...
@@ -227,6 +227,12 @@ $(document).ready(function(){
<li><a
href=
"http://172.16.80.141:9999"
class=
"mws-i-24 i-chart"
target=
'_BLANK'
>
代理工具
</a></li>
<li><a
href=
"http://172.16.80.141:9999"
class=
"mws-i-24 i-chart"
target=
'_BLANK'
>
代理工具
</a></li>
<li><a
href=
"encoder.html"
class=
"mws-i-24 i-cog"
>
转码工具
</a></li>
<li><a
href=
"encoder.html"
class=
"mws-i-24 i-cog"
>
转码工具
</a></li>
<li><a
href=
"bury.html"
class=
"mws-i-24 i-eyedropper"
>
埋点工具
</a></li>
<li><a
href=
"bury.html"
class=
"mws-i-24 i-eyedropper"
>
埋点工具
</a></li>
<li>
<a
href=
"#"
class=
"mws-i-24 i-iphone-4"
>
积分商城助手
</a>
<ul>
<li><a
href=
"creatUrl.html"
>
生成免登链接
</a></li>
</ul>
</li>
<li>
<li>
<a
href=
"#"
class=
"mws-i-24 i-day-calendar"
>
签到助手
</a>
<a
href=
"#"
class=
"mws-i-24 i-day-calendar"
>
签到助手
</a>
<ul>
<ul>
...
@@ -235,7 +241,7 @@ $(document).ready(function(){
...
@@ -235,7 +241,7 @@ $(document).ready(function(){
</ul>
</ul>
</li>
</li>
<li
class=
"active"
>
<li
class=
"active"
>
<a
href=
"#"
class=
"mws-i-24 i-
list
"
>
活动助手
</a>
<a
href=
"#"
class=
"mws-i-24 i-
dribbble-4
"
>
活动助手
</a>
<ul>
<ul>
<li><a
href=
"package.html"
>
开发者测试包
</a></li>
<li><a
href=
"package.html"
>
开发者测试包
</a></li>
<li><a
href=
"activity.html"
>
自定义活动
</a></li>
<li><a
href=
"activity.html"
>
自定义活动
</a></li>
...
...
webapp/activity.html
View file @
a7039a75
...
@@ -256,6 +256,12 @@
...
@@ -256,6 +256,12 @@
<li><a
href=
"http://172.16.80.141:9999"
class=
"mws-i-24 i-chart"
target=
'_BLANK'
>
代理工具
</a></li>
<li><a
href=
"http://172.16.80.141:9999"
class=
"mws-i-24 i-chart"
target=
'_BLANK'
>
代理工具
</a></li>
<li><a
href=
"encoder.html"
class=
"mws-i-24 i-cog"
>
转码工具
</a></li>
<li><a
href=
"encoder.html"
class=
"mws-i-24 i-cog"
>
转码工具
</a></li>
<li><a
href=
"bury.html"
class=
"mws-i-24 i-eyedropper"
>
埋点工具
</a></li>
<li><a
href=
"bury.html"
class=
"mws-i-24 i-eyedropper"
>
埋点工具
</a></li>
<li>
<a
href=
"#"
class=
"mws-i-24 i-iphone-4"
>
积分商城助手
</a>
<ul>
<li><a
href=
"creatUrl.html"
>
生成免登链接
</a></li>
</ul>
</li>
<li>
<li>
<a
href=
"#"
class=
"mws-i-24 i-day-calendar"
>
签到助手
</a>
<a
href=
"#"
class=
"mws-i-24 i-day-calendar"
>
签到助手
</a>
<ul>
<ul>
...
@@ -264,7 +270,7 @@
...
@@ -264,7 +270,7 @@
</ul>
</ul>
</li>
</li>
<li
class=
"active"
>
<li
class=
"active"
>
<a
href=
"#"
class=
"mws-i-24 i-
list
"
>
活动助手
</a>
<a
href=
"#"
class=
"mws-i-24 i-
dribbble-4
"
>
活动助手
</a>
<ul>
<ul>
<li><a
href=
"package.html"
>
开发者测试包
</a></li>
<li><a
href=
"package.html"
>
开发者测试包
</a></li>
<li><a
href=
"activity.html"
>
自定义活动
</a></li>
<li><a
href=
"activity.html"
>
自定义活动
</a></li>
...
...
webapp/bury.html
View file @
a7039a75
...
@@ -286,6 +286,12 @@
...
@@ -286,6 +286,12 @@
<li><a
href=
"http://172.16.80.141:9999"
class=
"mws-i-24 i-chart"
target=
'_BLANK'
>
代理工具
</a></li>
<li><a
href=
"http://172.16.80.141:9999"
class=
"mws-i-24 i-chart"
target=
'_BLANK'
>
代理工具
</a></li>
<li><a
href=
"encoder.html"
class=
"mws-i-24 i-cog"
>
转码工具
</a></li>
<li><a
href=
"encoder.html"
class=
"mws-i-24 i-cog"
>
转码工具
</a></li>
<li
class=
"active"
><a
href=
"#"
class=
"mws-i-24 i-eyedropper"
>
埋点工具
</a></li>
<li
class=
"active"
><a
href=
"#"
class=
"mws-i-24 i-eyedropper"
>
埋点工具
</a></li>
<li>
<a
href=
"#"
class=
"mws-i-24 i-iphone-4"
>
积分商城助手
</a>
<ul>
<li><a
href=
"creatUrl.html"
>
生成免登链接
</a></li>
</ul>
</li>
<li>
<li>
<a
href=
"#"
class=
"mws-i-24 i-day-calendar"
>
签到助手
</a>
<a
href=
"#"
class=
"mws-i-24 i-day-calendar"
>
签到助手
</a>
<ul>
<ul>
...
@@ -294,7 +300,7 @@
...
@@ -294,7 +300,7 @@
</ul>
</ul>
</li>
</li>
<li>
<li>
<a
href=
"#"
class=
"mws-i-24 i-
list
"
>
活动助手
</a>
<a
href=
"#"
class=
"mws-i-24 i-
dribbble-4
"
>
活动助手
</a>
<ul>
<ul>
<li><a
href=
"package.html"
>
开发者测试包
</a></li>
<li><a
href=
"package.html"
>
开发者测试包
</a></li>
<li><a
href=
"activity.html"
>
自定义活动
</a></li>
<li><a
href=
"activity.html"
>
自定义活动
</a></li>
...
...
webapp/creatUrl.html
0 → 100644
View file @
a7039a75
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html
xmlns=
"http://www.w3.org/1999/xhtml"
>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=utf-8"
/>
<!-- Required Stylesheets -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css/reset.css"
media=
"screen"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css/text.css"
media=
"screen"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css/fonts/ptsans/stylesheet.css"
media=
"screen"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css/fluid.css"
media=
"screen"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css/mws.style.css"
media=
"screen"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css/icons/icons.css"
media=
"screen"
/>
<!-- Demo and Plugin Stylesheets -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css/demo.css"
media=
"screen"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"plugins/colorpicker/colorpicker.css"
media=
"screen"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"plugins/jimgareaselect/css/imgareaselect-default.css"
media=
"screen"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"plugins/fullcalendar/fullcalendar.css"
media=
"screen"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"plugins/fullcalendar/fullcalendar.print.css"
media=
"print"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"plugins/tipsy/tipsy.css"
media=
"screen"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"plugins/sourcerer/Sourcerer-1.2.css"
media=
"screen"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"plugins/jgrowl/jquery.jgrowl.css"
media=
"screen"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"plugins/spinner/spinner.css"
media=
"screen"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css/jui/jquery.ui.css"
media=
"screen"
/>
<link
rel=
"shortcut icon"
href=
"images/logo.png"
>
<!-- Theme Stylesheet -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css/mws.theme.css"
media=
"screen"
/>
<!-- JavaScript Plugins -->
<!-- <script type="text/javascript" src="js/jquery-1.7.1.min.js"></script> -->
<script
type=
"text/javascript"
src=
"js/jquery-3.2.1.min.js"
></script>
<script
type=
"text/javascript"
src=
"plugins/jimgareaselect/jquery.imgareaselect.min.js"
></script>
<script
type=
"text/javascript"
src=
"plugins/jquery.dualListBox-1.3.min.js"
></script>
<script
type=
"text/javascript"
src=
"plugins/jgrowl/jquery.jgrowl.js"
></script>
<script
type=
"text/javascript"
src=
"plugins/jquery.filestyle.js"
></script>
<script
type=
"text/javascript"
src=
"plugins/fullcalendar/fullcalendar.min.js"
></script>
<script
type=
"text/javascript"
src=
"plugins/jquery.dataTables.js"
></script>
<!--[if lt IE 9]>
<script type="text/javascript" src="plugins/flot/excanvas.min.js"></script>
<![endif]-->
<script
type=
"text/javascript"
src=
"plugins/flot/jquery.flot.min.js"
></script>
<script
type=
"text/javascript"
src=
"plugins/flot/jquery.flot.pie.min.js"
></script>
<script
type=
"text/javascript"
src=
"plugins/flot/jquery.flot.stack.min.js"
></script>
<script
type=
"text/javascript"
src=
"plugins/flot/jquery.flot.resize.min.js"
></script>
<script
type=
"text/javascript"
src=
"plugins/colorpicker/colorpicker.js"
></script>
<script
type=
"text/javascript"
src=
"plugins/tipsy/jquery.tipsy.js"
></script>
<script
type=
"text/javascript"
src=
"plugins/sourcerer/Sourcerer-1.2.js"
></script>
<script
type=
"text/javascript"
src=
"plugins/jquery.placeholder.js"
></script>
<script
type=
"text/javascript"
src=
"plugins/jquery.validate.js"
></script>
<script
type=
"text/javascript"
src=
"plugins/jquery.mousewheel.js"
></script>
<script
type=
"text/javascript"
src=
"plugins/spinner/ui.spinner.js"
></script>
<script
type=
"text/javascript"
src=
"js/jquery-ui.js"
></script>
<script
type=
"text/javascript"
src=
"js/mws.js"
></script>
<script
type=
"text/javascript"
src=
"js/demo.js"
></script>
<script
type=
"text/javascript"
src=
"js/themer.js"
></script>
<script
type=
"text/javascript"
src=
"js/demo.charts.js"
></script>
<script>
$
(
document
).
ready
(
function
(){
$
(
"#urlLink"
).
click
(
function
(
e
){
$
(
"#result"
).
val
(
"获取执行结果,请等待~"
);
e
.
preventDefault
();
var
appkey
=
$
(
"#appkey"
).
val
();
var
appsecret
=
$
(
"#appsecret"
).
val
();
var
userId
=
$
(
"#userId"
).
val
();
var
credits
=
$
(
"#credits"
).
val
();
var
dcustom
=
$
(
"#dcustom"
).
val
();
var
transfer
=
$
(
"#transfer"
).
val
();
var
redirect
=
$
(
"#redirect"
).
val
();
var
phone
=
$
(
"#phone"
).
val
();
var
alipay
=
$
(
"#alipay"
).
val
();
var
realName
=
$
(
"#realName"
).
val
();
var
qq
=
$
(
"#qq"
).
val
();
var
vip
=
$
(
"#vip"
).
val
();
$
.
post
(
"urlLink"
,
{
"appkey"
:
appkey
,
"appsecret"
:
appsecret
,
"userId"
:
userId
,
"credits"
:
credits
,
"dcustom"
:
dcustom
,
"transfer"
:
transfer
,
"redirect"
:
redirect
,
"phone"
:
phone
,
"alipay"
:
alipay
,
"realName"
:
realName
,
"qq"
:
qq
,
"vip"
:
vip
},
function
(
data
,
status
){
$
(
"#result"
).
val
(
data
.
message
);
});
});
});
function
selectOnchang
(
obj
){
var
value
=
obj
.
options
[
obj
.
selectedIndex
].
value
;
//alert(value);
if
(
value
==
"1"
){
$
(
"#line"
).
hide
();
$
(
"#redirect_v"
).
hide
();
$
(
"#phone_v"
).
hide
();
$
(
"#alipay_v"
).
hide
();
$
(
"#realName_v"
).
hide
();
$
(
"#qq_v"
).
hide
();
$
(
"#vip_v"
).
hide
();
}
if
(
value
==
"2"
){
$
(
"#line"
).
show
();
$
(
"#redirect_v"
).
show
();
$
(
"#phone_v"
).
show
();
$
(
"#alipay_v"
).
show
();
$
(
"#realName_v"
).
show
();
$
(
"#qq_v"
).
show
();
$
(
"#vip_v"
).
show
();
}
}
</script>
<title>
MWS Admin - Charts
</title>
</head>
<body>
<div
id=
"mws-themer"
>
<div
id=
"mws-themer-hide"
></div>
<div
id=
"mws-themer-content"
>
<div
class=
"mws-themer-section"
>
<label
for=
"mws-theme-presets"
>
Presets
</label>
<select
id=
"mws-theme-presets"
></select>
</div>
<div
class=
"mws-themer-separator"
></div>
<div
class=
"mws-themer-section"
>
<ul>
<li><span>
Base Color
</span>
<div
id=
"mws-base-cp"
class=
"mws-cp-trigger"
></div></li>
<li><span>
Text Color
</span>
<div
id=
"mws-text-cp"
class=
"mws-cp-trigger"
></div></li>
<li><span>
Text Glow Color
</span>
<div
id=
"mws-textglow-cp"
class=
"mws-cp-trigger"
></div></li>
</ul>
</div>
<div
class=
"mws-themer-separator"
></div>
<div
class=
"mws-themer-section"
>
<ul>
<li><span>
Text Glow Opacity
</span>
<div
id=
"mws-textglow-op"
></div></li>
</ul>
</div>
<div
class=
"mws-themer-separator"
></div>
<div
class=
"mws-themer-section"
>
<button
class=
"mws-button red small"
id=
"mws-themer-getcss"
>
Get CSS
</button>
</div>
</div>
<div
id=
"mws-themer-css-dialog"
>
<div
class=
"mws-form"
>
<div
class=
"mws-form-row"
style=
"padding:0;"
>
<div
class=
"mws-form-item"
>
<textarea
cols=
"auto"
rows=
"auto"
readonly=
"readonly"
></textarea>
</div>
</div>
</div>
</div>
</div>
<div
id=
"mws-header"
class=
"clearfix"
>
<div
id=
"mws-logo-container"
>
<div
id=
"mws-logo-wrap"
>
<img
src=
"images/mws-logo.png"
alt=
"mws admin"
/>
</div>
</div>
<div
id=
"mws-user-tools"
class=
"clearfix"
>
<div
id=
"mws-user-info"
class=
"mws-inset"
>
<div
id=
"mws-user-photo"
>
<img
src=
"images/profile.jpg"
alt=
"User Photo"
/>
</div>
<div
id=
"mws-user-functions"
>
<div
id=
"mws-username"
>
Hello, Duiba Tester
</div>
<ul>
<li><a
href=
"#"
>
Profile
</a></li>
<li><a
href=
"#"
>
Change Password
</a></li>
<li><a
href=
"index.html"
>
Logout
</a></li>
</ul>
</div>
</div>
</div>
</div>
<div
id=
"mws-wrapper"
>
<div
id=
"mws-sidebar-stitch"
></div>
<div
id=
"mws-sidebar-bg"
></div>
<div
id=
"mws-sidebar"
>
<div
id=
"mws-searchbox"
class=
"mws-inset"
>
<form
action=
"http://www.malijuwebshop.com/themes/mws-admin/charts.html"
>
<input
type=
"text"
class=
"mws-search-input"
/>
<input
type=
"submit"
class=
"mws-search-submit"
/>
</form>
</div>
<div
id=
"mws-navigation"
>
<ul>
<li><a
href=
"dashboard.html"
class=
"mws-i-24 i-home"
>
主页
</a></li>
<li><a
href=
"http://172.16.80.141:9999"
class=
"mws-i-24 i-chart"
target=
'_BLANK'
>
代理工具
</a></li>
<li><a
href=
"encoder.html"
class=
"mws-i-24 i-cog"
>
转码工具
</a></li>
<li><a
href=
"bury.html"
class=
"mws-i-24 i-eyedropper"
>
埋点工具
</a></li>
<li
class=
"active"
>
<a
href=
"#"
class=
"mws-i-24 i-iphone-4"
>
积分商城助手
</a>
<ul>
<li><a
href=
"#"
>
生成免登链接
</a></li>
</ul>
</li>
<li>
<a
href=
"#"
class=
"mws-i-24 i-day-calendar"
>
签到助手
</a>
<ul>
<li><a
href=
"sign.html"
>
连续签到模拟
</a></li>
<li><a
href=
"http://172.16.80.141:8088/"
target=
'_BLANK'
>
签到模拟集合
</a></li>
</ul>
</li>
<li>
<a
href=
"#"
class=
"mws-i-24 i-dribbble-4"
>
活动助手
</a>
<ul>
<li><a
href=
"package.html"
>
开发者测试包
</a></li>
<li><a
href=
"activity.html"
>
自定义活动
</a></li>
<li><a
href=
"CardCommon.html"
>
集卡通用配置
</a></li>
<li><a
href=
"CollectCard.html"
>
助力集卡模拟
</a></li>
<li><a
href=
"red.html"
>
猜红包系列
</a></li>
</ul>
</li>
<li>
<a
href=
"#"
class=
"mws-i-24 i-table-1"
>
自动化统计
</a>
<ul>
<li><a
href=
"AutoTable.html"
>
运行记录
</a></li>
<li><a
href=
"http://101.37.27.82:8080/index"
target=
'_BLANK'
>
统计详情
</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div
id=
"mws-container"
class=
"clearfix"
>
<div
class=
"container"
>
<div
class=
"mws-panel grid_4"
>
<div
class=
"mws-panel-header"
>
<span
class=
"mws-i-24 i-link"
>
生成免登链接
</span>
</div>
<div
class=
"mws-panel-body"
>
<form
class=
"mws-form"
>
<div
class=
"mws-form-inline"
>
<div
class=
"mws-form-row"
>
<label>
设置级别
</label>
<select
onchange=
"selectOnchang(this)"
name=
"action"
id=
"level"
>
<option
value=
"1"
>
普通设置
</option>
<option
value=
"2"
>
高级设置
</option>
</select>
</div>
<div
class=
"mws-form-row"
>
<label>
AppKey
</label>
<div
class=
"mws-form-item small"
>
<input
type=
"text"
class=
"mws-textinput"
name=
"appkey"
placeholder=
"不填默认大富翁AppKey"
id=
"appkey"
/>
</div>
</div>
<div
class=
"mws-form-row"
>
<label>
App Secret
</label>
<div
class=
"mws-form-item small"
>
<input
type=
"text"
class=
"mws-textinput"
name=
"appkey"
placeholder=
"不填默认大富翁App Secret"
id=
"appsecret"
/>
</div>
</div>
<div
class=
"mws-form-row"
>
<label>
用户id
</label>
<div
class=
"mws-form-item small"
>
<input
type=
"number"
class=
"mws-textinput"
name=
"user_id"
placeholder=
"partner_user_id"
id=
"userId"
/>
</div>
</div>
<div
class=
"mws-form-row"
>
<label>
积分
</label>
<div
class=
"mws-form-item small"
>
<input
type=
"number"
class=
"mws-textinput"
name=
"appkey"
placeholder=
"不填默认积分为0"
id=
"credits"
/>
</div>
</div>
<div
class=
"mws-form-row"
>
<label>
dcustom(非必填)
</label>
<div
class=
"mws-form-item small"
>
<input
type=
"text"
class=
"mws-textinput"
name=
"appkey"
placeholder=
"如:nickname=tom&newUser=false"
id=
"dcustom"
/>
</div>
</div>
<div
class=
"mws-form-row"
>
<label>
transfer(非必填)
</label>
<div
class=
"mws-form-item small"
>
<input
type=
"text"
class=
"mws-textinput"
name=
"appkey"
id=
"transfer"
/>
</div>
</div>
<div
class=
"mws-form-row"
id=
"line"
style=
"display:none"
>
<label>
===================高级设置===================
</label>
</div>
<div
class=
"mws-form-row"
id=
"redirect_v"
style=
"display:none"
>
<label>
redirect(非必填)
</label>
<div
class=
"mws-form-item small"
>
<input
type=
"text"
class=
"mws-textinput"
name=
"redirect"
id=
"redirect"
/>
</div>
</div>
<div
class=
"mws-form-row"
id=
"phone_v"
style=
"display:none"
>
<label>
电话号码(非必填)
</label>
<div
class=
"mws-form-item small"
>
<input
type=
"number"
class=
"mws-textinput"
name=
"appkey"
id=
"phone"
/>
</div>
</div>
<div
class=
"mws-form-row"
id=
"alipay_v"
style=
"display:none"
>
<label>
支付宝(非必填)
</label>
<div
class=
"mws-form-item small"
>
<input
type=
"text"
class=
"mws-textinput"
name=
"appkey"
id=
"alipay"
/>
</div>
</div>
<div
class=
"mws-form-row"
id=
"realName_v"
style=
"display:none"
>
<label>
真实姓名(非必填)
</label>
<div
class=
"mws-form-item small"
>
<input
type=
"text"
class=
"mws-textinput"
name=
"appkey"
id=
"realName"
/>
</div>
</div>
<div
class=
"mws-form-row"
id=
"qq_v"
style=
"display:none"
>
<label>
QQ号(非必填)
</label>
<div
class=
"mws-form-item small"
>
<input
type=
"number"
class=
"mws-textinput"
name=
"appkey"
id=
"qq"
/>
</div>
</div>
<div
class=
"mws-form-row"
id=
"vip_v"
style=
"display:none"
>
<label>
vip 等级(非必填)
</label>
<div
class=
"mws-form-item small"
>
<input
type=
"number"
class=
"mws-textinput"
name=
"appkey"
id=
"vip"
/>
</div>
</div>
<div
class=
"mws-form-row"
>
<label>
生成结果
</label>
<div
class=
"mws-form-item large"
>
<textarea
class=
"warning"
rows=
"100%"
cols=
"100%"
readonly=
"readonly"
id=
"result"
style=
"background-color:#ccc"
></textarea>
</div>
</div>
<div
class=
"mws-button-row"
>
<input
type=
"submit"
value=
"生成链接"
class=
"mws-button blue"
id=
"urlLink"
/>
</div>
</div>
</form>
</div>
</div>
<div
id=
"mws-footer"
>
Copyright
©
2014.Company name All rights reserved.More Templates
<a
href=
"http://www.duiba.com.cn/"
target=
"_blank"
title=
"模板之家"
>
兑吧网络科技
</a>
</div>
</div>
</div>
</body>
</html>
webapp/dashboard.html
View file @
a7039a75
...
@@ -286,6 +286,12 @@
...
@@ -286,6 +286,12 @@
<li><a
href=
"http://172.16.80.141:9999"
class=
"mws-i-24 i-chart"
target=
'_BLANK'
>
代理工具
</a></li>
<li><a
href=
"http://172.16.80.141:9999"
class=
"mws-i-24 i-chart"
target=
'_BLANK'
>
代理工具
</a></li>
<li><a
href=
"encoder.html"
class=
"mws-i-24 i-cog"
>
转码工具
</a></li>
<li><a
href=
"encoder.html"
class=
"mws-i-24 i-cog"
>
转码工具
</a></li>
<li><a
href=
"bury.html"
class=
"mws-i-24 i-eyedropper"
>
埋点工具
</a></li>
<li><a
href=
"bury.html"
class=
"mws-i-24 i-eyedropper"
>
埋点工具
</a></li>
<li>
<a
href=
"#"
class=
"mws-i-24 i-iphone-4"
>
积分商城助手
</a>
<ul>
<li><a
href=
"creatUrl.html"
>
生成免登链接
</a></li>
</ul>
</li>
<li>
<li>
<a
href=
"#"
class=
"mws-i-24 i-day-calendar"
>
签到助手
</a>
<a
href=
"#"
class=
"mws-i-24 i-day-calendar"
>
签到助手
</a>
<ul>
<ul>
...
@@ -294,7 +300,7 @@
...
@@ -294,7 +300,7 @@
</ul>
</ul>
</li>
</li>
<li>
<li>
<a
href=
"#"
class=
"mws-i-24 i-
list
"
>
活动助手
</a>
<a
href=
"#"
class=
"mws-i-24 i-
dribbble-4
"
>
活动助手
</a>
<ul>
<ul>
<li><a
href=
"package.html"
>
开发者测试包
</a></li>
<li><a
href=
"package.html"
>
开发者测试包
</a></li>
<li><a
href=
"activity.html"
>
自定义活动
</a></li>
<li><a
href=
"activity.html"
>
自定义活动
</a></li>
...
...
webapp/encoder.html
View file @
a7039a75
...
@@ -303,6 +303,12 @@
...
@@ -303,6 +303,12 @@
<li><a
href=
"http://172.16.80.141:9999"
class=
"mws-i-24 i-chart"
target=
'_BLANK'
>
代理工具
</a></li>
<li><a
href=
"http://172.16.80.141:9999"
class=
"mws-i-24 i-chart"
target=
'_BLANK'
>
代理工具
</a></li>
<li
class=
"active"
><a
href=
"#"
class=
"mws-i-24 i-cog"
>
转码工具
</a></li>
<li
class=
"active"
><a
href=
"#"
class=
"mws-i-24 i-cog"
>
转码工具
</a></li>
<li><a
href=
"bury.html"
class=
"mws-i-24 i-eyedropper"
>
埋点工具
</a></li>
<li><a
href=
"bury.html"
class=
"mws-i-24 i-eyedropper"
>
埋点工具
</a></li>
<li>
<a
href=
"#"
class=
"mws-i-24 i-iphone-4"
>
积分商城助手
</a>
<ul>
<li><a
href=
"creatUrl.html"
>
生成免登链接
</a></li>
</ul>
</li>
<li>
<li>
<a
href=
"#"
class=
"mws-i-24 i-day-calendar"
>
签到助手
</a>
<a
href=
"#"
class=
"mws-i-24 i-day-calendar"
>
签到助手
</a>
<ul>
<ul>
...
@@ -311,7 +317,7 @@
...
@@ -311,7 +317,7 @@
</ul>
</ul>
</li>
</li>
<li>
<li>
<a
href=
"#"
class=
"mws-i-24 i-
list
"
>
活动助手
</a>
<a
href=
"#"
class=
"mws-i-24 i-
dribbble-4
"
>
活动助手
</a>
<ul>
<ul>
<li><a
href=
"package.html"
>
开发者测试包
</a></li>
<li><a
href=
"package.html"
>
开发者测试包
</a></li>
<li><a
href=
"activity.html"
>
自定义活动
</a></li>
<li><a
href=
"activity.html"
>
自定义活动
</a></li>
...
...
webapp/package.html
View file @
a7039a75
...
@@ -286,6 +286,12 @@
...
@@ -286,6 +286,12 @@
<li><a
href=
"http://172.16.80.141:9999"
class=
"mws-i-24 i-chart"
target=
'_BLANK'
>
代理工具
</a></li>
<li><a
href=
"http://172.16.80.141:9999"
class=
"mws-i-24 i-chart"
target=
'_BLANK'
>
代理工具
</a></li>
<li><a
href=
"encoder.html"
class=
"mws-i-24 i-cog"
>
转码工具
</a></li>
<li><a
href=
"encoder.html"
class=
"mws-i-24 i-cog"
>
转码工具
</a></li>
<li><a
href=
"bury.html"
class=
"mws-i-24 i-eyedropper"
>
埋点工具
</a></li>
<li><a
href=
"bury.html"
class=
"mws-i-24 i-eyedropper"
>
埋点工具
</a></li>
<li>
<a
href=
"#"
class=
"mws-i-24 i-iphone-4"
>
积分商城助手
</a>
<ul>
<li><a
href=
"creatUrl.html"
>
生成免登链接
</a></li>
</ul>
</li>
<li>
<li>
<a
href=
"#"
class=
"mws-i-24 i-day-calendar"
>
签到助手
</a>
<a
href=
"#"
class=
"mws-i-24 i-day-calendar"
>
签到助手
</a>
<ul>
<ul>
...
@@ -294,7 +300,7 @@
...
@@ -294,7 +300,7 @@
</ul>
</ul>
</li>
</li>
<li>
<li>
<a
href=
"#"
class=
"mws-i-24 i-
list
"
>
活动助手
</a>
<a
href=
"#"
class=
"mws-i-24 i-
dribbble-4
"
>
活动助手
</a>
<ul>
<ul>
<li><a
href=
"package.html"
>
开发者测试包
</a></li>
<li><a
href=
"package.html"
>
开发者测试包
</a></li>
<li><a
href=
"activity.html"
>
自定义活动
</a></li>
<li><a
href=
"activity.html"
>
自定义活动
</a></li>
...
...
webapp/red.html
View file @
a7039a75
...
@@ -219,6 +219,12 @@ $(document).ready(function(){
...
@@ -219,6 +219,12 @@ $(document).ready(function(){
<li><a
href=
"http://172.16.80.141:9999"
class=
"mws-i-24 i-chart"
target=
'_BLANK'
>
代理工具
</a></li>
<li><a
href=
"http://172.16.80.141:9999"
class=
"mws-i-24 i-chart"
target=
'_BLANK'
>
代理工具
</a></li>
<li><a
href=
"encoder.html"
class=
"mws-i-24 i-cog"
>
转码工具
</a></li>
<li><a
href=
"encoder.html"
class=
"mws-i-24 i-cog"
>
转码工具
</a></li>
<li><a
href=
"bury.html"
class=
"mws-i-24 i-eyedropper"
>
埋点工具
</a></li>
<li><a
href=
"bury.html"
class=
"mws-i-24 i-eyedropper"
>
埋点工具
</a></li>
<li>
<a
href=
"#"
class=
"mws-i-24 i-iphone-4"
>
积分商城助手
</a>
<ul>
<li><a
href=
"creatUrl.html"
>
生成免登链接
</a></li>
</ul>
</li>
<li>
<li>
<a
href=
"#"
class=
"mws-i-24 i-day-calendar"
>
签到助手
</a>
<a
href=
"#"
class=
"mws-i-24 i-day-calendar"
>
签到助手
</a>
<ul>
<ul>
...
@@ -227,7 +233,7 @@ $(document).ready(function(){
...
@@ -227,7 +233,7 @@ $(document).ready(function(){
</ul>
</ul>
</li>
</li>
<li
class=
"active"
>
<li
class=
"active"
>
<a
href=
"#"
class=
"mws-i-24 i-
list
"
>
活动助手
</a>
<a
href=
"#"
class=
"mws-i-24 i-
dribbble-4
"
>
活动助手
</a>
<ul>
<ul>
<li><a
href=
"package.html"
>
开发者测试包
</a></li>
<li><a
href=
"package.html"
>
开发者测试包
</a></li>
<li><a
href=
"activity.html"
>
自定义活动
</a></li>
<li><a
href=
"activity.html"
>
自定义活动
</a></li>
...
...
webapp/sign.html
View file @
a7039a75
...
@@ -255,6 +255,12 @@
...
@@ -255,6 +255,12 @@
<li><a
href=
"http://172.16.80.141:9999"
class=
"mws-i-24 i-chart"
target=
'_BLANK'
>
代理工具
</a></li>
<li><a
href=
"http://172.16.80.141:9999"
class=
"mws-i-24 i-chart"
target=
'_BLANK'
>
代理工具
</a></li>
<li><a
href=
"encoder.html"
class=
"mws-i-24 i-cog"
>
转码工具
</a></li>
<li><a
href=
"encoder.html"
class=
"mws-i-24 i-cog"
>
转码工具
</a></li>
<li><a
href=
"bury.html"
class=
"mws-i-24 i-eyedropper"
>
埋点工具
</a></li>
<li><a
href=
"bury.html"
class=
"mws-i-24 i-eyedropper"
>
埋点工具
</a></li>
<li>
<a
href=
"#"
class=
"mws-i-24 i-iphone-4"
>
积分商城助手
</a>
<ul>
<li><a
href=
"creatUrl.html"
>
生成免登链接
</a></li>
</ul>
</li>
<li
class=
"active"
>
<li
class=
"active"
>
<a
href=
"#"
class=
"mws-i-24 i-day-calendar"
>
签到助手
</a>
<a
href=
"#"
class=
"mws-i-24 i-day-calendar"
>
签到助手
</a>
<ul>
<ul>
...
@@ -263,7 +269,7 @@
...
@@ -263,7 +269,7 @@
</ul>
</ul>
</li>
</li>
<li>
<li>
<a
href=
"#"
class=
"mws-i-24 i-
list
"
>
活动助手
</a>
<a
href=
"#"
class=
"mws-i-24 i-
dribbble-4
"
>
活动助手
</a>
<ul>
<ul>
<li><a
href=
"package.html"
>
开发者测试包
</a></li>
<li><a
href=
"package.html"
>
开发者测试包
</a></li>
<li><a
href=
"activity.html"
>
自定义活动
</a></li>
<li><a
href=
"activity.html"
>
自定义活动
</a></li>
...
...
webapp/success.html
View file @
a7039a75
...
@@ -253,6 +253,12 @@
...
@@ -253,6 +253,12 @@
<li><a
href=
"http://172.16.80.141:9999"
class=
"mws-i-24 i-chart"
target=
'_BLANK'
>
代理工具
</a></li>
<li><a
href=
"http://172.16.80.141:9999"
class=
"mws-i-24 i-chart"
target=
'_BLANK'
>
代理工具
</a></li>
<li><a
href=
"encoder.html"
class=
"mws-i-24 i-cog"
>
转码工具
</a></li>
<li><a
href=
"encoder.html"
class=
"mws-i-24 i-cog"
>
转码工具
</a></li>
<li><a
href=
"bury.html"
class=
"mws-i-24 i-eyedropper"
>
埋点工具
</a></li>
<li><a
href=
"bury.html"
class=
"mws-i-24 i-eyedropper"
>
埋点工具
</a></li>
<li>
<a
href=
"#"
class=
"mws-i-24 i-iphone-4"
>
积分商城助手
</a>
<ul>
<li><a
href=
"creatUrl.html"
>
生成免登链接
</a></li>
</ul>
</li>
<li>
<li>
<a
href=
"#"
class=
"mws-i-24 i-day-calendar"
>
签到助手
</a>
<a
href=
"#"
class=
"mws-i-24 i-day-calendar"
>
签到助手
</a>
<ul>
<ul>
...
@@ -261,7 +267,7 @@
...
@@ -261,7 +267,7 @@
</ul>
</ul>
</li>
</li>
<li>
<li>
<a
href=
"#"
class=
"mws-i-24 i-
list
"
>
活动助手
</a>
<a
href=
"#"
class=
"mws-i-24 i-
dribbble-4
"
>
活动助手
</a>
<ul>
<ul>
<li><a
href=
"package.html"
>
开发者测试包
</a></li>
<li><a
href=
"package.html"
>
开发者测试包
</a></li>
<li><a
href=
"activity.html"
>
自定义活动
</a></li>
<li><a
href=
"activity.html"
>
自定义活动
</a></li>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment