血透系统pad前端

dialysisMonitoring.vue 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. <template>
  2. <div class="plate-box">
  3. <h2 class="title border">
  4. <span class="line"></span>
  5. <p>{{title}}</p>
  6. <span class="line"></span>
  7. </h2>
  8. <div class="dm" style="width:100%;overflow:hildden;overflow-x:auto;">
  9. <table class="table" style>
  10. <tr>
  11. <th v-if="isShow('监测时间')" width="124px">时间</th>
  12. <th v-if="isShow('体温')" width="80px">体温(℃)</th>
  13. <th v-if="isShow('血压')" width="72px">血压(mmHg)</th>
  14. <th v-if="isShow('脉搏')" width="80px">脉搏(次/分)</th>
  15. <th v-if="isShow('呼吸频率')" width="110px">呼吸频率(次/分)</th>
  16. <th width="76px">静脉压/动脉压(mmHg)</th>
  17. <th v-if="isShow('血流量')" width="92px">血流量(ml/min)</th>
  18. <th v-if="isShow('跨膜压')" width="76px">跨膜压(mmHg)</th>
  19. <th v-if="isShow('超滤量') && template_id ==6" width="76px">超滤量(ml)</th>
  20. <th v-if="isShow('超滤量') && template_id !=6" width="76px">超滤量(L)</th>
  21. <th v-if="isShow('钠浓度')" width="92px">钠浓度(mmol/L)</th>
  22. <th v-if="isShow('透析液温度')" width="92px">透析液温度(℃)</th>
  23. <th v-if="isShow('置换率')" width="92px">置换率(L/h)</th>
  24. <th v-if="isShow('置换量')" width="92px">置换量(L)</th>
  25. <th v-if="isShow('电导度')" width="92px">电导度(mS/m)</th>
  26. <th v-if="isShow('置换液流量')" width="92px">置换液流量(ml/h)</th>
  27. <th v-if="isShow('病情变化')" width="92px">病情变化</th>
  28. <th v-if="isShow('处理')" width="92px">处理</th>
  29. <th v-if="isShow('结果')" width="92px">结果</th>
  30. </tr>
  31. <tr v-for="(item,index) in tableDate" :key="index" :value="item.value">
  32. <td v-if="isShow('监测时间')">{{parseTime(item.operate_time, "{y}-{m}-{d} {h}:{i}")}}</td>
  33. <td v-if="isShow('体温')">{{item.temperature?item.temperature:''}}</td>
  34. <td
  35. v-if="isShow('血压')"
  36. >{{item.systolic_blood_pressure?item.systolic_blood_pressure:''}}/{{item.diastolic_blood_pressure?item.diastolic_blood_pressure:''}}</td>
  37. <td v-if="isShow('脉搏')">{{item.pulse_frequency?item.pulse_frequency:''}}</td>
  38. <td v-if="isShow('呼吸频率')">{{item.breathing_rate?item.breathing_rate:''}}</td>
  39. <td>{{item.venous_pressure?item.venous_pressure:''}}/{{item.arterial_pressure?item.arterial_pressure:''}}</td>
  40. <td v-if="isShow('血流量')">{{item.blood_flow_volume?item.blood_flow_volume:''}}</td>
  41. <td v-if="isShow('跨膜压')">{{item.transmembrane_pressure?item.transmembrane_pressure:''}}</td>
  42. <td v-if="isShow('超滤量')">{{item.ultrafiltration_volume?item.ultrafiltration_volume:''}}</td>
  43. <td v-if="isShow('钠浓度')">{{item.sodium_concentration?item.sodium_concentration:''}}</td>
  44. <td v-if="isShow('透析液温度')">{{item.dialysate_temperature?item.dialysate_temperature:''}}</td>
  45. <td v-if="isShow('置换率')">{{item.replacement_rate?item.replacement_rate:''}}</td>
  46. <td v-if="isShow('置换量')">{{item.displacement_quantity?item.displacement_quantity:''}}</td>
  47. <th v-if="isShow('电导度')">{{item.conductivity?item.conductivity:''}}</th>
  48. <th
  49. v-if="isShow('置换液流量')"
  50. >{{item.displacement_flow_quantity?item.displacement_flow_quantity:''}}</th>
  51. <td v-if="isShow('病情变化')">{{item.symptom}}</td>
  52. <td v-if="isShow('处理')">{{item.dispose}}</td>
  53. <td v-if="isShow('结果')">{{item.result}}</td>
  54. </tr>
  55. </table>
  56. <div class="NoData" v-show="tableDate.length == 0">
  57. <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
  58. </div>
  59. </div>
  60. <!-- <el-table :data="tableDate" border style="width: 100%" ref="form">
  61. <span v-if="isShow('监测时间')">
  62. <el-table-column fixed prop="date" label="时间" width="100" align="center">
  63. <template slot-scope="scope">{{parseTime(scope.row.operate_time, "{y}-{m}-{d} {h}:{i}")}}</template>
  64. </el-table-column>
  65. </span>
  66. <span v-if="isShow('体温')">
  67. <el-table-column prop="name" label="体温(℃)" width="80" align="center">
  68. <template slot-scope="scope">{{scope.row.temperature?scope.row.temperature:''}}</template>
  69. </el-table-column>
  70. </span>
  71. <span v-if="isShow('血压')">
  72. <el-table-column prop="province" label="血压(mmHg)" width="110" align="center">
  73. <template
  74. slot-scope="scope"
  75. >{{scope.row.systolic_blood_pressure?scope.row.systolic_blood_pressure:''}}/{{scope.row.diastolic_blood_pressure?scope.row.diastolic_blood_pressure:''}}</template>
  76. </el-table-column>
  77. </span>
  78. <span v-if="isShow('脉搏')">
  79. <el-table-column prop="city" label="脉搏(次/分)" width="100" align="center">
  80. <template slot-scope="scope">{{scope.row.pulse_frequency?scope.row.pulse_frequency:''}}</template>
  81. </el-table-column>
  82. </span>
  83. <span v-if="isShow('呼吸频率')">
  84. <el-table-column prop="address" label="呼吸频率(次/分)" width="140" align="center">
  85. <template slot-scope="scope">{{scope.row.breathing_rate?scope.row.breathing_rate:''}}</template>
  86. </el-table-column>
  87. </span>
  88. <el-table-column prop="zip" label="静脉压/动脉压(mmHg)" width="100" align="center">
  89. <template
  90. slot-scope="scope"
  91. >{{scope.row.venous_pressure?scope.row.venous_pressure:''}}/{{scope.row.arterial_pressure?scope.row.arterial_pressure:''}}</template>
  92. </el-table-column>
  93. <span v-if="isShow('血流量')">
  94. <el-table-column prop="zip" label="血流量(ml/min)" width="150" align="center">
  95. <template
  96. slot-scope="scope"
  97. >{{scope.row.blood_flow_volume?scope.row.blood_flow_volume:''}}</template>
  98. </el-table-column>
  99. </span>
  100. <span v-if="isShow('跨膜压')">
  101. <el-table-column prop="zip" label="跨膜压(mmHg)" width="130" align="center">
  102. <template
  103. slot-scope="scope"
  104. >{{scope.row.transmembrane_pressure?scope.row.transmembrane_pressure:''}}</template>
  105. </el-table-column>
  106. </span>
  107. <span v-if="isShow('超滤量')">
  108. <el-table-column prop="zip" label="超滤量(ml)" width="100" align="center">
  109. <template
  110. slot-scope="scope"
  111. >{{scope.row.ultrafiltration_volume?scope.row.ultrafiltration_volume:''}}</template>
  112. </el-table-column>
  113. </span>
  114. <span v-if="isShow('钠浓度')">
  115. <el-table-column prop="zip" label="钠浓度(mmol/L)" width="100" align="center">
  116. <template
  117. slot-scope="scope"
  118. >{{scope.row.sodium_concentration?scope.row.sodium_concentration:''}}</template>
  119. </el-table-column>
  120. </span>
  121. <span v-if="isShow('透析液温度')">
  122. <el-table-column prop="zip" label="透析液温度(℃)" width="100" align="center">
  123. <template
  124. slot-scope="scope"
  125. >{{scope.row.dialysate_temperature?scope.row.dialysate_temperature:''}}</template>
  126. </el-table-column>
  127. </span>
  128. <span v-if="isShow('置换率')">
  129. <el-table-column prop="zip" label="置换率(L/h)" width="200" align="center">
  130. <template slot-scope="scope">{{scope.row.replacement_rate?scope.row.replacement_rate:''}}</template>
  131. </el-table-column>
  132. </span>
  133. <span v-if="isShow('置换量')">
  134. <el-table-column prop="zip" label="置换量(L)" width="200" align="center">
  135. <template
  136. slot-scope="scope"
  137. >{{scope.row.displacement_quantity?scope.row.displacement_quantity:''}}</template>
  138. </el-table-column>
  139. </span>
  140. <span v-if="isShow('电导度')">
  141. <el-table-column prop="zip" label="电导度(mS/m)" width="200" align="center">
  142. <template slot-scope="scope">{{scope.row.conductivity?scope.row.conductivity:''}}</template>
  143. </el-table-column>
  144. </span>
  145. <span v-if="isShow('置换液流量')">
  146. <el-table-column prop="zip" label="置换液流量(ml/h)" width="200" align="center">
  147. <template
  148. slot-scope="scope"
  149. >{{scope.row.displacement_flow_quantity?scope.row.displacement_flow_quantity:''}}</template>
  150. </el-table-column>
  151. </span>
  152. <span v-if="isShow('病情变化')">
  153. <el-table-column prop="zip" label="病情变化" width="200" align="center">
  154. <template slot-scope="scope">{{scope.row.symptom}}</template>
  155. </el-table-column>
  156. </span>
  157. <span v-if="isShow('处理')">
  158. <el-table-column prop="zip" label="处理" width="200" align="center">
  159. <template slot-scope="scope">{{scope.row.dispose}}</template>
  160. </el-table-column>
  161. </span>
  162. <span v-if="isShow('结果')">
  163. <el-table-column prop="zip" label="结果" width="200" align="center">
  164. <template slot-scope="scope">{{scope.row.result}}</template>
  165. </el-table-column>
  166. </span>
  167. </el-table>-->
  168. </div>
  169. </template>
  170. <script>
  171. import { parseTime } from "@/utils";
  172. export default {
  173. name: "statOrder",
  174. data() {
  175. return {
  176. title: "透析监测 ",
  177. template_id: 0,
  178. tableDate: []
  179. };
  180. },
  181. created() {
  182. this.template_id = this.$store.getters.user.template_info.template_id;
  183. },
  184. methods: {
  185. isShow(name) {
  186. var filedList = this.$store.getters.user.fileds;
  187. for (let i = 0; i < filedList.length; i++) {
  188. if (
  189. filedList[i].module == 4 &&
  190. filedList[i].filed_name_cn == name &&
  191. filedList[i].is_show == 1
  192. ) {
  193. return true;
  194. }
  195. }
  196. return false;
  197. },
  198. setRecords(records) {
  199. if (records == null) {
  200. records = [];
  201. }
  202. this.tableDate.splice(0, this.tableDate.length);
  203. this.tableDate.push(...records);
  204. },
  205. parseTime(time, layout) {
  206. return parseTime(time, layout);
  207. },
  208. addRecords(records) {
  209. this.tableDate.push(...records);
  210. }
  211. }
  212. };
  213. </script>
  214. <style rel="stylesheet/scss" lang="scss" scoped>
  215. .dm {
  216. /* 针对缺省样式 (必须的) */
  217. &::-webkit-scrollbar {
  218. width: 3px;
  219. height: 5px;
  220. }
  221. /* 滚动条的滑轨背景颜色 */
  222. &::-webkit-scrollbar-track {
  223. background-color: #fff;
  224. border-radius: 3px;
  225. -moz-border-radius: 3px;
  226. -webkit-border-radius: 3px;
  227. }
  228. /* 滑块颜色 */
  229. &::-webkit-scrollbar-thumb {
  230. background: #d7dce2;
  231. border-radius: 3px;
  232. -moz-border-radius: 3px;
  233. -webkit-border-radius: 3px;
  234. }
  235. /*内层轨道的颜色*/
  236. &::-webkit-scrollbar-track-piece {
  237. background-color: #fff;
  238. border-radius: 3px;
  239. -moz-border-radius: 3px;
  240. -webkit-border-radius: 3px;
  241. }
  242. /* 滑轨两头的监听按钮颜色 */
  243. &::-webkit-scrollbar-button {
  244. background-color: #eee;
  245. width: 0;
  246. height: 0;
  247. }
  248. /* 横向滚动条和纵向滚动条相交处尖角的颜色 */
  249. &::-webkit-scrollbar-corner {
  250. background-color: #eee;
  251. }
  252. }
  253. </style>
  254. <style lang="scss">
  255. .el-table td {
  256. padding: 0;
  257. }
  258. .el-table th {
  259. padding: 6px 0;
  260. }
  261. </style>