| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <!DOCTYPE html>
- <html lang="zh">
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <meta http-equiv="X-UA-Compatible" content="ie=edge" />
- <title>首页</title>
- <!--[if lt IE 10]>
- <script>
- window.location.href = './ieTips.html';
- </script>
- <![endif]-->
- <script src="./Script/Common/huayi.load.js"></script>
- <script src="./Script/Common/huayi.config.js"></script>
- <link rel="stylesheet" href="css/animate.min.css" />
- <link rel="stylesheet" href="css/bootstrap.min.css" />
- <style>
- .home_page {
- width: 298px;
- margin: 20% auto 0 auto;
- text-align: center;
- color: #333333;
- }
-
- .home_page img {
- width: 298px;
- height: 94px;
- }
-
- .home_page h1 {
- font-size: 14px;
- margin-top: 26px;
- margin-bottom: 18px;
- }
-
- .home_page p {
- font-size: 12px;
- padding: 0;
- margin: 0;
- }
-
- .home_page p a {
- color: #249fea;
- }
- </style>
- </head>
- <body>
- <div class="container animated fadeInRight">
- <div class="home_page">
- <img src="img/hom_page_img.png" alt="图片" />
- <h1>郑州市第一人民医院</h1>
- <!--<p>
- 联系我们请咨询
- <a href="javascript:;">在线客服</a>
- 或致电
- <a href="javascript:;">400-555-9999</a>
- </p>-->
- </div>
- </div>
- </body>
- <script language="javascript" type="text/javascript" src="./css/layer/layer.js"></script>
- <script>
- var $storages = window.localStorage;
- $(document).ready(function() {
- newOreder()
- })
- function newOreder() {
- $.ajax({
- type: "post",
- url: huayi.config.callcenter_url + "equipmentapi/api/WoRepairBase/getnopjwocode",
- async: true,
- dataType: 'json',
- success: function(data) {
- if (data.state.toLowerCase() == 'success') {
- if (data.data.total > 0) {
- layer.confirm('你有待评价工单请尽快处理', {
- icon: 7,
- closeBtn: 0,
- btn: ['确定', '取消'], //按钮
- });
- }
- }
- }
- });
- }
- </script>
- </html>
|