血透系统pad前端

PrintIndex.vue 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545
  1. <template>
  2. <div class="mainBox" v-loading="loading" element-loading-text="加载中" element-loading-spinner="el-icon-loading" element-loading-background="rgba(0, 0, 0, 0.8)" style="width: 100%;height: 100%">
  3. <side-bar :active_index="0" v-if="isShow == true"></side-bar>
  4. <div class="mainContent">
  5. <div class="navigation" v-if="isShow == true">
  6. <div class="goBack">
  7. <span class="back" @click="backAction()"><span class="iconfont">&#xe720;</span>返回</span>
  8. </div>
  9. <!--<div class="print" style="float: right">-->
  10. <!--&lt;!&ndash;<el-button size="mini" type="primary" icon="el-icon-printer" @click="printThisPage">打印</el-button>&ndash;&gt;-->
  11. <!--</div>-->
  12. </div>
  13. <DialysisPrintOrderOne style="margin-top:60px;" v-bind:childResponse="childResponse" v-if="org_template_info.template_id ==1"> </DialysisPrintOrderOne>
  14. <DialysisPrintOrderTwo style="margin-top:60px;" v-bind:childResponse="childResponse" v-if="org_template_info.template_id ==2||org_template_info.template_id ==0"></DialysisPrintOrderTwo>
  15. </div>
  16. </div>
  17. </template>
  18. <script>
  19. import { getPrintDialysisRecord } from "@/api/dialysis";
  20. import { getDataConfig } from "@/utils/data";
  21. import SideBar from "@/pages/layout/SideBar";
  22. import { jsGetAge, uParseTime } from "@/utils/tools";
  23. import { fetchAllAdminUsers } from "@/api/doctor";
  24. import LabelBox from "./printItem/LabelBox";
  25. import DialysisPrintOrderOne from './template/DialysisPrintOrderOne';
  26. import DialysisPrintOrderTwo from './template/DialysisPrintOrderTwo';
  27. export default {
  28. name: "PrintIndex",
  29. components: {
  30. DialysisPrintOrderOne,
  31. DialysisPrintOrderTwo,
  32. LabelBox,
  33. SideBar
  34. },
  35. data() {
  36. return {
  37. isShowImg: true,
  38. isShow: true,
  39. operators: [],
  40. dialysisOrder: {
  41. DeviceNumber: []
  42. },
  43. org_template_info: {},
  44. childResponse: {},
  45. operatorMaps: {},
  46. complications: [
  47. "低血压",
  48. "高血压",
  49. "心律失常",
  50. "头晕",
  51. "头痛",
  52. "呕吐",
  53. "抽搐",
  54. "出血",
  55. "心衰",
  56. "腹痛"
  57. ],
  58. jilurow: 10,
  59. loading: true,
  60. orgname: "",
  61. patientInfo_gender_1: false,
  62. patientInfo_gender_2: false,
  63. patientInfo_source_2: false,
  64. patientInfo_source_1: false,
  65. modeOptions: {},
  66. replacementWays: [],
  67. perfusionApparatus: [],
  68. anticoagulantsConfit: {},
  69. bloodAccessParOpera: {},
  70. dialysateFormulationOptions: {},
  71. queryParams: {
  72. xtdate: "",
  73. xtno: ""
  74. },
  75. patientInfo: {
  76. birth: "",
  77. age: "",
  78. DialysisSchedule: {
  79. device_number: { number: "" },
  80. device_zone: { name: "" }
  81. },
  82. gender: 0
  83. },
  84. predialysis: {
  85. internal_fistula: "",
  86. internal_fistula_skin: "",
  87. catheter: "",
  88. blood_access_part_opera_name: ""
  89. },
  90. afterdialysis: {
  91. complications_index: ""
  92. },
  93. prescription: {
  94. dialysate_formulation_name: "",
  95. device: {}
  96. },
  97. advices: [],
  98. users: [],
  99. monitors: [],
  100. summary: {},
  101. adminUser: [],
  102. receiverTreatmentAccess: {},
  103. AlPanel: {
  104. id: 0,
  105. name: "",
  106. type: 1,
  107. shouji: 2,
  108. weichi: 2,
  109. zongliang: 2,
  110. gaimingcheng: -1,
  111. gaijiliang: -1,
  112. shouji_unit: "mg",
  113. weichi_unit: "mg/h",
  114. zongliang_unit: "mg",
  115. gaimingcheng_unit: "",
  116. gaijiliang_unit: ""
  117. }
  118. };
  119. },
  120. methods: {
  121. getUser() {
  122. fetchAllAdminUsers().then(response => {
  123. if (response.data.state == 1) {
  124. this.adminUser = response.data.data.users;
  125. console.log(this.adminUser);
  126. this.loading = false;
  127. } else {
  128. this.loading = false;
  129. this.$message.error("请求数据失败");
  130. return false;
  131. }
  132. });
  133. },
  134. getTime(value, temp) {
  135. if (value != undefined) {
  136. return uParseTime(value, temp);
  137. }
  138. return "";
  139. },
  140. // printThisPage() {
  141. // var xtdate = this.$route.query.xtdate;
  142. // this.$router.push(
  143. // "/Prints?xtdate=" + xtdate + "&xtno=" + this.$route.query.xtno
  144. // );
  145. // },
  146. backAction() {
  147. this.$router.back(-1);
  148. },
  149. getXuserName(id) {
  150. if (id <= 0) {
  151. return "";
  152. }
  153. var name = "";
  154. if (this.users == null || typeof this.users.length == "undefined") {
  155. return name;
  156. }
  157. var leng = this.users.length;
  158. if (leng == 0) {
  159. return name;
  160. }
  161. for (let index = 0; index < leng; index++) {
  162. if (this.users[index].id == id) {
  163. name = this.users[index].name;
  164. break;
  165. }
  166. }
  167. return name;
  168. },
  169. setAdminUserES(id) {
  170. console.log(id);
  171. if (id == 0) {
  172. return "";
  173. }
  174. if (id == undefined) {
  175. return "";
  176. }
  177. if (id in this.operatorMaps) {
  178. return this.operatorMaps[id].url;
  179. }
  180. return "";
  181. },
  182. modeName(mode_id) {
  183. return typeof this.modeOptions[mode_id] != "undefined" &&
  184. typeof this.modeOptions[mode_id].name != "undefined"
  185. ? this.modeOptions[mode_id].name
  186. : "";
  187. },
  188. getDialysisRecord() {
  189. this.loading = true
  190. getPrintDialysisRecord(this.queryParams).then(response => {
  191. this.loading = false
  192. if (response.data.state == 1) {
  193. this.childResponse = response
  194. this.org_template_info = response.data.data.org_template_info
  195. } else {
  196. this.$message.error("请求数据失败");
  197. return false;
  198. }
  199. console.log(this.advices);
  200. });
  201. },
  202. bloodAccessParOperaName(id) {
  203. if (id in this.bloodAccessParOpera) {
  204. return this.bloodAccessParOpera[id].name;
  205. }
  206. return "";
  207. },
  208. dialysateFormulationName(id) {
  209. if (id in this.dialysateFormulationOptions) {
  210. return this.dialysateFormulationOptions[id].name;
  211. }
  212. return "";
  213. },
  214. getNumber() {
  215. if (this.dialysisOrder != null) {
  216. return (
  217. this.patientInfo.DialysisSchedule.device_zone.name +
  218. this.dialysisOrder.DeviceNumber.number
  219. );
  220. } else {
  221. return this.patientInfo.DialysisSchedule.device_zone.name;
  222. }
  223. },
  224. getAdminUser(id) {
  225. console.log(id);
  226. if (id == 0) {
  227. return "";
  228. }
  229. if (id == undefined) {
  230. return "";
  231. }
  232. for (let i = 0; i < this.adminUser.length; i++) {
  233. if (this.adminUser[i].id == id) {
  234. return this.adminUser[i].name;
  235. }
  236. }
  237. },
  238. printlog(val) {
  239. console.log(typeof val + "Second");
  240. }
  241. },
  242. watch: {
  243. "patientInfo.gender": function() {
  244. if (this.patientInfo.gender == 1) {
  245. this.patientInfo_gender_1 = true;
  246. this.patientInfo_gender_2 = false;
  247. } else if (this.patientInfo.gender == 2) {
  248. this.patientInfo_gender_2 = true;
  249. this.patientInfo_gender_1 = false;
  250. } else {
  251. this.patientInfo_gender_2 = false;
  252. this.patientInfo_gender_1 = false;
  253. }
  254. },
  255. "patientInfo.source": function() {
  256. if (this.patientInfo.source == 1) {
  257. this.patientInfo_source_1 = true;
  258. this.patientInfo_source_2 = false;
  259. } else if (this.patientInfo.source == 2) {
  260. this.patientInfo_source_2 = true;
  261. this.patientInfo_source_1 = false;
  262. } else {
  263. this.patientInfo_source_2 = false;
  264. this.patientInfo_source_1 = false;
  265. }
  266. }
  267. },
  268. created() {
  269. var xtuser = this.$store.getters.user;
  270. this.orgname = xtuser.org.org_name;
  271. // this.orgname = "遂溪方济医院";
  272. this.modeOptions = this.$store.getters.treatment_mode;
  273. this.replacementWays = this.$store.getters.replacement_ways;
  274. this.perfusionApparatus = this.$store.getters.perfusion_apparatus;
  275. this.anticoagulantsConfit = this.$store.getters.anticoagulants_confit;
  276. // this.bloodAccessParOpera = getDataConfig('hemodialysis', 'vascular_access_desc')
  277. var bloodAccessParOpera = getDataConfig(
  278. "hemodialysis",
  279. "vascular_access_desc"
  280. );
  281. for (var key in bloodAccessParOpera) {
  282. this.bloodAccessParOpera[bloodAccessParOpera[key].id] =
  283. bloodAccessParOpera[key];
  284. }
  285. var dialysateFormulationOptions = getDataConfig(
  286. "hemodialysis",
  287. "dialysate_formulation"
  288. );
  289. for (var key in dialysateFormulationOptions) {
  290. this.dialysateFormulationOptions[dialysateFormulationOptions[key].id] =
  291. dialysateFormulationOptions[key];
  292. }
  293. const xtdate = this.$route.query && this.$route.query.xtdate;
  294. const xtno = this.$route.query && this.$route.query.xtno;
  295. if (
  296. typeof xtdate == "string" &&
  297. xtdate.length > 0 &&
  298. typeof xtno == "string" &&
  299. xtno.length > 0
  300. ) {
  301. this.queryParams.xtdate = xtdate;
  302. this.queryParams.xtno = xtno;
  303. this.getDialysisRecord();
  304. } else {
  305. this.$message.error("参数不齐");
  306. return false;
  307. }
  308. // this.getUser();
  309. }
  310. };
  311. </script>
  312. <style style="stylesheet/scss" lang="scss" scoped>
  313. .dialysis-print-order {
  314. width: 960px;
  315. margin: 0 auto;
  316. .order-yy-name {
  317. margin:10px auto 0 auto;
  318. text-align: center;
  319. font-size: 20px;
  320. }
  321. .order-title {
  322. margin: auto;
  323. font-weight: 600;
  324. text-align: center;
  325. font-size: 22px;
  326. padding: 10px 20px 20px 20px;
  327. }
  328. .table-box {
  329. width: 100%;
  330. line-height: 15px;
  331. font-size: 14px;
  332. .under-line {
  333. border-bottom: 1px solid #999;
  334. width: 95%;
  335. text-align: center;
  336. margin-left: 2px;
  337. }
  338. }
  339. .print-table {
  340. width: 100%;
  341. text-align: center;
  342. border-collapse: collapse;
  343. line-height: 25px;
  344. font-size: 14px;
  345. .title-box {
  346. text-align: center;
  347. font-size: 16px;
  348. }
  349. }
  350. .print-table-no {
  351. width: 100%;
  352. text-align: center;
  353. border-collapse: collapse;
  354. font-size: 14px;
  355. }
  356. }
  357. .dialysis-print-order .radio-lebel-box {
  358. font-weight: 400;
  359. cursor: pointer;
  360. }
  361. .dialysis-print-order .radio-no {
  362. opacity: 0;
  363. outline: none;
  364. position: absolute;
  365. margin: 0;
  366. width: 0;
  367. height: 0;
  368. z-index: -1;
  369. }
  370. .dialysis-print-order .radio-inner {
  371. white-space: nowrap;
  372. cursor: pointer;
  373. outline: none;
  374. display: inline-block;
  375. line-height: 1;
  376. position: relative;
  377. vertical-align: middle;
  378. }
  379. .dialysis-print-order .radio-fang {
  380. display: inline-block;
  381. position: relative;
  382. border: 1px solid #000;
  383. box-sizing: border-box;
  384. width: 14px;
  385. height: 14px;
  386. background-color: #fff;
  387. z-index: 1;
  388. transition: border-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46),
  389. background-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46);
  390. }
  391. .dialysis-print-order .is-checked-radio::after {
  392. content: "√";
  393. font-size: 15px;
  394. }
  395. .es-img {
  396. height: 25px;
  397. }
  398. html,
  399. body {
  400. height: 100%;
  401. }
  402. .mainBox {
  403. height: 100%;
  404. font-size: 0.3rem;
  405. .sideColumn {
  406. float: left;
  407. width: 1.58rem;
  408. background: #f5f8fb;
  409. height: 100%;
  410. border-right: 1px #c1c1c1 solid;
  411. position: fixed;
  412. .column {
  413. // height: 100%;
  414. // background: #f5f8fb;
  415. .head {
  416. @include display-flex;
  417. @include align-items-center;
  418. @include flex-direction;
  419. @include text-align;
  420. @include justify-content-center;
  421. margin: 0.5rem 0 0.5rem 0;
  422. img {
  423. width: 100%;
  424. height: 100%;
  425. border-radius: 0.5rem;
  426. width: 0.7rem;
  427. height: 0.7rem;
  428. }
  429. }
  430. .sidebar {
  431. @include display-flex;
  432. @include align-items-center;
  433. @include flex-direction;
  434. @include text-align;
  435. padding: 0;
  436. li {
  437. // font-size:0.23rem;
  438. padding: 0 0 0.8rem 0;
  439. a {
  440. color: #a8b3ba;
  441. display: inline-block;
  442. padding: 0;
  443. margin: 0;
  444. p {
  445. font-size: 0.24rem;
  446. margin-top: 0.2rem;
  447. }
  448. .iconfont {
  449. font-size: 0.5rem;
  450. display: inline-block;
  451. }
  452. }
  453. &.active {
  454. a {
  455. color: #409eff;
  456. }
  457. }
  458. }
  459. }
  460. }
  461. }
  462. }
  463. .navigation {
  464. @include display-flex;
  465. @include align-items-center;
  466. @include text-align;
  467. @include box-sizing;
  468. @include justify-content-between;
  469. padding: 0.3rem 0.36rem;
  470. border-bottom: 1px #e5e5e5 solid;
  471. position: fixed;
  472. top: 0;
  473. left: 1.58rem;
  474. right: 0;
  475. z-index: 100;
  476. background: #fff;
  477. .goBack {
  478. // color: #6e7a87;
  479. cursor: pointer;
  480. @include display-flex;
  481. @include align-items-center;
  482. @include text-align;
  483. .back {
  484. color: $main-color;
  485. margin-right: 0.87rem;
  486. .iconfont {
  487. color: $main-color;
  488. }
  489. }
  490. .name {
  491. .iconfont {
  492. margin-left: 0.1rem;
  493. }
  494. }
  495. }
  496. .nav {
  497. ul {
  498. li {
  499. float: left;
  500. font-size: 0.3rem;
  501. margin: 0 0.2rem;
  502. height: 0.5rem;
  503. line-height: 0.5rem;
  504. width: 1rem;
  505. cursor: pointer;
  506. &.active {
  507. background: $main-color;
  508. color: #fff;
  509. border-radius: 30px;
  510. }
  511. }
  512. }
  513. }
  514. .time {
  515. cursor: pointer;
  516. .iconfont {
  517. margin-left: 0.1rem;
  518. }
  519. }
  520. }
  521. .mainContent {
  522. margin: 0 0 0 1.58rem;
  523. }
  524. </style>