郑州第一人民医院UI

widgets.html 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <!DOCTYPE html>
  2. <html lang="zh">
  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>首页</title>
  8. <!--[if lt IE 10]>
  9. <script>
  10. window.location.href = './ieTips.html';
  11. </script>
  12. <![endif]-->
  13. <script src="./Script/Common/huayi.load.js"></script>
  14. <script src="./Script/Common/huayi.config.js"></script>
  15. <link rel="stylesheet" href="css/animate.min.css" />
  16. <link rel="stylesheet" href="css/bootstrap.min.css" />
  17. <style>
  18. .home_page {
  19. width: 298px;
  20. margin: 20% auto 0 auto;
  21. text-align: center;
  22. color: #333333;
  23. }
  24. .home_page img {
  25. width: 298px;
  26. height: 94px;
  27. }
  28. .home_page h1 {
  29. font-size: 14px;
  30. margin-top: 26px;
  31. margin-bottom: 18px;
  32. }
  33. .home_page p {
  34. font-size: 12px;
  35. padding: 0;
  36. margin: 0;
  37. }
  38. .home_page p a {
  39. color: #249fea;
  40. }
  41. </style>
  42. </head>
  43. <body>
  44. <div class="container animated fadeInRight">
  45. <div class="home_page">
  46. <img src="img/hom_page_img.png" alt="图片" />
  47. <h1>郑州市第一人民医院</h1>
  48. <!--<p>
  49. 联系我们请咨询
  50. &nbsp;&nbsp;<a href="javascript:;">在线客服</a>&nbsp;&nbsp;
  51. 或致电
  52. <a href="javascript:;">400-555-9999</a>
  53. </p>-->
  54. </div>
  55. </div>
  56. </body>
  57. <script language="javascript" type="text/javascript" src="./css/layer/layer.js"></script>
  58. <script>
  59. var $storages = window.localStorage;
  60. $(document).ready(function() {
  61. newOreder()
  62. })
  63. function newOreder() {
  64. $.ajax({
  65. type: "post",
  66. url: huayi.config.callcenter_url + "equipmentapi/api/WoRepairBase/getnopjwocode",
  67. async: true,
  68. dataType: 'json',
  69. success: function(data) {
  70. if (data.state.toLowerCase() == 'success') {
  71. if (data.data.total > 0) {
  72. layer.confirm('你有待评价工单请尽快处理', {
  73. icon: 7,
  74. closeBtn: 0,
  75. btn: ['确定', '取消'], //按钮
  76. });
  77. }
  78. }
  79. }
  80. });
  81. }
  82. </script>
  83. </html>