血透系统pad前端

LongTable.vue 26KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844
  1. <template>
  2. <div>
  3. <div class="blueBorder"></div>
  4. <div class="scrollBox">
  5. <div class="scrollTable">
  6. <div class="tableTit">
  7. <ul>
  8. <li
  9. v-for="(item,index) in ['序号','透析模式','透析时长','医生','更新日期','操作']"
  10. :key="index"
  11. :value="item.value"
  12. >{{item}}</li>
  13. </ul>
  14. </div>
  15. <div class="tableDate">
  16. <van-list v-model="loading" :finished="finished" @load="onLoad">
  17. <ul>
  18. <li v-for="(item,index) in tableDate" :key="index" :value="item.value">
  19. <span>{{item.no}}</span>
  20. <span>{{item.mode_name}}</span>
  21. <span>{{item.dialysis_duration_hour}}h {{item.dialysis_duration_minute}}min</span>
  22. <span>{{tranDoctor(item.registrars_id)}}</span>
  23. <span>{{item.edate}}</span>
  24. <span @click="openEdit(index, item)">
  25. <i class="iconfont">&#xe6f7;</i>修改
  26. </span>
  27. </li>
  28. </ul>
  29. </van-list>
  30. <div class="NoData" v-show="tableDate.length == 0">
  31. <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
  32. </div>
  33. </div>
  34. </div>
  35. </div>
  36. <!-- <div class="newTable">
  37. <el-table :data="tableDate" border style="width: 100%">
  38. <el-table-column fixed prop="date" label="序号" width="100" align="center">
  39. <template slot-scope="scope">
  40. {{scope.row.no}}
  41. </template>
  42. </el-table-column>
  43. <el-table-column prop="name" label="透析模式" width="100" align="center">
  44. <template slot-scope="scope">
  45. {{scope.row.mode_name}}
  46. </template>
  47. </el-table-column>
  48. <el-table-column prop="province" label="透析时长" width="120" align="center">
  49. <template slot-scope="scope">
  50. {{scope.row.dialysis_duration_hour}}h {{scope.row.dialysis_duration_minute}}min
  51. </template>
  52. </el-table-column>
  53. <el-table-column prop="city" label="医生" width="120" align="center">
  54. <template slot-scope="scope">
  55. {{tranDoctor(scope.row.registrars_id)}}
  56. </template>
  57. </el-table-column>
  58. <el-table-column prop="address" label="更新日期" width="100" align="center">
  59. <template slot-scope="scope">
  60. {{scope.row.edate}}
  61. </template>
  62. </el-table-column>
  63. </el-table>
  64. </div>-->
  65. <van-popup
  66. title="透析处方"
  67. v-model="showObj.showPopup"
  68. :overlay="true"
  69. @click-overlay="popupDidHide()"
  70. >
  71. <div v-if="showObj.showForm" class="Dialog">
  72. <div class="DialogTit">
  73. <span @click="popupDidHide()" class="iconfont">&#xe6e9;</span>
  74. <h1 class="name">透析处方</h1>
  75. <span @click="commitInfo" class="success">完成</span>
  76. </div>
  77. <div class="DialogContent" id="dialogTop">
  78. <div @click="showSubMenu('mode')" class="item" ref="mode">
  79. <label class="name" for="txms">透析模式</label>
  80. <div class="content">
  81. <span class="text" id="txms">{{GetModeByModeId(dialysisSolution.mode_id)}}</span>
  82. <span class="iconfont">&#xe6f9;</span>
  83. </div>
  84. </div>
  85. <div class="item" @click="openPicker">
  86. <label class="name" for="txsc">透析时长</label>
  87. <div class="content">
  88. <span class="text" style="width: 100px">{{timeValue}}</span>
  89. <span class="iconfont">&#xe6f9;</span>
  90. </div>
  91. </div>
  92. <div class="item">
  93. <label class="name" for="xll">血流量(ml/min)</label>
  94. <div class="content">
  95. <input
  96. type="tel"
  97. @focus="inputFocus"
  98. id="xll"
  99. v-model="dialysisSolution.blood_flow_volume"
  100. />
  101. </div>
  102. </div>
  103. <div class="item">
  104. <label class="name" for="mbcll">目标超滤量(ml)</label>
  105. <div class="content">
  106. <input
  107. type="tel"
  108. @focus="inputFocus"
  109. id="mbcll"
  110. v-model="dialysisSolution.target_ultrafiltration"
  111. />
  112. </div>
  113. </div>
  114. <div
  115. @click="showSubMenu('dialysate_formulation')"
  116. class="item"
  117. ref="dialysate_formulation"
  118. >
  119. <label class="name" for="txypf">透析液配方</label>
  120. <div class="content">
  121. <span
  122. class="text"
  123. id="txypf"
  124. >{{GetDialysateFormulationById(dialysisSolution.dialysate_formulation)}}</span>
  125. <span class="iconfont">&#xe6f9;</span>
  126. </div>
  127. </div>
  128. <div @click="showSubMenu('anticoagulant')" class="item" ref="anticoagulant">
  129. <label class="name" for="knj">抗疑剂</label>
  130. <div class="content">
  131. <span class="text" id="knj">{{GetAnticoagulantById(dialysisSolution.anticoagulant)}}</span>
  132. <span class="iconfont">&#xe6f9;</span>
  133. </div>
  134. </div>
  135. <div class="item" v-if="anticoagulant.shouji != -1">
  136. <label class="name" for="sj">首剂({{anticoagulant.shouji_unit}})</label>
  137. <div class="content">
  138. <input
  139. type="tel"
  140. @focus="inputFocus"
  141. id="sj"
  142. v-model="dialysisSolution.anticoagulant_shouji"
  143. :disabled="anticoagulant.shouji==1?false:true"
  144. />
  145. </div>
  146. </div>
  147. <div class="item" v-if="anticoagulant.weichi != -1">
  148. <label class="name" for="wz">维持({{anticoagulant.weichi_unit}})</label>
  149. <div class="content">
  150. <input
  151. type="tel"
  152. @focus="inputFocus"
  153. id="wz"
  154. class="inputBox"
  155. v-model="dialysisSolution.anticoagulant_weichi"
  156. :disabled="anticoagulant.weichi==1?false:true"
  157. />
  158. </div>
  159. </div>
  160. <div class="item" v-if="anticoagulant.zongliang != -1">
  161. <label class="name" for="zl">总量(mg)</label>
  162. <div class="content">
  163. <input
  164. type="tel"
  165. @focus="inputFocus"
  166. id="zl"
  167. class="inputBox"
  168. v-model="dialysisSolution.anticoagulant_zongliang"
  169. :disabled="anticoagulant.zongliang==1?false:true"
  170. />
  171. </div>
  172. </div>
  173. <div class="item" v-if="anticoagulant.gaimingcheng != -1">
  174. <label class="name" for="g">钙名称({{anticoagulant.gaimingcheng_unit}})</label>
  175. <div class="content">
  176. <input
  177. type="text"
  178. id="g"
  179. class="inputBox"
  180. v-model="dialysisSolution.anticoagulant_gaimingcheng"
  181. :disabled="anticoagulant.gaimingcheng==1?false:true"
  182. />
  183. </div>
  184. </div>
  185. <div class="item" v-if="anticoagulant.gaijiliang != -1">
  186. <label class="name" for="gjl">钙剂量</label>
  187. <div class="content">
  188. <input
  189. type="text"
  190. id="gjl"
  191. class="inputBox"
  192. v-model="dialysisSolution.anticoagulant_gaimingcheng"
  193. :disabled="anticoagulant.gaimingcheng==1?false:true"
  194. />
  195. </div>
  196. </div>
  197. <div class="line"></div>
  198. <div class="item">
  199. <label class="name" for="zhy">置换量(L)</label>
  200. <div class="content">
  201. <input
  202. type="tel"
  203. @focus="inputFocus"
  204. id="zhy"
  205. v-model="dialysisSolution.replacement_total"
  206. />
  207. </div>
  208. </div>
  209. <div class="item">
  210. <label class="name" for="j">钾(mmol/L)</label>
  211. <div class="content">
  212. <input type="tel" @focus="inputFocus" id="j" v-model="dialysisSolution.kalium" />
  213. </div>
  214. </div>
  215. <div class="item">
  216. <label class="name" for="n">钠(mmol/L):</label>
  217. <div class="content">
  218. <input type="tel" @focus="inputFocus" id="n" v-model="dialysisSolution.sodium" />
  219. </div>
  220. </div>
  221. <div class="item">
  222. <label class="name" for="gg">钙(mmol/L)</label>
  223. <div class="content">
  224. <input type="tel" @focus="inputFocus" id="gg" v-model="dialysisSolution.calcium" />
  225. </div>
  226. </div>
  227. <div class="item">
  228. <label class="name" for="tsqy">碳酸氢盐(mmol/L)</label>
  229. <div class="content">
  230. <input
  231. type="tel"
  232. @focus="inputFocus"
  233. id="tsqy"
  234. v-model="dialysisSolution.bicarbonate"
  235. />
  236. </div>
  237. </div>
  238. <div class="item">
  239. <label class="name" for="ptt">葡萄糖(mmol/L)</label>
  240. <div class="content">
  241. <input type="tel" @focus="inputFocus" id="ptt" v-model="dialysisSolution.glucose" />
  242. </div>
  243. </div>
  244. <div class="line"></div>
  245. <div class="item">
  246. <label class="name" for="txyll">透析液流量(ml/min)</label>
  247. <div class="content">
  248. <input
  249. type="tel"
  250. @focus="inputFocus"
  251. id="txyll"
  252. v-model="dialysisSolution.dialysate_flow"
  253. />
  254. </div>
  255. </div>
  256. <div class="item">
  257. <label class="name" for="txywd">透析液温度(℃)</label>
  258. <div class="content">
  259. <!--<span class="text">HD</span>-->
  260. <!--<span class="iconfont">&#xe6f9;</span>-->
  261. <input
  262. type="tel"
  263. @focus="inputFocus"
  264. id="txywd"
  265. v-model="dialysisSolution.dialysate_temperature"
  266. />
  267. </div>
  268. </div>
  269. <div class="item">
  270. <label class="name" for="dtl">电导率(mS/cm)</label>
  271. <div class="content">
  272. <!--<span class="text">HD</span>-->
  273. <!--<span class="iconfont">&#xe6f9;</span>-->
  274. <input
  275. type="tel"
  276. @focus="inputFocus"
  277. id="dtl"
  278. v-model="dialysisSolution.conductivity"
  279. />
  280. </div>
  281. </div>
  282. <div class="line"></div>
  283. <div>
  284. <div class="item">
  285. <label class="name" for="bz">备注</label>
  286. <div class="content">
  287. <span class="text"></span>
  288. </div>
  289. </div>
  290. <textarea
  291. class="textarea"
  292. id="bz"
  293. placeholder="请输入内容"
  294. v-model="dialysisSolution.remark"
  295. @focus="lastInputFocus"
  296. @blur="lastInputBlur"
  297. ></textarea>
  298. </div>
  299. <!--<div class="footer">-->
  300. <!--处方医生:刘小军 医生-->
  301. <!--</div>-->
  302. </div>
  303. </div>
  304. <check-box-sub-menu
  305. :visibility="visibility"
  306. v-on:menu-cancle="menuCancle"
  307. v-on:menu-comfirm="menuComfirm"
  308. :propsForm="propForm"
  309. ></check-box-sub-menu>
  310. <mt-datetime-picker
  311. ref="picker"
  312. type="time"
  313. hourFormat="{value}小时"
  314. minuteFormat="{value}分钟"
  315. @confirm="handleTimeConfirm"
  316. v-model="time"
  317. ></mt-datetime-picker>
  318. </van-popup>
  319. </div>
  320. </template>
  321. <script>
  322. import {
  323. GetPatientDialysisSolutionList,
  324. EditDialysisSolution
  325. } from "@/api/patient";
  326. import { parseTime } from "@/utils";
  327. import { fetchAllAdminUsers } from "@/api/doctor";
  328. import { getDataConfig } from "@/utils/data";
  329. import CheckBoxSubMenu from "../dialog/subMenu/checkBoxSubMenu";
  330. import { Toast } from "vant";
  331. let allno = 1;
  332. export default {
  333. name: "LongTable",
  334. data() {
  335. return {
  336. visibility: false,
  337. loading: false,
  338. finished: false,
  339. queryParams: {
  340. page: 0,
  341. id: 0,
  342. limit: 10
  343. },
  344. tableDate: [],
  345. adminUserOptions: {},
  346. currentIndex: -1,
  347. showObj: {
  348. showPopup: false,
  349. showForm: true
  350. },
  351. dialysisSolution: {
  352. id: 0,
  353. mode: "",
  354. mode_id: "",
  355. mode_name: "",
  356. dialysis_duration: "",
  357. dialysis_duration_hour: "",
  358. dialysis_duration_minute: "",
  359. hemodialysis_machine: "",
  360. perfusion_apparatus: "",
  361. perfusion_apparatus_name: "",
  362. blood_flow_volume: "",
  363. dewater: "",
  364. displace_liqui: 0,
  365. replacement_way: "",
  366. replacement_way_name: "",
  367. anticoagulant: "",
  368. anticoagulant_name: "",
  369. anticoagulant_shouji: "",
  370. anticoagulant_weichi: "",
  371. anticoagulant_zongliang: "",
  372. anticoagulant_gaimingcheng: "",
  373. anticoagulant_gaijiliang: "",
  374. target_ultrafiltration: "",
  375. dialysate_formulation: "",
  376. replacement_total: "",
  377. kalium: "",
  378. sodium: "",
  379. calcium: "",
  380. bicarbonate: "",
  381. glucose: "",
  382. dry_weight: "",
  383. dialysate_flow: "",
  384. dialysate_temperature: "",
  385. conductivity: "",
  386. doctor: "",
  387. remark: ""
  388. },
  389. anticoagulant: {
  390. id: 0,
  391. name: "",
  392. type: 1,
  393. shouji: 1,
  394. weichi: 1,
  395. zongliang: 1,
  396. gaimingcheng: -1,
  397. gaijiliang: -1,
  398. shouji_unit: "mg",
  399. weichi_unit: "mg/h",
  400. zongliang_unit: "mg",
  401. gaimingcheng_unit: "",
  402. gaijiliang_unit: ""
  403. },
  404. propForm: {
  405. title: "",
  406. list: [],
  407. optionList: [],
  408. isMultiple: 2,
  409. result: [], // 选中的值
  410. type: 1, // 用来区分不同子菜单,方便对返回值进行赋值
  411. selectId: 0
  412. },
  413. modeOption: [],
  414. dialysateFormulationOptions: [],
  415. anticoagulantsConfit: {},
  416. timeValue: "",
  417. time: "03:00",
  418. record_date: ""
  419. };
  420. },
  421. methods: {
  422. commitInfo: function() {
  423. Toast.loading({ forbidClick: true, duration: 0 });
  424. this.dialysisSolution.mode = this.dialysisSolution.mode_id;
  425. EditDialysisSolution(
  426. this.dialysisSolution.id,
  427. this.dialysisSolution
  428. ).then(response => {
  429. if (response.data.state == 0) {
  430. Toast.fail(response.data.msg);
  431. return false;
  432. } else {
  433. Toast.success("修改成功");
  434. for (const key in response.data.data.solution) {
  435. this.tableDate[this.currentIndex][key] =
  436. response.data.data.solution[key];
  437. }
  438. this.popupDidHide();
  439. }
  440. });
  441. },
  442. openEdit(index, item) {
  443. this.currentIndex = index;
  444. for (var key in item) {
  445. this.dialysisSolution[key] = item[key];
  446. }
  447. this.timeValue =
  448. this.dialysisSolution.dialysis_duration_hour +
  449. "小时" +
  450. this.dialysisSolution.dialysis_duration_minute +
  451. "分钟";
  452. this.time =
  453. (this.dialysisSolution.dialysis_duration_hour >= 10
  454. ? this.dialysisSolution.dialysis_duration_hour
  455. : "0" + this.dialysisSolution.dialysis_duration_hour) +
  456. ":" +
  457. (this.dialysisSolution.dialysis_duration_minute >= 10
  458. ? this.dialysisSolution.dialysis_duration_minute
  459. : "0" + this.dialysisSolution.dialysis_duration_minute);
  460. this.showObj.showPopup = true;
  461. // document.getElementById('dialogTop').scrollTop = 200;
  462. var dialogTop = document.querySelector("#dialogTop");
  463. if (dialogTop != null) {
  464. this.$nextTick(() => {
  465. dialogTop.scrollTop = 0;
  466. });
  467. }
  468. },
  469. popupDidHide() {
  470. this.showObj.showPopup = false;
  471. this.visibility = false;
  472. this.showObj.showForm = true;
  473. },
  474. openPicker: function() {
  475. this.$refs.picker.open();
  476. },
  477. showSubMenu: function(val) {
  478. switch (val) {
  479. case "mode":
  480. this.propForm.type = 1;
  481. this.showObj.showForm = false;
  482. this.propForm.title = "透析模式";
  483. this.visibility = true;
  484. this.propForm.list = [];
  485. this.propForm.optionList = this.modeOption;
  486. this.propForm.isMultiple = 1;
  487. this.propForm.selectId = this.dialysisSolution.mode_id;
  488. this.propForm.click_ref = "mode";
  489. break;
  490. case "anticoagulant":
  491. this.propForm.type = 5;
  492. this.showObj.showForm = false;
  493. this.propForm.title = "抗疑剂";
  494. this.visibility = true;
  495. this.propForm.list = [];
  496. this.propForm.optionList = this.anticoagulantsConfit;
  497. this.propForm.isMultiple = 1;
  498. this.propForm.selectId = this.dialysisSolution.anticoagulant;
  499. this.propForm.click_ref = "anticoagulant";
  500. break;
  501. case "dialysate_formulation":
  502. this.propForm.type = 6;
  503. this.showObj.showForm = false;
  504. this.propForm.title = "透析液配方";
  505. this.visibility = true;
  506. this.propForm.list = [];
  507. this.propForm.optionList = this.dialysateFormulationOptions;
  508. this.propForm.isMultiple = 1;
  509. this.propForm.selectId = this.dialysisSolution.dialysate_formulation;
  510. this.propForm.click_ref = "dialysate_formulation";
  511. break;
  512. }
  513. },
  514. menuCancle: function() {
  515. this.visibility = false;
  516. this.showObj.showForm = true;
  517. this.$nextTick(() => {
  518. if (
  519. this.$refs[this.propForm.click_ref] != undefined &&
  520. this.$refs[this.propForm.click_ref] != null
  521. ) {
  522. this.$refs[this.propForm.click_ref].scrollIntoView();
  523. }
  524. });
  525. },
  526. menuComfirm: function(val) {
  527. this.visibility = false;
  528. this.showObj.showForm = true;
  529. this.$nextTick(() => {
  530. if (
  531. this.$refs[this.propForm.click_ref] != undefined &&
  532. this.$refs[this.propForm.click_ref] != null
  533. ) {
  534. this.$refs[this.propForm.click_ref].scrollIntoView();
  535. }
  536. });
  537. switch (val.type) {
  538. case 1:
  539. this.dialysisSolution.mode_id = val.selectId;
  540. this.dialysisSolution.mode_name = this.GetModeByModeId(
  541. this.dialysisSolution.mode_id
  542. );
  543. break;
  544. case 5:
  545. this.dialysisSolution.anticoagulant = val.selectId;
  546. if (
  547. typeof this.anticoagulantsConfit[val.selectId] === "undefined" ||
  548. this.anticoagulantsConfit[val.selectId] == null
  549. ) {
  550. return;
  551. }
  552. this.anticoagulant = this.anticoagulantsConfit[val.selectId];
  553. break;
  554. case 6:
  555. this.dialysisSolution.dialysate_formulation = val.selectId;
  556. break;
  557. }
  558. },
  559. handleTimeConfirm: function(val) {
  560. val = val.replace("小时");
  561. val = val.replace("分钟");
  562. let timeArray = val.split(":");
  563. if (parseInt(timeArray[0].substring(0, 1)) == 0) {
  564. this.dialysisSolution.dialysis_duration_hour = timeArray[0].charAt(
  565. timeArray[0].length - 1
  566. );
  567. } else {
  568. this.dialysisSolution.dialysis_duration_hour = timeArray[0];
  569. }
  570. if (parseInt(timeArray[1].substring(0, 1)) == 0) {
  571. this.dialysisSolution.dialysis_duration_minute = timeArray[1].charAt(
  572. timeArray[1].length - 1
  573. );
  574. } else {
  575. this.dialysisSolution.dialysis_duration_minute = timeArray[1];
  576. }
  577. this.timeValue =
  578. this.dialysisSolution.dialysis_duration_hour +
  579. "小时" +
  580. this.dialysisSolution.dialysis_duration_minute +
  581. "分钟";
  582. this.dialysisSolution.dialysis_duration =
  583. this.dialysisSolution.dialysis_duration_hour +
  584. "." +
  585. this.dialysisSolution.dialysis_duration_minute;
  586. },
  587. GetModeByModeId: function(val) {
  588. let treatment_mode_name = "";
  589. let treatment_mode = this.modeOption;
  590. for (let keys in treatment_mode) {
  591. if (treatment_mode[keys].id == val) {
  592. treatment_mode_name = treatment_mode[keys].name;
  593. }
  594. }
  595. return treatment_mode_name;
  596. },
  597. inputFocus: function(event) {
  598. var input = event.target;
  599. setTimeout(function() {
  600. input.scrollIntoView();
  601. }, 0);
  602. if (input.setSelectionRange) {
  603. setTimeout(function() {
  604. input.setSelectionRange(0, input.value.length);
  605. }, 0);
  606. } else if (input.createTextRange) {
  607. var rng = input.createTextRange();
  608. rng.move("character", input.value.length);
  609. rng.select();
  610. }
  611. },
  612. lastInputBlur: function(event) {
  613. var input = event.target;
  614. setTimeout(function() {
  615. input.style.marginBottom = "";
  616. }, 0);
  617. },
  618. lastInputFocus: function(event) {
  619. var input = event.target;
  620. setTimeout(function() {
  621. input.style.marginBottom = "2rem";
  622. input.parentNode.scrollIntoView();
  623. }, 0);
  624. },
  625. GetDialysateFormulationById: function(val) {
  626. let name = "";
  627. let dfl = this.dialysateFormulationOptions.length;
  628. for (let index = 0; index < dfl; index++) {
  629. if (this.dialysateFormulationOptions[index].id == val) {
  630. name = this.dialysateFormulationOptions[index].name;
  631. break;
  632. }
  633. }
  634. return name;
  635. },
  636. GetAnticoagulantById: function(val) {
  637. let anticoagulan_name = "";
  638. let anticoagulant = this.anticoagulantsConfit;
  639. for (let keys in anticoagulant) {
  640. if (anticoagulant[keys].id == val) {
  641. anticoagulan_name = anticoagulant[keys].name;
  642. }
  643. }
  644. return anticoagulan_name;
  645. },
  646. tranDoctor(id) {
  647. if (id in this.adminUserOptions) {
  648. return this.adminUserOptions[id].name;
  649. } else {
  650. return "未知";
  651. }
  652. },
  653. fetchAllAdminUsers() {
  654. fetchAllAdminUsers().then(response => {
  655. if (response.data.state == 1) {
  656. var ul = response.data.data.users.length;
  657. for (let index = 0; index < ul; index++) {
  658. this.adminUserOptions[response.data.data.users[index].id] =
  659. response.data.data.users[index];
  660. }
  661. }
  662. });
  663. },
  664. onLoad() {
  665. // 异步更新数据
  666. this.queryParams.page++;
  667. GetPatientDialysisSolutionList(this.queryParams).then(response => {
  668. if (response.data.state == 1) {
  669. var sl = response.data.data.solutions.length;
  670. if (sl == 0) {
  671. this.finished = true;
  672. } else {
  673. for (let index = 0; index < sl; index++) {
  674. var solution = response.data.data.solutions[index];
  675. solution.no = allno;
  676. solution.edate = parseTime(
  677. solution.updated_time,
  678. "{y}-{m}-{d} {h}:{i}"
  679. );
  680. allno++;
  681. this.tableDate.push(solution);
  682. }
  683. }
  684. this.loading = false;
  685. }
  686. });
  687. }
  688. },
  689. created() {
  690. allno = 1;
  691. this.fetchAllAdminUsers();
  692. this.queryParams.id = this.$route.query.patient_id;
  693. this.onLoad();
  694. this.modeOption = this.$store.getters.treatment_mode;
  695. this.dialysateFormulationOptions = getDataConfig(
  696. "hemodialysis",
  697. "dialysate_formulation"
  698. );
  699. this.anticoagulantsConfit = this.$store.getters.anticoagulants_confit;
  700. var date = this.$route.query && this.$route.query.date;
  701. date *= 1000;
  702. var newDate = new Date(date);
  703. var y = newDate.getFullYear();
  704. var m = newDate.getMonth() + 1;
  705. var d = newDate.getDate();
  706. if (isNaN(y) || isNaN(m) || isNaN(d)) {
  707. newDate = new Date();
  708. y = newDate.getFullYear();
  709. m = newDate.getMonth() + 1;
  710. d = newDate.getDate();
  711. }
  712. this.record_date =
  713. y + "-" + (m < 10 ? "0" + m : m) + "-" + (d < 10 ? "0" + d : d);
  714. },
  715. components: {
  716. CheckBoxSubMenu
  717. }
  718. };
  719. </script>
  720. <style style="stylesheet/scss" lang="scss" scoped>
  721. .textarea {
  722. width: 100%;
  723. height: 2.4rem;
  724. line-height: 0.6rem;
  725. color: $pgh-color;
  726. font-size: 0.28rem;
  727. padding-left: 0.36rem;
  728. border: none;
  729. border-bottom: 1px #e5e5e5 solid;
  730. }
  731. .tableTit {
  732. background: $main-color;
  733. color: $text-color;
  734. @include box-sizing;
  735. ul {
  736. @include display-flex;
  737. @include align-items-center;
  738. @include text-align;
  739. @include justify-content-center;
  740. li {
  741. @include flex;
  742. border-right: 2px #fff solid;
  743. font-size: 0.45rem;
  744. height: 1.2rem;
  745. line-height: 1.2rem;
  746. }
  747. &:last-child {
  748. border-right: none;
  749. }
  750. }
  751. }
  752. .tableDate {
  753. background: $text-color;
  754. color: $pgh-color;
  755. @include box-sizing;
  756. ul {
  757. li {
  758. font-size: 0.45rem;
  759. height: 1.2rem;
  760. line-height: 1.2rem;
  761. @include display-flex;
  762. @include align-items-center;
  763. @include text-align;
  764. @include justify-content-center;
  765. span {
  766. @include flex;
  767. border-right: 2px #fff solid;
  768. border-bottom: 2px #fff solid;
  769. background: #ecf5ff;
  770. display: inline-block;
  771. height: 1.2rem;
  772. line-height: 1.2rem;
  773. &:last-child {
  774. color: $main-color;
  775. }
  776. .iconfont {
  777. color: $main-color;
  778. font-size: 0.3rem;
  779. margin-right: 0.1rem;
  780. }
  781. }
  782. }
  783. &:last-child {
  784. border-right: none;
  785. }
  786. }
  787. }
  788. .scrollBox {
  789. width: 100%;
  790. overflow: auto;
  791. .scrollTable {
  792. width: 768px;
  793. }
  794. }
  795. </style>
  796. <style lang="scss">
  797. .newTable {
  798. .el-table td {
  799. padding: 0;
  800. }
  801. .el-table th {
  802. padding: 6px 0;
  803. }
  804. }
  805. </style>