血透系统pad前端

MonitDialog.vue 37KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024
  1. <template>
  2. <div>
  3. <div v-loading="loading">
  4. <div class="Dialog" v-show="listPanel" >
  5. <div class="DialogTit">
  6. <span class="iconfont" @click="close()">&#xe6e9;</span>
  7. <h1 class="name">透析监测</h1>
  8. <span class="success" >&nbsp;</span>
  9. </div>
  10. <div style="width:100%;background: #fff;">
  11. <div class="yzNav" style="width:80%">
  12. <span @click="openForm()">新增监测</span>
  13. <span @click="openEidtForm()">修改监测</span>
  14. <span @click="deleteForm()">删除监测</span>
  15. </div>
  16. </div>
  17. <div class="DialogContent choose" id="dialogTop">
  18. <div style="width:100%;overflow:hildden;">
  19. <table class="table" style="">
  20. <tr @click="selectRow(-1, null)">
  21. <th v-if="isShow('监测时间')" width="124px">时间</th>
  22. <th v-if="isShow('血压')" width="72px">血压(mmHg)</th>
  23. <th v-if="isShow('心率')" width="80px">心率(次/分)</th>
  24. <th v-if="isShow('呼吸')" width="110px">呼吸(次/分)</th>
  25. <th v-if="isShow('血流量')" width="92px">血流量(ml/min)</th>
  26. <th width="76px">静脉压/动脉压(mmHg)</th>
  27. <th v-if="isShow('跨膜压')" width="76px">跨膜压(mmHg)</th>
  28. <th v-if="isShow('超滤量')" width="76px">超滤量(L)</th>
  29. <th v-if="isShow('钠浓度')" width="92px">钠浓度(mmol/L)</th>
  30. <th v-if="isShow('透析液温度')" width="82px">透析液温度(℃)</th>
  31. <th v-if="isShow('置换率')" width="92px">置换率(L/h)</th>
  32. <th v-if="isShow('置换量')" width="50px">置换量(L)</th>
  33. <th v-if="isShow('病情变化')" width="92px">病情变化</th>
  34. <th v-if="isShow('处理')" width="92px">处理</th>
  35. <th v-if="isShow('结果')" width="92px">结果</th>
  36. </tr>
  37. <tr v-for="(item,index) in monitorRecords" :key="index" :value="item.value" @click="selectRow(index, item)" :class="index==currentIndex?rowClass:''">
  38. <td v-if="isShow('监测时间')">{{parseTime(item.operate_time, "{y}-{m}-{d} {h}:{i}")}}</td>
  39. <td v-if="isShow('血压')">{{item.systolic_blood_pressure?item.systolic_blood_pressure:""}}/{{item.diastolic_blood_pressure?item.diastolic_blood_pressure:""}}</td>
  40. <td v-if="isShow('心率')">{{item.pulse_frequency?item.pulse_frequency:""}}</td>
  41. <td v-if="isShow('呼吸')">{{item.breathing_rate?item.breathing_rate:""}}</td>
  42. <td v-if="isShow('血流量')">{{item.blood_flow_volume?item.blood_flow_volume:""}}</td>
  43. <td >{{item.venous_pressure?item.venous_pressure:""}}/{{item.arterial_pressure?item.arterial_pressure:""}}</td>
  44. <td v-if="isShow('跨膜压')">{{item.transmembrane_pressure?item.transmembrane_pressure:""}}</td>
  45. <td v-if="isShow('超滤量')">{{item.ultrafiltration_volume?item.ultrafiltration_volume:""}}</td>
  46. <td v-if="isShow('钠浓度')">{{item.sodium_concentration?item.sodium_concentration:""}}</td>
  47. <td v-if="isShow('透析液温度')">{{item.dialysate_temperature?item.dialysate_temperature:""}}</td>
  48. <td v-if="isShow('置换率')">{{item.replacement_rate?item.replacement_rate:""}}</td>
  49. <td v-if="isShow('置换量')">{{item.displacement_quantity?item.displacement_quantity:""}}</td>
  50. <td v-if="isShow('病情变化')">{{item.symptom}}</td>
  51. <td v-if="isShow('处理')">{{item.dispose}}</td>
  52. <td v-if="isShow('结果')">{{item.result}}</td>
  53. </tr>
  54. </table>
  55. </div>
  56. </div>
  57. </div>
  58. <div class="Dialog" v-show="formPanel" >
  59. <div class="DialogTit">
  60. <div class="back" @click="formPanel=false;listPanel=true;"> <span class="iconfont">&#xe720; </span>返回</div>
  61. <h1 class="name">{{formTitle}}</h1>
  62. <span class="success" v-if="form.id>0" @click="submitEditAction()">完成</span>
  63. <span class="success" v-else @click="submitAction()">完成</span>
  64. </div>
  65. <div class="DialogContent choose">
  66. <div class="content">
  67. <div class="cell">
  68. <label>监测时间</label>
  69. <input type="text" class="inputBox" @click="chooseTime()" :value="parseTime(this.form.operate_time, '{y}-{m}-{d} {h}:{i}')" readonly>
  70. </div>
  71. <div class="cell">
  72. <label>收缩压(mmHg)</label>
  73. <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox" v-model="form.systolic_bp">
  74. </div>
  75. <div class="cell">
  76. <label>舒张压(mmHg)</label>
  77. <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox" v-model="form.diastolic_bp">
  78. </div>
  79. <div class="cell">
  80. <label>心率(次/分)</label>
  81. <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox" v-model="form.pulse_frequency">
  82. </div>
  83. <div class="cell">
  84. <label>呼吸频率(次/分)</label>
  85. <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox" v-model="form.breathing_rated">
  86. </div>
  87. <div class="cell">
  88. <label>血流量(ml/min)</label>
  89. <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox" v-model="form.blood_flow_volume">
  90. </div>
  91. <div class="cell">
  92. <label>静脉压(mmHg)</label>
  93. <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox" v-model="form.venous_pressure">
  94. </div>
  95. <div class="cell">
  96. <label>跨膜压(mmHg)</label>
  97. <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox" v-model="form.transmembrane_pressure">
  98. </div>
  99. <div class="cell">
  100. <label>超滤量(L)</label>
  101. <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox" v-model="form.ultrafiltration_volume">
  102. </div>
  103. <div class="cell">
  104. <label>超滤率(ml/h)</label>
  105. <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox" v-model="form.ultrafiltration_rate">
  106. </div>
  107. <div class="cell">
  108. <label>动脉压(mmHg)</label>
  109. <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox" v-model="form.arterial_pressure">
  110. </div>
  111. <div class="cell">
  112. <label>钠浓度(mmol/L)</label>
  113. <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox" v-model="form.sodium_concentration">
  114. </div>
  115. <div class="cell">
  116. <label>透析液温度(℃)</label>
  117. <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox" v-model="form.dialysate_temperature">
  118. </div>
  119. <div class="cell">
  120. <label>置换率(L/h)</label>
  121. <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox" v-model="form.replacement_rate">
  122. </div>
  123. <div class="cell">
  124. <label>置换量(L)</label>
  125. <input type="number" @focus="inputFocus" onclick="this.select();" class="inputBox" v-model="form.displacement_quantity">
  126. </div>
  127. <div class="cell width" >
  128. <label>KT/V(在线)</label>
  129. <!-- <input type="text" class="inputBox" v-model="form.ktv"> -->
  130. <textarea @focus="inputFocus" class="inputBox" style="width: 100%;" :rows="4" v-model="form.ktv"></textarea>
  131. </div>
  132. <div class="cell width" >
  133. <label>病情变化</label>
  134. <input type="text" class="inputBox" style="width: 100%;margin-bottom:5px;" v-model="form.symptom" readonly placeholder="选择 " @click="showSubMenu('symptom')">
  135. <textarea @focus="inputFocus" class="inputBox" style="width: 100%;" :rows="4" v-model="form.symptom"></textarea>
  136. </div>
  137. <div class="cell width" >
  138. <label>处理</label>
  139. <!-- <input type="text" class="inputBox" v-model="form.dispose"> -->
  140. <input type="text" class="inputBox" style="width: 100%;margin-bottom:5px;" v-model="form.dispose" readonly placeholder="选择" @click="showSubMenu('dispose')">
  141. <textarea @focus="inputFocus" class="inputBox" style="width: 100%;" :rows="4" v-model="form.dispose"></textarea>
  142. </div>
  143. <div class="cell width" >
  144. <label>结果</label>
  145. <!-- <input type="text" class="inputBox" v-model="form.result"> -->
  146. <input type="text" class="inputBox" style="width: 100%;margin-bottom:5px;" v-model="form.result" readonly placeholder="选择" @click="showSubMenu('result')">
  147. <textarea @focus="lastInputFocus" @blur="lastInputBlur" class="inputBox" style="width: 100%;" :rows="4" v-model="form.result"></textarea>
  148. </div>
  149. <div class="cell width">
  150. <label>监测人:</label>
  151. <span>{{doctor}}</span>
  152. </div>
  153. </div>
  154. </div>
  155. </div>
  156. </div>
  157. <mt-datetime-picker
  158. ref="picker"
  159. type="datetime"
  160. @confirm="handleConfirm"
  161. v-model="pickertime">
  162. </mt-datetime-picker>
  163. <check-box-sub-menu :visibility="visibility" v-on:menu-cancle="menuCancle" v-on:menu-comfirm="menuComfirm"
  164. :propsForm="propForm"></check-box-sub-menu>
  165. </div>
  166. </template>
  167. <script>
  168. import {
  169. addMonitorRecord,
  170. editMonitorRecord,
  171. deleteMonitorRecord,
  172. GetMonitor
  173. } from "@/api/dialysis";
  174. import { parseTime } from "@/utils";
  175. import { Toast } from "vant";
  176. import CheckBoxSubMenu from "./subMenu/checkBoxSubMenu";
  177. import { getDataConfig } from "@/utils/data";
  178. import { Dialog } from "vant";
  179. export default {
  180. name: "MonitDialog",
  181. props: {
  182. monitor_records: {
  183. type: Array
  184. },
  185. patient: {
  186. type: Object
  187. },
  188. order: {
  189. type: Object
  190. },
  191. last_monitor_record: {
  192. type: Object
  193. }
  194. },
  195. data() {
  196. return {
  197. loading:false,
  198. formTitle: "新增监测",
  199. formPanel: false,
  200. listPanel: true,
  201. tableDate: [],
  202. monitorRecords: this.monitor_records,
  203. pickertime: new Date(),
  204. monitor_time_str: "",
  205. // monitor_date_str: "",
  206. currentIndex: -1,
  207. currentRow: null,
  208. rowClass: "row-class-active",
  209. visibility: false,
  210. propForm: {
  211. title: "",
  212. list: [],
  213. optionList: [],
  214. isMultiple: 2,
  215. result: [], //选中的值
  216. type: 1, //用来区分不同子菜单,方便对返回值进行赋值
  217. selectId: 0
  218. },
  219. form: {
  220. // patient_id: 0,
  221. // order_id: 0,
  222. monitor_date: 0,
  223. // monitor_time: "00:00",
  224. operate_time: 0,
  225. pulse_frequency: "", // 脉率
  226. breathing_rated: "", // 呼吸频率
  227. systolic_bp: "", // 收缩压
  228. diastolic_bp: "", // 舒张压
  229. blood_flow_volume: "", // 血流量
  230. venous_pressure: "", // 静脉压
  231. arterial_pressure: "", // 动脉压
  232. transmembrane_pressure: "", // 跨膜压
  233. ultrafiltration_rate: "", // 超滤率
  234. ultrafiltration_volume: "", // 超滤量
  235. sodium_concentration: "", // 钠浓度
  236. dialysate_temperature: "", // 透析液温度
  237. replacement_rate: "", // 置换率
  238. displacement_quantity: "", // 置换量
  239. ktv: "", // KT/V(在线)
  240. symptom: "", // 症状
  241. dispose: "", // 处理
  242. result: "", // 结果
  243. monitoring_nurse: this.$store.getters.user.user.id // 监测人
  244. },
  245. doctor: this.$store.getters.user.user.user_name
  246. };
  247. },
  248. created() {
  249. var date = this.$route.query && this.$route.query.date;
  250. // date *= 1000;
  251. // var newDate = new Date(date);
  252. // var cDate = new Date();
  253. // var y = newDate.getFullYear();
  254. // var m = newDate.getMonth() + 1;
  255. // var d = newDate.getDate();
  256. // if (isNaN(y) || isNaN(m) || isNaN(d)) {
  257. // // newDate = new Date();
  258. // y = cDate.getFullYear();
  259. // m = cDate.getMonth() + 1;
  260. // d = cDate.getDate();
  261. // }
  262. // var h = cDate.getHours();
  263. // var mi = cDate.getMinutes();
  264. // var pickertime = (h < 10 ? "0" + h : h) + ":" + (mi < 10 ? "0" + mi : mi);
  265. // var monitor_date_str =
  266. // y + "-" + (m < 10 ? "0" + m : m) + "-" + (d < 10 ? "0" + d : d);
  267. // this.form.monitor_date = Math.round(
  268. // new Date(monitor_date_str + " 00:00:00").getTime() / 1000
  269. // );
  270. // this.form.monitor_date = parseInt((new Date(date.getFullYear, date.getMonth, date.getDate, 0, 0, 0, 0)).getTime()) //parseTime(date, "{y}-{m}-{d}") + " 00:00:00"
  271. this.form.monitor_date = date;
  272. this.form.operate_time = this.pickertime.getTime();
  273. },
  274. methods: {
  275. isShow(name){
  276. var filedList = this.$store.getters.user.fileds
  277. for (let i = 0; i < filedList.length; i++){
  278. if(filedList[i].module == 4 && filedList[i].filed_name_cn == name&&filedList[i].is_show == 1){
  279. return true
  280. }
  281. }
  282. return false
  283. },
  284. getLastRecord() {
  285. let params = {
  286. patient_id: this.patient.id
  287. };
  288. GetMonitor(params).then(rs => {
  289. var resp = rs.data;
  290. if (resp.state == 1) {
  291. var monitor = resp.data.monitor;
  292. if(monitor.systolic_blood_pressure == 0){
  293. this.form.systolic_bp = ""
  294. }else {
  295. this.form.systolic_bp = monitor.systolic_blood_pressure;
  296. }
  297. if(monitor.diastolic_blood_pressure == 0){
  298. this.form.diastolic_bp = ""
  299. }else {
  300. this.form.diastolic_bp = monitor.diastolic_blood_pressure;
  301. }
  302. if(monitor.pulse_frequency == 0){
  303. this.form.pulse_frequency = ""
  304. }else {
  305. this.form.pulse_frequency = monitor.pulse_frequency;
  306. }
  307. if(monitor.breathing_rate == 0){
  308. this.form.breathing_rated = ""
  309. }else {
  310. this.form.breathing_rated = monitor.breathing_rate;
  311. }
  312. if(monitor.blood_flow_volume == 0){
  313. this.form.blood_flow_volume = ""
  314. }else {
  315. this.form.blood_flow_volume = monitor.blood_flow_volume;
  316. }
  317. if(monitor.venous_pressure == 0){
  318. this.form.venous_pressure = ""
  319. }else {
  320. this.form.venous_pressure = monitor.venous_pressure;
  321. }
  322. if(monitor.arterial_pressure == 0){
  323. this.form.arterial_pressure = ""
  324. }else {
  325. this.form.arterial_pressure = monitor.arterial_pressure;
  326. }
  327. if(monitor.transmembrane_pressure == 0){
  328. this.form.transmembrane_pressure = ""
  329. }else {
  330. this.form.transmembrane_pressure = monitor.transmembrane_pressure;
  331. }
  332. if(monitor.ultrafiltration_rate == 0){
  333. this.form.ultrafiltration_rate = ""
  334. }else {
  335. this.form.ultrafiltration_rate = monitor.ultrafiltration_rate;
  336. }
  337. if(monitor.ultrafiltration_volume == 0){
  338. this.form.ultrafiltration_volume = ""
  339. }else {
  340. this.form.ultrafiltration_volume = monitor.ultrafiltration_volume;
  341. }
  342. if(monitor.sodium_concentration == 0){
  343. this.form.sodium_concentration = ""
  344. }else {
  345. this.form.sodium_concentration = monitor.sodium_concentration;
  346. }
  347. if(monitor.dialysate_temperature == 0){
  348. this.form.dialysate_temperature = ""
  349. }else {
  350. this.form.dialysate_temperature = monitor.dialysate_temperature;
  351. }
  352. if(monitor.replacement_rate == 0){
  353. this.form.replacement_rate = ""
  354. }else {
  355. this.form.replacement_rate = monitor.replacement_rate;
  356. }
  357. if(monitor.displacement_quantity == 0){
  358. this.form.displacement_quantity = ""
  359. }else {
  360. this.form.displacement_quantity = monitor.displacement_quantity;
  361. }
  362. this.form.ktv = monitor.ktv;
  363. this.form.symptom = monitor.symptom;
  364. this.form.dispose = monitor.dispose;
  365. this.form.result = monitor.result;
  366. this.form.operate_time = new Date(
  367. monitor.operate_time * 1000
  368. ).getTime();
  369. this.form.id = -1;
  370. }
  371. });
  372. },
  373. selectRow(index, row) {
  374. this.currentIndex = index;
  375. this.currentRow = row;
  376. },
  377. inputFocus: function(event) {
  378. var input = event.target;
  379. setTimeout(function() {
  380. input.parentNode.scrollIntoView();
  381. }, 0);
  382. // if (input.setSelectionRange) {
  383. // setTimeout(function () {
  384. // input.setSelectionRange(0, input.value.length);
  385. // }, 0);
  386. // } else if (input.createTextRange) {
  387. // var rng = input.createTextRange();
  388. // rng.move('character', input.value.length);
  389. // rng.select();
  390. // }
  391. },
  392. lastInputFocus: function(event) {
  393. var input = event.target;
  394. setTimeout(function() {
  395. input.style.marginBottom = "2rem";
  396. input.parentNode.scrollIntoView();
  397. }, 0);
  398. },
  399. lastInputBlur: function(event) {
  400. var input = event.target;
  401. setTimeout(function() {
  402. input.style.marginBottom = "";
  403. }, 0);
  404. },
  405. close: function() {
  406. this.$emit("close");
  407. },
  408. setRecords(records) {
  409. if (records == null) {
  410. records = [];
  411. }
  412. this.tableDate.splice(0, this.tableDate.length);
  413. this.tableDate.push(...records);
  414. },
  415. parseTime(time, layout) {
  416. return parseTime(time, layout);
  417. },
  418. addRecords(records) {
  419. this.tableDate.push(...records);
  420. },
  421. deleteForm() {
  422. if (this.currentIndex < 0 || this.currentRow == null) {
  423. Toast.fail("请先选择要删除的记录");
  424. return false;
  425. }
  426. Dialog.confirm({
  427. title: "删除监测记录",
  428. message: "是否删除该监测记录"
  429. })
  430. .then(() => {
  431. let params = {
  432. record_id: this.currentRow.id,
  433. patient_id: this.patient.id
  434. };
  435. deleteMonitorRecord(params).then(rs => {
  436. var resp = rs.data;
  437. if (resp.state == 1) {
  438. var recordId = resp.data.record_id;
  439. this.$emit("did_delete_monitor", recordId);
  440. Toast.success("删除成功");
  441. } else {
  442. Toast.fail(resp.msg);
  443. }
  444. });
  445. })
  446. .catch(() => {});
  447. },
  448. handleConfirm(time) {
  449. this.form.operate_time = time.getTime();
  450. // var timeMap = time.split(":");
  451. // this.form.monitor_time = time;
  452. // this.monitor_time_str =
  453. // parseTime(this.form.monitor_date, "{y}-{m}-{d}") +
  454. // " " +
  455. // this.form.monitor_time;
  456. // this.monitor_time_str = this.handleTime(time);
  457. // this.form.monitor_time = parseTime(time, "{h}:{i}")
  458. // this.form.monitor_date = Math.round(new Date(parseTime(time, "{y}-{m}-{d}") + " 00:00:00").getTime()/1000);
  459. },
  460. handleTime(time) {
  461. var year = time.getFullYear();
  462. var month = time.getMonth() + 1;
  463. var day = time.getDate();
  464. var hour = time.getHours();
  465. var minute = time.getMinutes();
  466. if (month < 10) {
  467. month = "0" + month;
  468. }
  469. if (day < 10) {
  470. day = "0" + day;
  471. }
  472. if (hour < 10) {
  473. hour = "0" + hour;
  474. }
  475. if (minute < 10) {
  476. minute = "0" + minute;
  477. }
  478. return year + "-" + month + "-" + day + " " + hour + ":" + minute + ":00";
  479. },
  480. chooseTime() {
  481. this.$refs.picker.open();
  482. },
  483. openEidtForm() {
  484. if (this.currentIndex < 0 || this.currentRow == null) {
  485. Toast.fail("请先选择要修改的记录");
  486. return false;
  487. }
  488. this.formTitle = "修改监测";
  489. this.formPanel = true;
  490. this.listPanel = false;
  491. // console.log("this.currentRow", this.currentRow);
  492. if(this.currentRow.systolic_blood_pressure == 0){
  493. this.form.systolic_bp = ""
  494. }else {
  495. this.form.systolic_bp = this.currentRow.systolic_blood_pressure;
  496. }
  497. if(this.currentRow.diastolic_blood_pressure == 0){
  498. this.form.diastolic_bp = ""
  499. }else {
  500. this.form.diastolic_bp = this.currentRow.diastolic_blood_pressure;
  501. }
  502. if(this.currentRow.pulse_frequency == 0){
  503. this.form.pulse_frequency = ""
  504. }else {
  505. this.form.pulse_frequency = this.currentRow.pulse_frequency;
  506. }
  507. if(this.currentRow.breathing_rate == 0){
  508. this.form.breathing_rated = ""
  509. }else {
  510. this.form.breathing_rated = this.currentRow.breathing_rate;
  511. }
  512. if(this.currentRow.blood_flow_volume == 0){
  513. this.form.blood_flow_volume = ""
  514. }else {
  515. this.form.blood_flow_volume = this.currentRow.blood_flow_volume;
  516. }
  517. if(this.currentRow.venous_pressure == 0){
  518. this.form.venous_pressure = ""
  519. }else {
  520. this.form.venous_pressure = this.currentRow.venous_pressure;
  521. }
  522. if(this.currentRow.arterial_pressure == 0){
  523. this.form.arterial_pressure = ""
  524. }else {
  525. this.form.arterial_pressure = this.currentRow.arterial_pressure;
  526. }
  527. if(this.currentRow.transmembrane_pressure == 0){
  528. this.form.transmembrane_pressure = ""
  529. }else {
  530. this.form.transmembrane_pressure = this.currentRow.transmembrane_pressure;
  531. }
  532. if(this.currentRow.ultrafiltration_rate == 0){
  533. this.form.ultrafiltration_rate = ""
  534. }else {
  535. this.form.ultrafiltration_rate =this.currentRow.ultrafiltration_rate;
  536. }
  537. if(this.currentRow.ultrafiltration_volume == 0){
  538. this.form.ultrafiltration_volume = ""
  539. }else {
  540. this.form.ultrafiltration_volume = this.currentRow.ultrafiltration_volume;
  541. }
  542. if(this.currentRow.sodium_concentration == 0){
  543. this.form.sodium_concentration = ""
  544. }else {
  545. this.form.sodium_concentration = this.currentRow.sodium_concentration;
  546. }
  547. if(this.currentRow.dialysate_temperature == 0){
  548. this.form.dialysate_temperature = ""
  549. }else {
  550. this.form.dialysate_temperature = this.currentRow.dialysate_temperature;
  551. }
  552. if(this.currentRow.replacement_rate == 0){
  553. this.form.replacement_rate = ""
  554. }else {
  555. this.form.replacement_rate = this.currentRow.replacement_rate;
  556. }
  557. if(this.currentRow.displacement_quantity == 0){
  558. this.form.displacement_quantity = ""
  559. }else {
  560. this.form.displacement_quantity = this.currentRow.displacement_quantity;
  561. }
  562. if(this.currentRow.ktv == 0){
  563. this.form.ktv = ""
  564. }else {
  565. this.form.ktv = this.currentRow.ktv;
  566. }
  567. this.form.symptom = this.currentRow.symptom;
  568. this.form.dispose = this.currentRow.dispose;
  569. this.form.result = this.currentRow.result;
  570. this.form.id = this.currentRow.id;
  571. this.form.operate_time = this.currentRow.operate_time * 1000;
  572. // this.monitor_time_str =
  573. // parseTime(this.form.monitor_date, "{y}-{m}-{d}") +
  574. // " " +
  575. // this.form.monitor_time;
  576. },
  577. openForm() {
  578. this.formTitle = "新增监测";
  579. this.formPanel = true;
  580. this.listPanel = false;
  581. // if(this.monitor_time_str == "") {
  582. var date = this.$route.query && this.$route.query.date;
  583. date *= 1000;
  584. var newDate = new Date(date);
  585. var y = newDate.getFullYear();
  586. var m = newDate.getMonth() + 1;
  587. var d = newDate.getDate();
  588. if (isNaN(y) || isNaN(m) || isNaN(d)) {
  589. newDate = new Date();
  590. y = newDate.getFullYear();
  591. m = newDate.getMonth() + 1;
  592. d = newDate.getDate();
  593. }
  594. var record_date =
  595. y + "-" + (m < 10 ? "0" + m : m) + "-" + (d < 10 ? "0" + d : d);
  596. this.form.monitor_date = Math.round(
  597. new Date(record_date + " 00:00:00").getTime() / 1000
  598. );
  599. var nowTime = new Date();
  600. // this.form.monitor_time = parseTime(nowTime, "{h}:{i}");
  601. // this.monitor_time_str = this.handleTime(nowTime);
  602. // this.monitor_time_str = record_date + " " + this.form.monitor_time;
  603. // this.getLastRecord()
  604. this.form.operate_time = Date.parse(new Date());
  605. this.form.pulse_frequency = ""; //this.last_monitor_record.pulse_frequency;
  606. this.form.breathing_rated = ""; //this.last_monitor_record.breathing_rate;
  607. this.form.systolic_bp = ""; //this.last_monitor_record.systolic_blood_pressure;
  608. this.form.diastolic_bp = ""; //this.last_monitor_record.diastolic_blood_pressure;
  609. this.form.blood_flow_volume =""; //this.last_monitor_record.blood_flow_volume;
  610. this.form.venous_pressure = "";//this.last_monitor_record.venous_pressure;
  611. this.form.arterial_pressure = ""; //this.last_monitor_record.arterial_pressure;
  612. this.form.transmembrane_pressure =""; // this.last_monitor_record.transmembrane_pressure;
  613. this.form.ultrafiltration_rate = "";// this.last_monitor_record.ultrafiltration_rate;
  614. this.form.ultrafiltration_volume ="";// this.last_monitor_record.ultrafiltration_volume;
  615. this.form.sodium_concentration = "";//this.last_monitor_record.sodium_concentration;
  616. this.form.dialysate_temperature = ""; //this.last_monitor_record.dialysate_temperature;
  617. this.form.replacement_rate = ""; // this.last_monitor_record.replacement_rate;
  618. this.form.displacement_quantity =""; // this.last_monitor_record.displacement_quantity;
  619. this.form.ktv = ""; //this.last_monitor_record.ktv;
  620. this.form.symptom ="";// this.last_monitor_record.symptom;
  621. this.form.dispose =""; // this.last_monitor_record.dispose;
  622. this.form.result =""; //this.last_monitor_record.result;
  623. this.form.id = -1;
  624. console.log(this.form);
  625. // }
  626. },
  627. submitEditAction: function() {
  628. this.loading = true
  629. Toast.loading({ forbidClick: true, duration: 0 });
  630. var params = {};
  631. params.patient_id = this.patient.id;
  632. params.order_id = this.order == null ? 0 : this.order.id;
  633. params.date = this.form.monitor_date;
  634. // params.time = this.form.monitor_time;
  635. params.operate_time = parseInt(this.form.operate_time / 1000);
  636. params.pulse_frequency = this.form.pulse_frequency;
  637. params.breathing_rated = this.form.breathing_rated;
  638. params.systolic_bp = this.form.systolic_bp;
  639. params.diastolic_bp = this.form.diastolic_bp;
  640. params.blood_flow_volume = this.form.blood_flow_volume;
  641. params.venous_pressure = this.form.venous_pressure;
  642. params.arterial_pressure = this.form.arterial_pressure;
  643. params.transmembrane_pressure = this.form.transmembrane_pressure;
  644. params.ultrafiltration_rate = this.form.ultrafiltration_rate;
  645. params.ultrafiltration_volume = this.form.ultrafiltration_volume;
  646. params.sodium_concentration = this.form.sodium_concentration;
  647. params.dialysate_temperature = this.form.dialysate_temperature;
  648. params.replacement_rate = this.form.replacement_rate;
  649. params.displacement_quantity = this.form.displacement_quantity;
  650. params.ktv = this.form.ktv;
  651. params.symptom = this.form.symptom;
  652. params.dispose = this.form.dispose;
  653. params.result = this.form.result;
  654. params.monitoring_nurse = this.form.monitoring_nurse;
  655. params.id = this.form.id;
  656. editMonitorRecord(params).then(rs => {
  657. var resp = rs.data;
  658. if (resp.state == 1) {
  659. this.loading = false
  660. var monitor = resp.data.monitor;
  661. this.$emit("did_edit_monitor", monitor);
  662. this.selectRow(-1, null);
  663. this.form.pulse_frequency = "";
  664. this.form.breathing_rated = "";
  665. this.form.systolic_bp = "";
  666. this.form.diastolic_bp = "";
  667. this.form.blood_flow_volume = "";
  668. this.form.venous_pressure = "";
  669. this.form.arterial_pressure = "";
  670. this.form.transmembrane_pressure = "";
  671. this.form.ultrafiltration_rate = "";
  672. this.form.ultrafiltration_volume = "";
  673. this.form.sodium_concentration = "";
  674. this.form.dialysate_temperature = "";
  675. this.form.replacement_rate = "";
  676. this.form.displacement_quantity = "";
  677. this.form.ktv = "";
  678. this.form.symptom = "";
  679. this.form.dispose = "";
  680. this.form.result = "";
  681. this.form.id = -1;
  682. Toast.success("修改成功");
  683. this.formPanel = false;
  684. this.listPanel = true;
  685. } else {
  686. this.loading = false
  687. Toast.fail(resp.msg);
  688. }
  689. });
  690. },
  691. submitAction: function() {
  692. this.loading = true
  693. Toast.loading({ forbidClick: true, duration: 0 });
  694. var params = {};
  695. params.patient_id = this.patient.id;
  696. params.order_id = this.order == null ? 0 : this.order.id;
  697. params.date = this.form.monitor_date;
  698. params.operate_time = parseInt(this.form.operate_time / 1000);
  699. params.pulse_frequency = this.form.pulse_frequency;
  700. params.breathing_rated = this.form.breathing_rated;
  701. params.systolic_bp = this.form.systolic_bp;
  702. params.diastolic_bp = this.form.diastolic_bp;
  703. params.blood_flow_volume = this.form.blood_flow_volume;
  704. params.venous_pressure = this.form.venous_pressure;
  705. params.arterial_pressure = this.form.arterial_pressure;
  706. params.transmembrane_pressure = this.form.transmembrane_pressure;
  707. params.ultrafiltration_rate = this.form.ultrafiltration_rate;
  708. params.ultrafiltration_volume = this.form.ultrafiltration_volume;
  709. params.sodium_concentration = this.form.sodium_concentration;
  710. params.dialysate_temperature = this.form.dialysate_temperature;
  711. params.replacement_rate = this.form.replacement_rate;
  712. params.displacement_quantity = this.form.displacement_quantity;
  713. params.ktv = this.form.ktv;
  714. params.symptom = this.form.symptom;
  715. params.dispose = this.form.dispose;
  716. params.result = this.form.result;
  717. params.monitoring_nurse = this.form.monitoring_nurse;
  718. addMonitorRecord(params)
  719. .then(rs => {
  720. var resp = rs.data;
  721. if (resp.state == 1) {
  722. this.loading = false
  723. var monitor = resp.data.monitor;
  724. this.$emit("did_add_monitor", monitor);
  725. // this.monitor_records.unshift(monitor)
  726. // this.monitor_records= this.quickSort(this.monitor_records,"operate_time",false)
  727. this.form.pulse_frequency = "";
  728. this.form.breathing_rated = "";
  729. this.form.systolic_bp = "";
  730. this.form.diastolic_bp = "";
  731. this.form.blood_flow_volume = "";
  732. this.form.venous_pressure = "";
  733. this.form.arterial_pressure = "";
  734. this.form.transmembrane_pressure = "";
  735. this.form.ultrafiltration_rate = "";
  736. this.form.ultrafiltration_volume = "";
  737. this.form.sodium_concentration = "";
  738. this.form.dialysate_temperature = "";
  739. this.form.replacement_rate = "";
  740. this.form.displacement_quantity = "";
  741. this.form.ktv = "";
  742. this.form.symptom = "";
  743. this.form.dispose = "";
  744. this.form.result = "";
  745. this.last_monitor_record.sodium_concentration =
  746. monitor.sodium_concentration;
  747. this.last_monitor_record.dialysate_temperature =
  748. monitor.dialysate_temperature;
  749. Toast.success("新增成功");
  750. this.formPanel = false;
  751. this.listPanel = true;
  752. } else {
  753. this.loading = false
  754. Toast.fail(resp.msg);
  755. }
  756. })
  757. .catch(err => {
  758. this.loading = false
  759. Toast.fail(err);
  760. });
  761. },
  762. showSubMenu: function(val) {
  763. switch (val) {
  764. case "symptom":
  765. this.propForm.type = 1;
  766. this.formPanel = false;
  767. this.propForm.title = "病情变化";
  768. this.visibility = true;
  769. this.propForm.list = getDataConfig("hemodialysis", "symptoms");
  770. this.propForm.optionList = [];
  771. this.propForm.isMultiple = 2;
  772. if (this.form.symptom.length > 0) {
  773. this.propForm.result = this.form.symptom.split(",");
  774. } else {
  775. this.propForm.result = [];
  776. }
  777. break;
  778. case "dispose":
  779. this.propForm.type = 2;
  780. this.formPanel = false;
  781. this.propForm.title = "处理";
  782. this.visibility = true;
  783. this.propForm.list = getDataConfig("hemodialysis", "deals");
  784. this.propForm.optionList = [];
  785. this.propForm.isMultiple = 2;
  786. if (this.form.dispose.length > 0) {
  787. this.propForm.result = this.form.dispose.split(",");
  788. } else {
  789. this.propForm.result = [];
  790. }
  791. break;
  792. case "result":
  793. this.propForm.type = 3;
  794. this.formPanel = false;
  795. this.propForm.title = "结果";
  796. this.visibility = true;
  797. this.propForm.list = getDataConfig("hemodialysis", "results");
  798. this.propForm.optionList = [];
  799. this.propForm.isMultiple = 2;
  800. if (this.form.result.length > 0) {
  801. this.propForm.result = this.form.result.split(",");
  802. } else {
  803. this.propForm.result = [];
  804. }
  805. break;
  806. }
  807. },
  808. menuCancle: function() {
  809. this.visibility = false;
  810. this.formPanel = true;
  811. },
  812. menuComfirm: function(val) {
  813. this.visibility = false;
  814. this.formPanel = true;
  815. switch (val.type) {
  816. case 1:
  817. this.form.symptom = val.result.join(",");
  818. break;
  819. case 2:
  820. this.form.dispose = val.result.join(",");
  821. break;
  822. case 3:
  823. this.form.result = val.result.join(",");
  824. break;
  825. }
  826. },
  827. open: function() {
  828. this.listPanel = true;
  829. this.formPanel = false;
  830. this.visibility = false;
  831. this.$refs.picker.close();
  832. var dialogTop = document.querySelector("#dialogTop");
  833. if (dialogTop != null) {
  834. this.$nextTick(() => {
  835. dialogTop.scrollTop = 0;
  836. });
  837. }
  838. },
  839. parseTime: function(time, format) {
  840. return parseTime(time, format);
  841. },
  842. quickSort(arr, name, snum) {
  843. //如果数组<=1,则直接返回
  844. if (arr.length <= 1) {
  845. return arr;
  846. }
  847. var pivotIndex = Math.floor(arr.length / 2);
  848. //找基准,并把基准从原数组删除
  849. var pivot = arr.splice(pivotIndex, 1)[0];
  850. var middleNum = pivot[name];
  851. // 定义左右数组
  852. var left = [];
  853. var right = [];
  854. //比基准小的放在left,比基准大的放在right
  855. if (snum) {
  856. for (var i = 0; i < arr.length; i++) {
  857. if (arr[i][name] <= middleNum) {
  858. left.push(arr[i]);
  859. } else {
  860. right.push(arr[i]);
  861. }
  862. }
  863. } else {
  864. for (var i = 0; i < arr.length; i++) {
  865. if (arr[i][name] <= middleNum) {
  866. left.push(arr[i]);
  867. } else {
  868. right.push(arr[i]);
  869. }
  870. }
  871. }
  872. //递归,返回所需数组
  873. return this.quickSort(left, name, snum).concat(
  874. [pivot],
  875. this.quickSort(right, name, snum)
  876. );
  877. }
  878. },
  879. components: {
  880. CheckBoxSubMenu
  881. }
  882. };
  883. </script>
  884. <style style="stylesheet/scss" lang="scss" scoped>
  885. .DialogContent {
  886. .content {
  887. .cell {
  888. float: left;
  889. width: 4.93rem;
  890. margin: 0.35rem 0 0 0.5rem !important;
  891. label {
  892. display: block;
  893. height: 0.55rem;
  894. line-height: 0.55rem;
  895. color: $pgh-color;
  896. }
  897. select {
  898. width: 100%;
  899. padding: 0.2rem 0;
  900. border: 1px $border-color solid;
  901. border-radius: 2px;
  902. padding-left: 5px;
  903. }
  904. .inputBox {
  905. border: 1px $border-color solid;
  906. border-radius: 2px;
  907. padding: 0.18rem 0;
  908. padding-left: 5px;
  909. width: 100%;
  910. }
  911. .input_focus {
  912. margin-bottom: 2rem;
  913. }
  914. .textarea {
  915. width: 100%;
  916. height: 1.22rem;
  917. border: 1px $border-color solid;
  918. border-radius: 2px;
  919. padding-left: 5px;
  920. }
  921. }
  922. .width {
  923. width: 95%;
  924. @include box-sizing;
  925. label {
  926. display: inline-block;
  927. }
  928. button {
  929. background: $main-color;
  930. color: #fff;
  931. border-radius: 6px;
  932. width: 3.1rem;
  933. height: 0.9rem;
  934. line-height: 0.9rem;
  935. text-align: center;
  936. margin: 0 0 0.9rem 0;
  937. }
  938. }
  939. .center {
  940. text-align: center;
  941. }
  942. }
  943. }
  944. .row-class-active > td {
  945. background: #badcff !important;
  946. }
  947. </style>