main.html 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <!DOCTYPE html>
  2. <html lang="zh-cn">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>Document</title>
  8. <script src="../js/min-loader.js"></script>
  9. <style>
  10. .info-box {
  11. height: 85px;
  12. background-color: white;
  13. background-color: #ecf0f5;
  14. }
  15. .info-box .info-box-icon {
  16. border-top-left-radius: 2px;
  17. border-top-right-radius: 0;
  18. border-bottom-right-radius: 0;
  19. border-bottom-left-radius: 2px;
  20. display: block;
  21. float: left;
  22. height: 85px;
  23. width: 85px;
  24. text-align: center;
  25. font-size: 45px;
  26. line-height: 85px;
  27. background: rgba(0, 0, 0, 0.2);
  28. }
  29. .info-box .info-box-content {
  30. padding: 5px 10px;
  31. margin-left: 85px;
  32. }
  33. .info-box .info-box-content .info-box-text {
  34. display: block;
  35. font-size: 14px;
  36. white-space: nowrap;
  37. overflow: hidden;
  38. text-overflow: ellipsis;
  39. text-transform: uppercase;
  40. }
  41. .info-box .info-box-content .info-box-number {
  42. display: block;
  43. font-weight: bold;
  44. font-size: 18px;
  45. }
  46. .major {
  47. font-weight: 10px;
  48. color: #01AAED;
  49. }
  50. .main {
  51. margin-top: 25px;
  52. }
  53. .main .layui-row {
  54. margin: 10px 0;
  55. }
  56. </style>
  57. </head>
  58. <body>
  59. <div class="layui-fluid main">
  60. 欢迎使用系统
  61. </div>
  62. <script>
  63. layui.use('jquery', function() {
  64. var $ = layui.jquery;
  65. $('#test').on('click', function() {
  66. parent.message.show({
  67. skin: 'cyan'
  68. });
  69. });
  70. });
  71. </script>
  72. </body>
  73. </html>