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

dialysisPrepare.vue 4.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. <template>
  2. <div class="main-contain">
  3. <div class="app-container">
  4. <el-form ref="form" :model="form" label-width="100px">
  5. <el-form-item label="查询日期 : " style="margin:0 0 10px 0;">
  6. <el-select v-model="form.region" style="width:15%;float:left;margin:0 10px 0 0;">
  7. <el-option label="当天" value="1"></el-option>
  8. <el-option label="本周" value="2"></el-option>
  9. <el-option label="本月" value="3"></el-option>
  10. <el-option label="本年" value="4"></el-option>
  11. <el-option label="全部" value="5"></el-option>
  12. <el-option label="自定义" value="6"></el-option>
  13. </el-select>
  14. <el-date-picker v-model="time" type="daterange" start-placeholder="开始日期" end-placeholder="结束日期"> </el-date-picker>
  15. </el-form-item>
  16. <el-form-item label-width="0" style="margin:0 0 10px 0;" >
  17. <div class="cell clearfix">
  18. <label class="name">排班班次 : </label>
  19. <div class="type">
  20. <ul>
  21. <li>全天</li>
  22. <li>上午</li>
  23. <li>下午</li>
  24. <li>晚上</li>
  25. </ul>
  26. </div>
  27. </div>
  28. </el-form-item>
  29. </el-form>
  30. <el-tabs style="margin-right: -100px" @tab-click="handleClick">
  31. <el-tab-pane name="first">
  32. <span slot="label">透析耗材</span>
  33. </el-tab-pane>
  34. <el-tab-pane name="second">
  35. <span slot="label">抗凝剂</span>
  36. </el-tab-pane>
  37. <el-tab-pane name="third">
  38. <span slot="label">透析耗材</span>
  39. </el-tab-pane>
  40. </el-tabs>
  41. <el-table
  42. ref="multipleTable"
  43. tooltip-effect="dark"
  44. style="width: 100%"
  45. border
  46. :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)'}"
  47. >
  48. <el-table-column
  49. type="selection"
  50. align="center"
  51. width="55">
  52. </el-table-column>
  53. <el-table-column
  54. label="序号"
  55. align="center"
  56. width="120">
  57. <template slot-scope="scope">{{ scope.row.date }}</template>
  58. </el-table-column>
  59. <el-table-column
  60. prop="name"
  61. label="透析机"
  62. align="center"
  63. width="120">
  64. </el-table-column>
  65. <el-table-column
  66. prop="address"
  67. label="姓名"
  68. align="center"
  69. show-overflow-tooltip>
  70. </el-table-column>
  71. <el-table-column
  72. prop="address"
  73. label="住院门诊号"
  74. align="center"
  75. show-overflow-tooltip>
  76. </el-table-column>
  77. <el-table-column
  78. prop="address"
  79. label="血透器"
  80. show-overflow-tooltip>
  81. </el-table-column>
  82. <el-table-column
  83. prop="address"
  84. label="血滤器"
  85. align="center"
  86. show-overflow-tooltip>
  87. </el-table-column>
  88. <el-table-column
  89. prop="address"
  90. label="姓名"
  91. align="center"
  92. show-overflow-tooltip>
  93. </el-table-column>
  94. <el-table-column
  95. prop="address"
  96. label="灌流器"
  97. align="center"
  98. show-overflow-tooltip>
  99. </el-table-column>
  100. <el-table-column
  101. prop="address"
  102. label="透析液钙"
  103. align="center"
  104. show-overflow-tooltip>
  105. </el-table-column>
  106. <el-table-column
  107. prop="address"
  108. label="上机换药包"
  109. align="center"
  110. show-overflow-tooltip>
  111. </el-table-column>
  112. <el-table-column
  113. prop="address"
  114. label="下机换药包"
  115. align="center"
  116. show-overflow-tooltip>
  117. </el-table-column>
  118. <el-table-column
  119. align="center"
  120. prop="address"
  121. label="内瘘穿刺包"
  122. show-overflow-tooltip>
  123. </el-table-column>
  124. <el-table-column
  125. align="center"
  126. prop="address"
  127. label="穿刺针"
  128. show-overflow-tooltip>
  129. </el-table-column>
  130. </el-table>
  131. </div>
  132. </div>
  133. </template>
  134. <script>
  135. export default {
  136. name: 'dialysis-prepare',
  137. data() {
  138. return {
  139. value12: '',
  140. form: {
  141. day: "",
  142. time: "",
  143. region: "",
  144. radio2: ""
  145. },
  146. options: [{
  147. value: '选项1',
  148. label: '黄金糕'
  149. }]
  150. }
  151. }
  152. }
  153. </script>
  154. <style rel="stylesheet/scss" lang="scss" scoped>
  155. </style>