pharmacy-cell.html 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. <link rel="stylesheet" href="/thmz/css/bootstrap/css/bootstrap-select.css"/>
  2. <link rel="stylesheet" href="/thmz/css/bootstrap/css/daterangepicker.css"/>
  3. <link rel="stylesheet" href="/thmz/css/custom.min.css"/>
  4. <link rel="stylesheet" href="/thmz/css/toll_administration.css"/>
  5. <script src="/thmz/js/dependent/bootstrap-select.js"></script>
  6. <script src="/thmz/js/dependent/jquery.thooClock.js"></script>
  7. <script src="/thmz/js/common/pharmacy-com.js"></script>
  8. <script src="/thmz/js/common/socket-com.js"></script>
  9. <script src="/thmz/js/mz/pharmacy-cell.js"></script>
  10. <title>发药提醒</title>
  11. <style>
  12. tr {
  13. /*height: 100px;*/
  14. font-size: 40px;
  15. letter-spacing: 8px;
  16. font-family: sans-serif;
  17. }
  18. .table.table-bordered > tr > td {
  19. height: 88px;
  20. max-height: 88px;
  21. }
  22. #fulldiv {
  23. background: url('/thmz/images/back.png')no-repeat;
  24. background-size: cover;
  25. width: 100%;
  26. text-align: center;
  27. height: 100%;
  28. }
  29. .button-click {
  30. width: 380px;
  31. height: 260px;
  32. border-radius: 20px;
  33. border: 0px;
  34. opacity: 0.9;
  35. }
  36. .title {
  37. line-height: 60px;
  38. font-weight: bold;
  39. font-family: cursive;
  40. font-size: 38px;
  41. border-radius: 50px;
  42. color: aliceblue;
  43. background: linear-gradient(rgb(65, 178, 15), rgb(31, 95, 4))
  44. }
  45. </style>
  46. <div class="row" id="fulldiv">
  47. <div class="col-md-12 col-sm-12 col-xs-12">
  48. <div>
  49. <div class="panel-body">
  50. </div>
  51. <div class="row" id="showDiv">
  52. <div style="display: flex">
  53. <div class="col-md-3 col-sm-3 col-xs-12" style="width: 300px">
  54. <img src="/thmz/images/logo.png" style="object-fit: cover;width: 300px;"/>
  55. </div>
  56. <div class="col-md-9 col-sm-9" style="border-bottom: 6px solid #8ADCA3;height: 100px;padding-top: 10px;">
  57. <div class="col-md-6 col-sm-6">
  58. <h1 class="title">&nbsp;发药排队&nbsp;</h1></div>
  59. <div class="col-md-6 col-sm-6 col-xs-12">
  60. <div style="text-align: right;padding-right: 30px;font-family: fantasy;">
  61. <span style="font-size: 24px;" id="timeNow"></span><br>
  62. <span style="font-size: 24px;" id="dateNow"></span>
  63. </div>
  64. </div>
  65. </div>
  66. </div>
  67. <div style="margin-top: 200px;">
  68. <!-- <button type="button" id="btn_med_in_cert" class="btn btn-primary button-click"-->
  69. <!-- style="background: url('/thmz/images/ybpz1.png')no-repeat;margin-left: 50px;cursor:pointer"-->
  70. <!-- title="医保凭证">-->
  71. <!-- </button>-->
  72. <button type="button" id="btn_patient_id" class="btn btn-primary button-click"
  73. style="background: url('/thmz/images/mzhtm.png')no-repeat;margin-left: 50px;cursor:pointer"
  74. title="门诊号条码">
  75. </button>
  76. </div>
  77. </div>
  78. </div>
  79. </div>
  80. <!--病人门诊ID扫码弹窗开始-->
  81. <div class="modal fade bs-example-modal-lg" tabindex="-1" role="dialog" aria-hidden="true" id="showModal">
  82. <div class="modal-dialog modal-lg">
  83. <div class="modal-content"
  84. style="position: relative;width: 620px;height:350px;margin-left: 150px;margin-top: 250px;background: url('/thmz/images/scanningCode.jpg');">
  85. <div class="modal-body" style="position: absolute;right: 0;bottom: 0;">
  86. <input id="patientId" type='text' style="background: rgb(46,100,234);border: rgb(46,100,234);" inputmode="none"/>
  87. </div>
  88. </div>
  89. </div>
  90. </div>
  91. <!--病人门诊ID扫码弹窗结尾-->
  92. <!--错误弹窗开始-->
  93. <div class="modal fade bs-example-modal-lg" tabindex="-1" role="dialog" aria-hidden="true" id="showErrorModal">
  94. <div class="modal-dialog modal-lg">
  95. <div class="modal-content"
  96. style="width: 500px;height:70px;margin-left: 230px;margin-top: 150px;background-color: red;opacity: 0.7;">
  97. <div class="modal-body" style="font-size: 28px;font-weight: bold;">
  98. <span id="errorText">排队失败,未找到待取药的处方</span>
  99. </div>
  100. </div>
  101. </div>
  102. </div>
  103. <!--错误弹窗结尾-->
  104. <!--成功弹窗开始-->
  105. <div class="modal fade bs-example-modal-lg" tabindex="-1" role="dialog" aria-hidden="true" id="showSuccessModal">
  106. <div class="modal-dialog modal-lg">
  107. <div class="modal-content"
  108. style="width: 500px;height:70px;margin-left: 230px;margin-top: 150px;background-color: green;opacity: 0.7;">
  109. <div class="modal-body" style="font-size: 28px;font-weight: bold;">
  110. <span id="successText">排队成功,请等待叫号</span>
  111. </div>
  112. </div>
  113. </div>
  114. </div>
  115. <!--成功弹窗结尾-->
  116. <!--错误弹窗开始-->
  117. <div class="modal fade bs-example-modal-lg" tabindex="-1" role="dialog" aria-hidden="true" id="showErrorMsg">
  118. <div class="modal-dialog modal-lg">
  119. <div class="modal-content"
  120. style="width: 500px;height:70px;margin-left: 230px;margin-top: 150px;background-color: red;opacity: 0.7;">
  121. <div class="modal-body" style="font-size: 28px;font-weight: bold;">
  122. <span id="errorMessage"></span>
  123. </div>
  124. </div>
  125. </div>
  126. </div>
  127. <!--错误弹窗结尾-->
  128. </div>