123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8" />
- <meta name="author" content="yihu.com" />
- <meta name="format-detection" content="telephone=no" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
- <meta name="apple-mobile-web-app-capable" content="yes" />
- <meta name="apple-mobile-web-app-status-bar-style" content="black" />
- <title>转移居民遮罩层</title>
- <link rel="stylesheet" href="../../../css/mui.min.css">
- <link rel="stylesheet" href="../../../common/cross/css/cross.css" type="text/css" />
- <link rel="stylesheet" href="../../../common/cross/css/cross.ui.css" type="text/css" />
- <link rel="stylesheet" href="../css/zyjm-layer.css" type="text/css" />
-
- </head>
- <body>
-
- <div style="background: rgba(100, 100, 100, 0.3); width: 100%; height: 100%;">
-
- <div class="menu-wrap">
-
- <ul>
- <li id="zyqk">转移其全科医生权限居民</li>
- <li id="zyjg">转移其健管师权限居民</li>
- </ul>
-
- <ul class="cancle-btn">
- <li>取消</li>
- </ul>
- </div>
- </div>
-
-
-
- <script src="../../../js/jquery/2.1.3/jquery.js" type="text/javascript"></script>
- <script src="../../../js/mui.min.js" type="text/javascript"></script>
- <script src="../../../js/common_http.js" type="text/javascript"></script>
- <script src="../../js/common.js" type="text/javascript"></script>
-
- <script>
- var self;
- mui.plusReady(function(){
- self = plus.webview.currentWebview();
- });
-
- function gotoZyjm(type){
- mui.openWindow({
- id: "zhuanyijumin",
- url: "../../search/html/zhuanyijumin.html",
- extras: {
- level: type,
- teamCode: self.teamCode,
- docCode: self.docCode,
- type:'转移'
- }
- });
- }
-
- $('#zyqk').on('tap', function(){
- gotoZyjm(2);
- return false;
- })
-
- $('#zyjg').on('tap', function(){
- gotoZyjm(3);
- return false;
- })
-
- $('body').on('tap', function(){
- mui.back();
- })
- </script>
- </body>
- </html>
|