zyjm-layer.html 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="author" content="yihu.com" />
  6. <meta name="format-detection" content="telephone=no" />
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
  8. <meta name="apple-mobile-web-app-capable" content="yes" />
  9. <meta name="apple-mobile-web-app-status-bar-style" content="black" />
  10. <title>转移居民遮罩层</title>
  11. <link rel="stylesheet" href="../../../css/mui.min.css">
  12. <link rel="stylesheet" href="../../../common/cross/css/cross.css" type="text/css" />
  13. <link rel="stylesheet" href="../../../common/cross/css/cross.ui.css" type="text/css" />
  14. <link rel="stylesheet" href="../css/zyjm-layer.css" type="text/css" />
  15. </head>
  16. <body>
  17. <div style="background: rgba(100, 100, 100, 0.3); width: 100%; height: 100%;">
  18. <div class="menu-wrap">
  19. <ul>
  20. <li id="zyqk">转移其全科医生权限居民</li>
  21. <li id="zyjg">转移其健管师权限居民</li>
  22. </ul>
  23. <ul class="cancle-btn">
  24. <li>取消</li>
  25. </ul>
  26. </div>
  27. </div>
  28. <script src="../../../js/jquery/2.1.3/jquery.js" type="text/javascript"></script>
  29. <script src="../../../js/mui.min.js" type="text/javascript"></script>
  30. <script src="../../../js/common_http.js" type="text/javascript"></script>
  31. <script src="../../js/common.js" type="text/javascript"></script>
  32. <script>
  33. var self;
  34. mui.plusReady(function(){
  35. self = plus.webview.currentWebview();
  36. });
  37. function gotoZyjm(type){
  38. mui.openWindow({
  39. id: "zhuanyijumin",
  40. url: "../../search/html/zhuanyijumin.html",
  41. extras: {
  42. level: type,
  43. teamCode: self.teamCode,
  44. docCode: self.docCode,
  45. type:'转移'
  46. }
  47. });
  48. }
  49. $('#zyqk').on('tap', function(){
  50. gotoZyjm(2);
  51. return false;
  52. })
  53. $('#zyjg').on('tap', function(){
  54. gotoZyjm(3);
  55. return false;
  56. })
  57. $('body').on('tap', function(){
  58. mui.back();
  59. })
  60. </script>
  61. </body>
  62. </html>