Elizabeth's proactive approach involves introducing urinal toilet attachment , an ingenious concept that optimizes space and functionality.

signIn.vue 4.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. <template>
  2. <div class="app-container">
  3. <div class="page_signIn">
  4. <div class="signInTitle">
  5. <div>唐山朝阳医院</div>
  6. <div>2020.8.18 07:22(星期四)</div>
  7. </div>
  8. <div class="signInMain">
  9. <div style="display: flex;justify-content: space-between;padding:10px;">
  10. <div class="signInMainLeft">
  11. <div class="signInMainLeftTitle">
  12. <p>排号</p>
  13. <p>姓名</p>
  14. <p>病历号</p>
  15. <p>签到时间</p>
  16. </div>
  17. <div class="signInList">
  18. <div class="signInListOne" v-for="item in 12" :key="item">
  19. <p>P13</p>
  20. <p>张*等</p>
  21. <p>001</p>
  22. <p>09:01:00</p>
  23. </div>
  24. </div>
  25. </div>
  26. <div class="signInMainRight">
  27. <div class="signInMainRightTitle"><span style="margin:0 auto;">张三</span></div>
  28. <div class="signInMainRightContent">
  29. <p style="margin: 0 auto;display:flex;align-items: center;"><span>排号&nbsp;&nbsp;</span><span style="font-size:120px;">P06</span></p>
  30. </div>
  31. <div class="signInMianRightBottom"><span style="margin:0 auto;">签到成功</span></div>
  32. </div>
  33. </div>
  34. <div class="signInTip">
  35. 温馨提示:请注意排队叫号,依次叫号就诊上机,谢谢配合
  36. </div>
  37. </div>
  38. </div>
  39. </div>
  40. </template>
  41. <style lang="scss" scoped>
  42. .page_signIn{
  43. .signInTitle{
  44. height: 50px;
  45. background: #1A82BF;
  46. display: flex;
  47. justify-content: space-between;
  48. align-items: center;
  49. padding: 0 20px;
  50. color:#fff;
  51. font-size: 20px;
  52. font-weight: 600;
  53. }
  54. .signInMain{
  55. background: linear-gradient(0deg, #76ECEC, #479CD2);
  56. height: 600px;
  57. }
  58. .signInMainLeft{
  59. width:65%;
  60. height: 530px;
  61. border-radius: 15px;
  62. }
  63. .signInMainLeftTitle{
  64. display: flex;
  65. justify-content: space-between;
  66. align-items: center;
  67. color:#fff;
  68. font-size: 18px;
  69. font-weight: 600;
  70. height:50px;
  71. background: #1A82BF;
  72. border-radius: 15px 15px 0 0;
  73. >p{
  74. width:25%;
  75. text-align: center;
  76. }
  77. }
  78. .signInList{
  79. font-size: 18px;
  80. font-weight: 600;
  81. >div:nth-child(odd){
  82. background: #F9FDFF;
  83. }
  84. >div:nth-child(even){
  85. background: #CCEBFF;
  86. }
  87. >div:last-child{
  88. border-radius: 0 0 15px 15px;
  89. }
  90. .signInListOne{
  91. height:40px;
  92. display: flex;
  93. justify-content: space-between;
  94. align-items: center;
  95. color:#1C6895;
  96. >p{
  97. width:25%;
  98. text-align: center;
  99. }
  100. }
  101. }
  102. .signInMainRight{
  103. width: 34%;
  104. height: 530px;
  105. }
  106. .signInMainRightTitle{
  107. height: 130px;
  108. border-radius: 15px 15px 0 0;
  109. background: #1A82BF;
  110. font-size: 80px;
  111. font-weight: 600;
  112. color:#fff;
  113. display: flex;
  114. align-items: center;
  115. justify-content: space-between;
  116. }
  117. .signInMainRightContent{
  118. background: #F9FDFF;
  119. height: 300px;
  120. text-align: center;
  121. font-weight: 600;
  122. color:#1C6895;
  123. box-sizing: border-box;
  124. font-size:70px;
  125. display:flex;
  126. align-items:center;
  127. }
  128. .signInMianRightBottom{
  129. height: 100px;
  130. background: #1A82BF;
  131. border-radius: 0 0 15px 15px;
  132. font-size: 40px;
  133. font-weight: 600;
  134. color:#fff;
  135. display: flex;
  136. justify-content: space-between;
  137. align-items: center;
  138. }
  139. .signInTip{
  140. color:#fff;
  141. font-size: 18px;
  142. font-weight: 600;
  143. display: flex;
  144. align-items: center;
  145. height: 50px;
  146. background: linear-gradient(0deg, #42A9E7, #3686B9, #42A9E7);
  147. margin-top: 1px;
  148. }
  149. }
  150. </style>