index.html 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <title>index.html</title>
  6. <script src="Scripts/jquery/jquery.min.js"></script>
  7. <script src="Scripts/util/lith.js"></script>
  8. <script type="text/javascript">
  9. var user = lith.document.url_GetArg('user');
  10. if (user) {
  11. var date = new Date();
  12. date.setSeconds(date.getSeconds() + 3600);
  13. lith.cookie.set('user', user, date);
  14. }
  15. </script>
  16. <style type="text/css">
  17. a {
  18. text-decoration: none;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. login: <a href="index.html?user=admin_123456">login</a> <br />
  24. 1.ServiceCenterHealth:<a target="_blank" href="ServiceCenterHealth.html">ServiceCenterHealth</a> <br />
  25. 2.ApiDoc: <a target="_blank" href="ActiveApiDoc.html?r=_gover_">ActiveApiDoc</a> <a target="_blank" href="ApiDoc.html?r=_gover_">ApiDoc</a> <br />
  26. 3.ApiStationMng: <a target="_blank" href="ApiStationMng.html">ApiStationMng</a> <br />
  27. 4.ServiceStationMng:<a target="_blank" href="ServiceStationMng.html">ServiceStationMng</a> <br />
  28. 5.服务限流: <a target="_blank" href="RateLimitMng.html">RateLimitMng</a><br />
  29. 6.robot: <a target="_blank" href="/_robot_/TaskMng.html">robot-TaskMng</a><br />
  30. 7.MicroControl: <a target="_blank" href="/MicroControl/mc.html">MicroControl</a><br />
  31. 8.JsStation: <a target="_blank" href="/JsStation/JsStation.html">JsStation</a>
  32. </body>
  33. </html>