member.html 4.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title></title>
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  7. <script type="text/javascript" src="../../commons/js/business-all.js"></script>
  8. <script type="text/javascript" src="js/member.js"></script>
  9. <style type='text/css'>
  10. .mt6{
  11. overflow-y: auto;
  12. overflow-x: hidden;
  13. margin-top: 5px;
  14. margin-left: 12px;
  15. padding-top: -2px;
  16. padding-bottom: 5px;
  17. }
  18. </style>
  19. </head>
  20. <body onload="$('#loading-mask').fadeOut('slow');">
  21. <div id="loading-mask"
  22. style="position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; background: #D2E0F2; z-index: 20000">
  23. <div id="pageloading"
  24. style="position: absolute; top: 50%; left: 50%; margin: -120px 0px 0px -120px; text-align: center; width:200px; border:1px solid #a6bccb; background-color:#fff;padding: 10px; background: #fff; color: #555;">
  25. <img src="../../commons/images/loading.gif" align="absmiddle" />
  26. 正在加载中,请稍候...
  27. </div>
  28. </div>
  29. <div class="container-wrap">
  30. <div class="main-header" style="top:0px; left: 0px;">
  31. <ul class="clearfix">
  32. <li><span><a href="javascript:void(0);" class="curr">用户信息管理</a></span></li>
  33. </ul>
  34. </div>
  35. <div class="scroll-pane jspScrollable">
  36. <div class="container">
  37. <div class="p10">
  38. <div class="querybar clearfix" style="margin-left:10px;">
  39. <table class="table-form pop-manage-form">
  40. <tr>
  41. <td>
  42. <label class="fl mr10">姓名</label>
  43. <input type="text" id="userName" class="fl text w115 mr20">
  44. <label class="fl mr10">身份证号</label>
  45. <input type="text" id="identity" class="fl text w115 mr20">
  46. <label class="fl mr10">就诊卡号</label>
  47. <input type="text" id="clinicCard" class="fl text w115 mr20">
  48. <a href="javascript:;" class="btn btn-gray" id="queryBut" onclick="member_loadDataGrid(1);">查询</a>
  49. </td>
  50. </tr>
  51. </table>
  52. </div>
  53. </div>
  54. <div class="info-record-table">
  55. <table class="tb" width="100%" >
  56. <tr >
  57. <th>姓名</th>
  58. <th>身份证号</th>
  59. <th>就诊卡号</th>
  60. <th>手机号</th>
  61. </tr>
  62. </table>
  63. <div class="mt6">
  64. <table class="tb" width="100%" style="margin-top:0;" id="memberInfo">
  65. <tr style="display: none;" >
  66. <th>姓名</th>
  67. <th>身份证号</th>
  68. <th>就诊卡号</th>
  69. <th>手机号</th>
  70. </tr>
  71. </table>
  72. </div>
  73. </div>
  74. <div class="pager_container" >
  75. <input id="totalcount" type="hidden" value="0" />
  76. <input id="pagenumber" type="hidden" value="1" />
  77. <div id="pager"></div>
  78. </div>
  79. <div class="mobile-box" style="display:none">
  80. <table class="table-form mt10">
  81. <tr>
  82. <td class="t">
  83. <sub>&lowast;</sub> 手机号
  84. </td>
  85. <td>
  86. <input type="text" class="text w250" id="newMobile" />
  87. </td>
  88. </tr>
  89. <tr>
  90. </table>
  91. </div>
  92. </div>
  93. </div>
  94. </div>
  95. </body>
  96. </html>