血透系统pad前端

PatientBox.vue 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431
  1. <template>
  2. <div>
  3. <div
  4. class="patient"
  5. :class="borderColor(patient)"
  6. v-for="(patient, index) in patients"
  7. :key="index"
  8. @click="detailAction(patient)"
  9. >
  10. <!-- <router-link :to="{path:'/details', query: {patient_id: patient.patient_id, date: patient.schedule_date}}"> -->
  11. <div class="kehu">
  12. <div style="position: relative;flex:2;" class="tx">
  13. <img
  14. :src="patient.patient.avatar.length > 0 ? patient.patient.avatar : '../../assets/product/test.jpg'"
  15. alt
  16. />
  17. <span
  18. class="redpoint"
  19. v-if="getStatus(patient)"
  20. >{{getUnReadNum(patient) > 99?getUnReadNum(patient)+"+":getUnReadNum(patient)}}</span>
  21. <div class="right">
  22. <h3 class="name">
  23. {{patient.patient.name}}
  24. <span class="el-icon-bell yztx" v-if="getStatus(patient)">医嘱</span>
  25. <span class="yc" v-show="isAbnormal(patient)">异常</span>
  26. </h3>
  27. <span class="num">{{ genderText(patient) }} | {{ age(patient) }}岁</span>
  28. <!-- 性别、年龄 -->
  29. </div>
  30. </div>
  31. <div class="online" style="flex:1.3;" v-show="computeState(patient) != 4">
  32. <p :class="stateColor(patient)">{{stateText(patient)}}</p>
  33. <!-- <span class="time">剩余时间 : 90:08</span> -->
  34. </div>
  35. </div>
  36. <!-- </router-link> -->
  37. <div class="function" :class="functionColor(patient)">
  38. <ul>
  39. <li>
  40. <span class="iconfont">&#xe6f7;</span>
  41. 班次 : {{timeTypeText(patient)}}
  42. </li>
  43. <li>
  44. <span class="iconfont">&#xe6de;</span>
  45. 床位号 : {{patient.dialysis_order&&patient.dialysis_order.device_number&&patient.dialysis_order.device_number.number.length > 0 ? patient.dialysis_order.device_number.number:patient.device_number.number}}
  46. </li>
  47. <li>
  48. <span class="iconfont">&#xe6f6;</span>
  49. 透析模式 : {{$store.getters.treatment_mode[patient.mode_id].name}}
  50. </li>
  51. </ul>
  52. </div>
  53. </div>
  54. </div>
  55. </template>
  56. <script>
  57. import { parseTime } from "@/utils";
  58. import { jsGetAge } from "@/utils/tools";
  59. import { setDialysisOrWaitSelectedConfig } from "@/utils/data_config";
  60. export default {
  61. name: "PatientBox",
  62. props: {
  63. patients: Array
  64. },
  65. data() {
  66. return {};
  67. },
  68. created() {
  69. console.log("11111");
  70. console.log(this.patients);
  71. },
  72. methods: {
  73. getUnReadNum: function(schedual) {
  74. if (schedual.doctor_advice != null) {
  75. let doctorAdvice = [];
  76. for (let i = 0; i < schedual.doctor_advice.length; i++) {
  77. if (schedual.doctor_advice[i].execution_state == 2) {
  78. doctorAdvice.push(schedual.doctor_advice[i]);
  79. }
  80. }
  81. const sorted = this.groupBy(doctorAdvice, function(item) {
  82. return [item.groupno];
  83. });
  84. return sorted.length;
  85. }
  86. },
  87. getStatus: function(schedual) {
  88. var isShowDot = false;
  89. if (schedual.doctor_advice != null) {
  90. for (let i = 0; i < schedual.doctor_advice.length; i++) {
  91. if (schedual.doctor_advice[i].execution_state == 2) {
  92. isShowDot = true;
  93. }
  94. }
  95. return isShowDot;
  96. } else {
  97. return false;
  98. }
  99. },
  100. stateColor: function(schedual) {
  101. var state = this.computeState(schedual);
  102. if (state == 1) {
  103. return "blue";
  104. } else if (state == 2) {
  105. return "gray";
  106. } else if (state == 3) {
  107. return "red";
  108. } else if (state == 5) {
  109. return "green1";
  110. } else if (state == 6) {
  111. return "green2";
  112. } else {
  113. return "blue";
  114. }
  115. },
  116. functionColor: function(schedual) {
  117. var state = this.computeState(schedual);
  118. if (state == 1 || state == 3) {
  119. return "blue";
  120. } else if (state == 2) {
  121. return "gray";
  122. } else {
  123. return "blue";
  124. }
  125. },
  126. borderColor: function(schedual) {
  127. var yc = this.isAbnormal(schedual);
  128. if (yc == true) {
  129. return "red";
  130. } else {
  131. return "gray";
  132. }
  133. },
  134. stateText: function(schedual) {
  135. var state = this.computeState(schedual);
  136. if (state == 1) {
  137. return "已上机";
  138. } else if (state == 2) {
  139. return "已下机";
  140. } else if (state == 3) {
  141. return "监测中";
  142. } else if (state == 5) {
  143. return "待称重";
  144. } else if (state == 6) {
  145. return "待开处方";
  146. } else {
  147. // return schedual.patient.gender == 1 ? "男" : "女"
  148. return "未上机";
  149. }
  150. },
  151. computeState: function(schedual) {
  152. if (
  153. schedual.assessment_before_dislysis == null ||
  154. schedual.assessment_before_dislysis.weight_before == 0
  155. ) {
  156. // 未签到称重
  157. return 5;
  158. }
  159. if (schedual.prescription == null || schedual.prescription.creater == 0) {
  160. // 未确认处方
  161. return 6;
  162. }
  163. if (schedual.dialysis_order == null) {
  164. // 未上机
  165. return 4;
  166. } else if (schedual.dialysis_order.stage == 2) {
  167. // 已下机
  168. return 2;
  169. } else if (
  170. schedual.dialysis_order.stage == 1 &&
  171. schedual.monitoring_records != null &&
  172. schedual.monitoring_records.length > 1
  173. ) {
  174. // 监测中
  175. return 3;
  176. } else {
  177. return 1;
  178. }
  179. },
  180. orderState: function(schedual) {
  181. if (schedual.dialysis_order == null) {
  182. // 未上机
  183. return 4;
  184. } else if (schedual.dialysis_order.stage == 2) {
  185. // 已下机
  186. return 2;
  187. } else if (
  188. schedual.dialysis_order.stage == 1 &&
  189. schedual.monitoring_records != null &&
  190. schedual.monitoring_records.length > 1
  191. ) {
  192. // 监测中
  193. return 3;
  194. } else {
  195. return 1;
  196. }
  197. },
  198. isAbnormal: function(schedual) {
  199. return false; // schedual.yc;
  200. },
  201. timeTypeText: function(schedual) {
  202. if (schedual.schedule_type == 1) {
  203. return "上午";
  204. } else if (schedual.schedule_type == 2) {
  205. return "下午";
  206. } else {
  207. return "晚上";
  208. }
  209. },
  210. genderText: function(schedual) {
  211. if (schedual.patient.gender == 0) {
  212. return "未知";
  213. } else if (schedual.patient.gender == 1) {
  214. return "男";
  215. } else {
  216. return "女";
  217. }
  218. },
  219. age: function(schedual) {
  220. if (schedual.patient.age == 0) {
  221. return jsGetAge(
  222. parseTime(schedual.patient.birthday, "{y}-{m}-{d}"),
  223. "-"
  224. );
  225. } else {
  226. return schedual.patient.age;
  227. }
  228. // var now = new Date();
  229. // var nowYear = parseTime(now, "{y}");
  230. // var birthdayYear = parseTime(schedual.patient.birthday, "{y}");
  231. // // console.log(nowYear)
  232. // // console.log(birthdayYear)
  233. // return nowYear - birthdayYear;
  234. },
  235. groupBy(array, f) {
  236. const groups = {};
  237. array.forEach(function(o) {
  238. const group = JSON.stringify(f(o));
  239. groups[group] = groups[group] || [];
  240. groups[group].push(o);
  241. });
  242. return Object.keys(groups).map(function(group) {
  243. return groups[group];
  244. });
  245. },
  246. detailAction: function(schedual) {
  247. if (schedual.dialysis_order != null) {
  248. setDialysisOrWaitSelectedConfig(1);
  249. } else {
  250. setDialysisOrWaitSelectedConfig(0);
  251. }
  252. var patient_id = schedual.patient_id;
  253. var date = schedual.schedule_date;
  254. this.$router.push({
  255. path: "/details",
  256. query: {
  257. patient_id: patient_id,
  258. date: date,
  259. patient_name: schedual.patient.name
  260. }
  261. });
  262. }
  263. }
  264. };
  265. </script>
  266. <style style="stylesheet/scss" lang="scss" scoped>
  267. .patient {
  268. border: 1px #e5e5ee solid;
  269. padding: 0.33rem 0;
  270. width: 47%;
  271. margin: 0 3% 0.5rem 0;
  272. float: left;
  273. @media only screen and (max-width: 415px) {
  274. width: 96% !important;
  275. }
  276. .function {
  277. padding: 0.3rem 0.32rem 0 0.32rem;
  278. color: #7b8a97;
  279. ul {
  280. @include display-flex;
  281. @include align-items-center;
  282. @include text-align;
  283. @include justify-content-between;
  284. li {
  285. font-size: 0.3rem;
  286. @include display-flex;
  287. @include align-items-center;
  288. .iconfont {
  289. margin: 0 0.1rem 0 0;
  290. font-size: 0.4rem;
  291. display: none;
  292. }
  293. }
  294. }
  295. }
  296. .blue {
  297. color: $main-color;
  298. .iconfont {
  299. color: $main-color;
  300. }
  301. }
  302. .kehu {
  303. @include display-flex;
  304. @include align-items-center;
  305. @include text-align;
  306. @include justify-content-between;
  307. border-bottom: 1px #e5e5e5 solid;
  308. padding: 0 0 0.3rem 0.32rem;
  309. .tx {
  310. @include display-flex;
  311. @include align-items-center;
  312. img {
  313. width: 1rem;
  314. height: 1rem;
  315. border-radius: 50%;
  316. float: left;
  317. margin: 0 0.3rem 0 0;
  318. }
  319. .right {
  320. float: left;
  321. text-align: left;
  322. .name {
  323. font-size: 0.34rem;
  324. color: $title-color;
  325. font-weight: 600;
  326. margin-bottom: 0.1rem;
  327. .yc {
  328. background: #ff7979;
  329. color: #fff;
  330. height: 0.38rem;
  331. line-height: 0.38rem;
  332. font-size: 0.24rem;
  333. width: 0.74rem;
  334. border-radius: 4px;
  335. display: inline-block;
  336. text-align: center;
  337. margin-left: 0.13rem;
  338. }
  339. }
  340. .num {
  341. font-size: 0.3rem;
  342. }
  343. }
  344. }
  345. .online {
  346. text-align: center;
  347. width: 50%;
  348. border-left: 1px #e5e5e5 solid;
  349. p {
  350. background: #c6cdd2;
  351. color: #fff;
  352. width: 1.45rem;
  353. height: 0.8rem;
  354. line-height: 0.8rem;
  355. border-radius: 4px;
  356. margin: 0 auto;
  357. font-size: 0.32rem;
  358. }
  359. .blue {
  360. background: $main-color;
  361. }
  362. .red {
  363. background: #f18f68;
  364. }
  365. .green {
  366. background: #5bd18b;
  367. }
  368. .green1 {
  369. background: #e6a23c;
  370. }
  371. .green2 {
  372. background: #7930c3;
  373. }
  374. .gray {
  375. background: #a8b3ba;
  376. }
  377. .lightGray {
  378. background: #c6cdd2;
  379. }
  380. .time {
  381. font-size: 0.26rem;
  382. color: #34495e;
  383. }
  384. }
  385. }
  386. }
  387. .red {
  388. border: 1px #ff7979 solid;
  389. }
  390. .redpoint {
  391. display: inline-block;
  392. height: 30px;
  393. width: 30px;
  394. line-height: 26px;
  395. text-align: center;
  396. font-size: 0.8em;
  397. border-radius: 20px;
  398. color: #fff;
  399. background: #f56c6c;
  400. position: absolute;
  401. top: -6px;
  402. left: 0.6rem;
  403. border: 1px solid #fff;
  404. @media only screen and (max-width: 767px) {
  405. height: 16px;
  406. width: 16px;
  407. line-height: 15px;
  408. top: -6px;
  409. left: 0.6rem;
  410. }
  411. }
  412. .yztx {
  413. margin: 0 5px;
  414. padding: 5px 10px;
  415. background-color: #f56c6c;
  416. color: #fff;
  417. border-radius: 15px;
  418. font-size: 14px;
  419. @media only screen and (max-width: 415px) {
  420. font-size: 0.34rem !important;
  421. }
  422. }
  423. </style>