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

called.vue 2.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <template>
  2. <div class="page_called">
  3. <div class="calledOne" v-for="item in 12" :key="item">
  4. <div class="calledOneLeft">
  5. <img src="https://images.shengws.com/201809182128111.png?imageView2/2/w/500/h/500/q/90" alt="">
  6. <div class="name">
  7. <p>吴保龄</p>
  8. <p>
  9. <span class="nameTips">签到时间:07:00:00</span>
  10. <span class="nameTips" v-if="index == 1">床位号:A区5号床</span>
  11. <span class="nameTips" v-else>叫号时间:07:30:00</span>
  12. </p>
  13. <p>
  14. <span class="nameTips">透前体重:59kg</span>
  15. <span class="nameTips lastNameTips">透前血压:120/110mmHg</span>
  16. </p>
  17. </div>
  18. </div>
  19. <div class="calledOneRight" v-if="index == 1">
  20. <img src="../../../assets/img/volume.png" alt="">
  21. </div>
  22. </div>
  23. </div>
  24. </template>
  25. <script>
  26. export default {
  27. props:{
  28. index:Number
  29. },
  30. data(){
  31. return{
  32. }
  33. },
  34. }
  35. </script>
  36. <style lang="scss" scoped>
  37. .page_called{
  38. .calledOne{
  39. border: 1px #e5e5ee solid;
  40. padding: 9px 0;
  41. margin: 0 15px 15px 0;
  42. float: left;
  43. width: 360px;
  44. cursor: pointer;
  45. display: flex;
  46. justify-content: space-between;
  47. align-items: center;
  48. padding: 10px;
  49. .calledOneLeft{
  50. display: flex;
  51. img{
  52. width: 45px;
  53. height: 45px;
  54. border-radius: 50%;
  55. margin-right: 15px;
  56. }
  57. .name{
  58. >p:first-child{
  59. font-size: 16px;
  60. font-weight: bold;
  61. color:#000;
  62. }
  63. >p:nth-of-type(2){
  64. font-size: 12px;
  65. color:#999999;
  66. margin-top: 6px;
  67. }
  68. >p:nth-of-type(3){
  69. font-size: 12px;
  70. color:#999999;
  71. margin-top: 3px;
  72. }
  73. .nameTips{
  74. margin-right:10px;
  75. display: inline-block;
  76. }
  77. }
  78. }
  79. .calledOneRight{
  80. img{
  81. width: 30px;
  82. margin-top: 8px;
  83. }
  84. }
  85. }
  86. }
  87. </style>