血透系统pad前端

InspectionItemTable.vue 8.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  1. <template>
  2. <div>
  3. <div class="blueBorder"></div>
  4. <van-list v-model="loading" :finished="finished" finished-text=" " @load="onLoad">
  5. <table class="table">
  6. <tr>
  7. <th width="20%">检查项目</th>
  8. <th width="10%">结果</th>
  9. <th width="10%">参考值</th>
  10. <th width="10%">单位</th>
  11. </tr>
  12. </table>
  13. <table class="table" v-for="(items, indexs) in inspections_item" :key="indexs">
  14. <tr>
  15. <td width="20%">{{ items.date }}</td>
  16. <td width="10%"></td>
  17. <td width="10%"></td>
  18. <td width="10%"></td>
  19. </tr>
  20. <tr class="table" v-for="(item, index) in items.inspection_show_item" :key="index">
  21. <td width="20%">{{ item.item_name }}</td>
  22. <td width="10%">{{ item.value }}</td>
  23. <td width="10%" v-if="item.range_type == 1">{{ item.range_min }} ~ {{ item.range_max }}</td>
  24. <td width="10%" v-else>{{ item.range_value }}</td>
  25. <td width="10%">{{ item.unit }}</td>
  26. </tr>
  27. <tr
  28. v-if="items.isExpand"
  29. class="table"
  30. v-for="(item, index) in items.inspection_hide_item"
  31. :key="index"
  32. >
  33. <td width="20%">{{ item.item_name }}</td>
  34. <td width="10%">{{ item.value }}</td>
  35. <td width="10%">{{ item.range_min }} ~ {{ item.range_max }}</td>
  36. <td width="10%">{{ item.unit }}</td>
  37. </tr>
  38. <tr>
  39. <td width="20%"></td>
  40. <td
  41. width="10%"
  42. style="color:#409EFF;"
  43. @click="expandTable(indexs)"
  44. v-model="isExpand"
  45. >{{ items.expandName }}</td>
  46. <td width="10%"></td>
  47. <td width="10%"></td>
  48. </tr>
  49. </table>
  50. <div class="NoData" v-show="inspections_item.length == 0">
  51. <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt />
  52. </div>
  53. </van-list>
  54. </div>
  55. </template>
  56. <script>
  57. import { parseTime } from "@/utils";
  58. import { GetInspectionItemValue } from "@/api/check";
  59. export default {
  60. name: "InspectionItemTable",
  61. created() {},
  62. data() {
  63. return {
  64. items: [],
  65. inspections: [],
  66. inspectionsMap: {},
  67. inspections_item: [],
  68. showItem: [],
  69. hideItem: [],
  70. expandNum: 5,
  71. loading: true,
  72. finished: false,
  73. isShow: 1,
  74. key: 0,
  75. project: null,
  76. isExpand: false,
  77. queryParams: {
  78. project_id: 0,
  79. page: 0,
  80. patient_id: 0
  81. }
  82. };
  83. },
  84. methods: {
  85. onLoad() {
  86. this.queryParams.page = this.queryParams.page + 1;
  87. GetInspectionItemValue(this.queryParams).then(response => {
  88. if (response.data.state == 0) {
  89. this.finished = true;
  90. this.loading = false;
  91. return false;
  92. } else {
  93. this.items = [];
  94. var inspections = response.data.data.inspections;
  95. this.inspections = response.data.data.inspections;
  96. if (inspections == null) {
  97. this.inspections = [];
  98. this.finished = true;
  99. this.loading = false;
  100. return false;
  101. }
  102. var inspections_item_map = {};
  103. inspections_item_map["date"] = response.data.data.date;
  104. var inspectionsMap = {};
  105. this.inspectionsMap = {};
  106. for (var index in inspections) {
  107. inspectionsMap[inspections[index].item_id] = inspections[index];
  108. this.inspectionsMap[inspections[index].item_id] =
  109. inspections[index];
  110. }
  111. var items = this.project.inspection_reference;
  112. for (var index in items) {
  113. if (items[index].id in inspectionsMap) {
  114. var item = {};
  115. for (var key in items[index]) {
  116. item[key] = items[index][key];
  117. }
  118. item.value = inspectionsMap[items[index].id].inspect_value;
  119. item.value_direction = "";
  120. if (item.range_type == 1) {
  121. var value = parseFloat(item.value);
  122. var range_min = parseFloat(item.range_min);
  123. var range_max = parseFloat(item.range_max);
  124. if (value < range_min) {
  125. item.value_direction = "↓";
  126. } else if (value > range_max) {
  127. item.value_direction = "↑";
  128. }
  129. }
  130. this.items.push(item);
  131. }
  132. }
  133. this.showItem = [];
  134. this.hideItem = [];
  135. for (let i = 0; i < this.items.length; i++) {
  136. if (i < this.expandNum) {
  137. this.showItem.push(this.items[i]);
  138. } else {
  139. this.hideItem.push(this.items[i]);
  140. }
  141. }
  142. inspections_item_map["isExpand"] = false;
  143. inspections_item_map["inspection_show_item"] = this.showItem;
  144. inspections_item_map["expandName"] = "展开";
  145. inspections_item_map["inspection_hide_item"] = this.hideItem;
  146. this.inspections_item.push(inspections_item_map);
  147. this.loading = false;
  148. }
  149. });
  150. },
  151. GetList(project_id, project) {
  152. this.finished = false;
  153. this.loading = true;
  154. this.project = project;
  155. this.queryParams.patient_id = this.$route.query.patient_id;
  156. this.queryParams.project_id = project_id;
  157. this.inspections_item = [];
  158. this.queryParams.page = 0;
  159. this.onLoad();
  160. },
  161. expandTable: function(index) {
  162. if (!this.isExpand) {
  163. this.isExpand = true;
  164. for (let i = 0; i < this.inspections_item.length; i++) {
  165. if (i == index) {
  166. this.inspections_item[i].isExpand = true;
  167. this.inspections_item[i].expandName = "收起";
  168. }
  169. }
  170. } else {
  171. this.isExpand = false;
  172. for (let i = 0; i < this.inspections_item.length; i++) {
  173. if (i == index) {
  174. this.inspections_item[i].isExpand = false;
  175. this.inspections_item[i].expandName = "展开";
  176. }
  177. }
  178. }
  179. }
  180. }
  181. };
  182. </script>
  183. <style style="stylesheet/scss" lang="scss" scoped>
  184. .top {
  185. padding: 0.28rem 0.3rem;
  186. @include text-align;
  187. font-size: 0.3rem;
  188. border-bottom: 1px #e5e5e5 solid;
  189. position: relative;
  190. .title {
  191. font-size: 0.3rem;
  192. font-weight: bold;
  193. color: $pgh-color;
  194. }
  195. .iconfont {
  196. font-size: 0.24rem;
  197. color: #a8b3ba;
  198. }
  199. }
  200. .search {
  201. background: #ebf1f7;
  202. border-radius: 30px;
  203. padding: 0.01rem 0.2rem;
  204. color: #a8b3ba;
  205. position: absolute;
  206. top: 0.15rem;
  207. right: 0.4rem;
  208. .iconfont {
  209. color: #a8b3ba;
  210. font-size: 0.32rem;
  211. }
  212. .searchInput {
  213. font-size: 0.28rem;
  214. border: none;
  215. outline: none;
  216. background: #ebf1f7;
  217. height: 0.6rem;
  218. line-height: 0.6rem;
  219. width: 80%;
  220. }
  221. }
  222. .choice {
  223. border-bottom: 1px #e5e5e5 solid;
  224. ul {
  225. @include display-flex;
  226. @include align-items-center;
  227. @include text-align;
  228. @include justify-content-between;
  229. width: 30%;
  230. margin: 0 auto;
  231. font-size: 0.28rem;
  232. color: #7b8a97;
  233. li {
  234. @include display-flex;
  235. @include align-items-center;
  236. @include text-align;
  237. @include justify-content-between;
  238. padding: 0.16rem 0;
  239. .iconfont {
  240. margin: 0 0.1rem;
  241. }
  242. .line {
  243. background: #a8b3ba;
  244. width: 0.2rem;
  245. height: 1px;
  246. margin: 0 0.2rem;
  247. display: inline-block;
  248. }
  249. }
  250. }
  251. }
  252. .table {
  253. width: 100%;
  254. overflow: hidden;
  255. font-size: 0.45rem;
  256. text-align: center;
  257. border: $border-color;
  258. tr {
  259. padding: 0;
  260. margin: 0;
  261. padding: 0.1rem 0;
  262. th {
  263. background: $main-color;
  264. border: none;
  265. color: #fff;
  266. padding: 0;
  267. margin: 0;
  268. height: 1.2rem;
  269. line-height: 1.2rem;
  270. font-weight: normal;
  271. }
  272. td {
  273. border: none;
  274. span {
  275. background: #ff7979;
  276. color: #fff;
  277. font-size: 0.28rem;
  278. height: 0.5rem;
  279. line-height: 0.5rem;
  280. display: inline-block;
  281. border-radius: 6px;
  282. width: 1.75rem;
  283. margin: 0 0.1rem;
  284. }
  285. }
  286. }
  287. }
  288. .van-list {
  289. background: #fff;
  290. min-height: calc(100vh - 178px);
  291. margin-top: 68px;
  292. // @media only screen and (min-width: 376px) and (max-width: 668px) {
  293. // margin-top: 84px;
  294. // }
  295. // @media only screen and (min-width: 415px) and (max-width: 736px) {
  296. // margin-top: 84px !important;
  297. // }
  298. // @media only screen and (max-width: 812px) {
  299. // margin-top: 80px !important;
  300. // }
  301. @media only screen and (min-width: 768px) {
  302. margin-top: 140px !important;
  303. }
  304. // @media only screen and (min-width: 813px) and (max-width: 1023px) {
  305. // margin-top: 114px !important;
  306. // }
  307. // @media only screen and (min-width: 1024px) {
  308. // margin-top: 96px !important;
  309. // }
  310. }
  311. </style>
  312. <style lang="scss">
  313. .nav {
  314. .van-ellipsis {
  315. font-size: 0.4rem;
  316. }
  317. }
  318. .van-tabs__line {
  319. background: #409eff !important;
  320. }
  321. </style>