index.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8" />
  5. <title>x_component_assemble_control_jest</title>
  6. <script src="./common.js"></script>
  7. <script src="./jquery.js"></script>
  8. <script src="./component.js"></script>
  9. <script src="./status.js"></script>
  10. <script>
  11. $(document).ready(function() {
  12. status_list();
  13. });
  14. </script>
  15. </head>
  16. <body style="margin: 0; font-size: 1.0em; font-family: Microsoft Yahei">
  17. <div id="container" style="width: 1000px; margin: 0 auto;">
  18. <div id="header"
  19. style="background-color: #4682B4; clear: both; text-align: center;">
  20. x_component_assemble_control_jest
  21. </div>
  22. <div id="menu"
  23. style="background-color: #B0E0E6; height: 950px; width: 280px; float: left;">
  24. <ul>
  25. <li>Status
  26. <ul>
  27. <li><a onclick="status_list()" href="#">List</a></li>
  28. </ul>
  29. </li>
  30. <li>Component
  31. <ul>
  32. <li><a onclick="component_listAll()" href="#">List All</a></li>
  33. <li><a onclick="component_create()" href="#">Create</a></li>
  34. </ul>
  35. </li>
  36. </ul>
  37. </div>
  38. <div style="float: left; width: 720px;">
  39. <div id="content" style="width: 100%;">&nbsp;</div>
  40. <div id="result"
  41. style="width: 100%; white-space: pre; font-size: 10px; word-break: break-all; word-wrap: break-word;">
  42. &nbsp;</div>
  43. </div>
  44. <div id="footer"
  45. style="background-color: #4682B4; clear: both; text-align: center; display: none">
  46. Copyright © x</div>
  47. </div>
  48. </body>
  49. </html>