specimenDetail.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572
  1. <template>
  2. <view class="specimenCheckingDetail">
  3. <view class="page_tab">
  4. <view class="page_tab_bar active">
  5. <picker class="more_picker" @change="execFilter($event)" :value="index" :range="array" range-key="nameNum">
  6. <view class="more_picker_text">{{ array[index].name.slice(0, 15) }}<text v-if="array[index].name.length >= 15">...</text><text class="tab_num">( {{ array[index].total }} )</text></view>
  7. <view class="more"></view>
  8. </picker>
  9. </view>
  10. </view>
  11. <view class="zwsj" v-if="list.length == 0">
  12. <image class="zwsj-img" mode="widthFix" src="../../static/img/zanwushuju.png"></image>
  13. <view class="zwsj-txt">暂无数据</view>
  14. </view>
  15. <view class="page_item_wrap" v-for="(item, i) in list" :key="item.id">
  16. <specimenListItem :i="i" :item="item"></specimenListItem>
  17. <view class="L-l"></view>
  18. <view class="R-l"></view>
  19. </view>
  20. <view class="foot_btn2">
  21. <view class="btn2" @click="goto()">返回</view>
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. import {
  27. get,
  28. post,
  29. webHandle
  30. } from "../../http/http.js";
  31. export default {
  32. data() {
  33. return {
  34. queryObj: {},
  35. id: 0,
  36. index: 0,
  37. arrayKey: 0,
  38. array: [
  39. { id: 0, name: '全部', total: '', nameNum: ''}
  40. ],
  41. idx: 0,
  42. workOrderId: 0,
  43. associationTypeValue: '',
  44. list: [],
  45. };
  46. },
  47. methods: {
  48. // 筛选
  49. execFilter({
  50. detail: {
  51. value
  52. }
  53. }) {
  54. this.index = value;
  55. this.arrayKey = this.array[value].id;
  56. this.getList();
  57. },
  58. // 获取标本类型
  59. // getSpecimenType(){
  60. // let array = [{ id: 0, name: '全部'}];
  61. // post(`/common/common/getDictionary`, {"type":"list","key":"specimen_type"}).then((res) => {
  62. // this.array = array.concat(res) || array;
  63. // });
  64. // },
  65. // 获取检验项目
  66. getSpecimenDesc(){
  67. post(`/api/specimenDesc/specimenCount`, {
  68. "hosId": uni.getStorageSync('userData').user.currentHospital.id,
  69. "gdId": this.workOrderId || undefined,
  70. "speIds": this.queryObj.speIds || undefined,
  71. }).then((res) => {
  72. res.data = res.data || [];
  73. let array = [{ id: 0, name: '全部', total: '', nameNum: ''}];
  74. array[0].total = res.total;
  75. array[0].nameNum = `全部(${res.total})`;
  76. this.array = array.concat(res.data.map( v=> ({id: --this.id, name: v[0] || '', nameNum: `${v[0] ? v[0].slice(0, 15) + (v[0].length >= 15 ? '...' : '') : ''}(${v[1]})`, total: v[1]})));
  77. });
  78. },
  79. // 获取标本列表
  80. getList(isAccumulate = false) {
  81. uni.showLoading({
  82. mask: true,
  83. title: "加载中",
  84. });
  85. let postData = {
  86. "idx": isAccumulate ? ++this.idx : 0,
  87. "sum": 20,
  88. "specimen": {
  89. "gdid": this.workOrderId || undefined,
  90. "speIds": this.queryObj.speIds || undefined,
  91. "hosId": uni.getStorageSync('userData').user.currentHospital.id,
  92. "specimenDesc": this.array[this.index].id ? this.array[this.index].name : undefined,
  93. "orderBy": 'patientNoDesc',
  94. }
  95. };
  96. post(`/simple/data/fetchDataList/specimen`, postData).then((res) => {
  97. uni.hideLoading();
  98. uni.stopPullDownRefresh();
  99. if (res.status == 200) {
  100. if(isAccumulate){
  101. this.list = this.list.concat(res.list);
  102. if(!res.list.length){
  103. uni.showToast({
  104. icon: 'none',
  105. title: '没有更多数据了',
  106. })
  107. }
  108. }else{
  109. this.list = res.list;
  110. }
  111. } else {
  112. uni.showToast({
  113. icon: "none",
  114. title: res.msg || "接口获取数据失败!",
  115. });
  116. }
  117. });
  118. },
  119. // 返回
  120. goto() {
  121. uni.navigateBack();
  122. },
  123. },
  124. onLoad(options) {
  125. console.log(options, "标本详情");
  126. this.queryObj = options;
  127. this.workOrderId = options.workOrderId;
  128. this.associationTypeValue = options.associationTypeValue;
  129. this.getList();
  130. this.getSpecimenDesc();
  131. // #ifdef APP-PLUS
  132. webHandle("no", "app");
  133. // #endif
  134. // #ifdef H5
  135. webHandle("no", "wx");
  136. // #endif
  137. },
  138. onPullDownRefresh() {
  139. this.getList();
  140. },
  141. // 上拉加载
  142. onReachBottom(){
  143. console.log('到底了');
  144. this.getList(true);
  145. }
  146. };
  147. </script>
  148. <style lang="less" scoped>
  149. .specimenCheckingDetail {
  150. padding-top: 96rpx;
  151. padding-bottom: 100rpx;
  152. .page_tab {
  153. width: 100%;
  154. height: 96rpx;
  155. display: flex;
  156. position: fixed;
  157. left: 0;
  158. top: 0;
  159. z-index: 999;
  160. .more {
  161. position: absolute;
  162. right: 20rpx;
  163. width: 40rpx;
  164. height: 4rpx;
  165. border-top: 2px solid #49b856;
  166. border-bottom: 2px solid #49b856;
  167. background-color: #49b856;
  168. padding: 5px 0;
  169. background-clip: content-box;
  170. z-index: 9999;
  171. top: 50%;
  172. transform: translateY(-50%);
  173. }
  174. .more_picker {
  175. position: absolute;
  176. right: 0;
  177. width: 100%;
  178. height: 100%;
  179. z-index: 9999;
  180. .more_picker_text{
  181. height: 100%;
  182. display: flex;
  183. justify-content: center;
  184. align-items: center;
  185. }
  186. }
  187. .page_tab_bar {
  188. flex: 1;
  189. font-size: 36rpx;
  190. background: #fff;
  191. display: flex;
  192. justify-content: center;
  193. align-items: center;
  194. position: relative;
  195. &:after {
  196. content: "";
  197. position: absolute;
  198. left: 0;
  199. bottom: 0;
  200. height: 2rpx;
  201. width: 100%;
  202. background-color: transparent;
  203. }
  204. .tab_num {
  205. color: #ff3b53;
  206. margin-left: 8rpx;
  207. }
  208. &.active {
  209. color: #49b856;
  210. &:after {
  211. background-color: #49b856;
  212. }
  213. }
  214. }
  215. }
  216. .page_header {
  217. margin: 20rpx;
  218. padding: 16rpx;
  219. border: 2rpx solid #e5e9ed;
  220. background: #fff;
  221. border-radius: 8rpx;
  222. .page_header_item {
  223. margin-bottom: 16rpx;
  224. .page_header_title {
  225. margin-bottom: 8rpx;
  226. font-weight: bold;
  227. }
  228. .page_header_content {
  229. display: flex;
  230. image {
  231. height: 100rpx;
  232. width: 30%;
  233. margin: 0 8rpx;
  234. }
  235. }
  236. }
  237. }
  238. .zwsj {
  239. position: absolute;
  240. left: 0;
  241. top: 0;
  242. right: 0;
  243. bottom: 0;
  244. display: flex;
  245. justify-content: center;
  246. align-items: center;
  247. flex-direction: column;
  248. .zwsj-img {
  249. width: 560rpx;
  250. }
  251. .zwsj-txt {
  252. font-size: 36rpx;
  253. font-weight: 700;
  254. margin-top: 20rpx;
  255. text-align: center;
  256. }
  257. }
  258. .page_item_wrap {
  259. width: 100%;
  260. height: auto;
  261. box-sizing: border-box;
  262. position: relative;
  263. margin-bottom: 16rpx;
  264. .page_item {
  265. margin-top: 16rpx;
  266. margin-bottom: 124rpx;
  267. background: #fff;
  268. border-radius: 8rpx;
  269. margin: 0 20rpx;
  270. border: 2rpx solid #e5e9ed;
  271. position: relative;
  272. overflow: hidden;
  273. padding: 0 16rpx;
  274. .L {
  275. width: 40rpx;
  276. height: 40rpx;
  277. border-radius: 50%;
  278. background: #f9fafb;
  279. position: absolute;
  280. left: -20rpx;
  281. top: 68rpx;
  282. border: 2rpx solid #e5e9ed;
  283. }
  284. .R {
  285. width: 40rpx;
  286. height: 40rpx;
  287. border-radius: 50%;
  288. background: #f9fafb;
  289. position: absolute;
  290. float: right;
  291. right: -20rpx;
  292. top: 68rpx;
  293. border: 2rpx solid #e5e9ed;
  294. }
  295. .starting {
  296. width: 50rpx;
  297. height: 50rpx;
  298. color: #fff;
  299. background: #49b856;
  300. display: inline-block;
  301. border-radius: 50%;
  302. text-align: center;
  303. line-height: 46rpx;
  304. font-size: 32rpx;
  305. margin-right: 6rpx;
  306. }
  307. .End {
  308. width: 50rpx;
  309. height: 50rpx;
  310. color: #fff;
  311. background: #39b199;
  312. display: inline-block;
  313. border-radius: 50%;
  314. text-align: center;
  315. line-height: 46rpx;
  316. font-size: 32rpx;
  317. margin-right: 6rpx;
  318. }
  319. .page_item_top {
  320. height: 88rpx;
  321. border-bottom: 2rpx dashed #e5e9ed;
  322. padding: 0 16rpx;
  323. .page_item_top-inner {
  324. display: flex;
  325. justify-content: space-between;
  326. align-items: center;
  327. height: 100%;
  328. .page_item_top_L {
  329. .serialNumber{
  330. width: 50rpx;
  331. height: 50rpx;
  332. border-radius: 50%;
  333. background-color: #49b856;
  334. display: flex;
  335. justify-content: center;
  336. align-items: center;
  337. color: #fff;
  338. line-height: 0;
  339. margin-right: 8rpx;
  340. }
  341. .emergencys {
  342. background: #ff3b53 !important;
  343. width: 124rpx !important;
  344. }
  345. .emergency {
  346. background: #ff3b53 !important;
  347. }
  348. .emergency1 {
  349. background: #49b856 !important;
  350. }
  351. .page_item_cont_start {
  352. text-align: center;
  353. height: 44rpx;
  354. width: 104rpx;
  355. line-height: 44rpx;
  356. border-radius: 8rpx;
  357. background: #49b856;
  358. color: #fff;
  359. display: inline-block;
  360. }
  361. .L_time {
  362. color: #6cc076;
  363. font-size: 32rpx;
  364. }
  365. .L_text {
  366. font-size: 32rpx;
  367. font-weight: 700;
  368. display: flex;
  369. align-items: center;
  370. }
  371. }
  372. .page_item_top_R {
  373. font-size: 32rpx;
  374. .back {
  375. background-color: #49b856;
  376. }
  377. .L_iocn {
  378. color: rgb(7, 134, 60);
  379. font-size: 36rpx;
  380. font-weight: 700;
  381. }
  382. }
  383. }
  384. }
  385. .page_item_cont {
  386. min-height: 90rpx;
  387. padding: 0 16rpx;
  388. text-align: left;
  389. position: relative;
  390. .text_big {
  391. font-size: 32rpx;
  392. font-weight: 700;
  393. margin-top: 10rpx;
  394. text-align: right;
  395. word-break: break-all;
  396. line-height: 1.25;
  397. p {
  398. font-weight: 700;
  399. line-height: 1.5;
  400. }
  401. }
  402. .page_item_cont_T {
  403. padding-top: 28rpx;
  404. padding-bottom: 28rpx;
  405. font-size: 28rpx;
  406. .page_item_cont_title {
  407. height: 100%;
  408. font-size: 32rpx;
  409. display: flex;
  410. justify-content: space-between;
  411. align-items: center;
  412. }
  413. }
  414. .page_item_cont_B {
  415. padding-top: 28rpx;
  416. margin-bottom: 28rpx;
  417. .page_item_cont_title {
  418. font-size: 32rpx;
  419. display: flex;
  420. justify-content: space-between;
  421. }
  422. .page_item_cont_title1 {
  423. height: 60rpx;
  424. line-height: 60rpx;
  425. font-size: 32rpx;
  426. padding-left: 64rpx;
  427. }
  428. }
  429. }
  430. .page_item_foot {
  431. border-top: 2rpx dashed #e5e9ed;
  432. border-bottom: 2rpx dashed #e5e9ed;
  433. padding: 28rpx 16rpx;
  434. text-align: left;
  435. .page_item_foot_text {
  436. font-size: 32rpx;
  437. margin-bottom: 20rpx;
  438. .text1 {
  439. color: rgb(102, 102, 102);
  440. }
  441. .text2 {
  442. float: right;
  443. font-weight: 700;
  444. }
  445. }
  446. }
  447. #infos {
  448. display: none;
  449. }
  450. .page_item_infos {
  451. padding-bottom: 20rpx;
  452. border-bottom: 2rpx dashed #e5e9ed;
  453. .page_item_info2 {
  454. text-align: left;
  455. line-height: 60rpx;
  456. font-size: 32rpx;
  457. padding-left: 16rpx;
  458. .page_item_foot_text {
  459. font-size: 32rpx;
  460. margin-bottom: 20rpx;
  461. .text1 {
  462. color: rgb(102, 102, 102);
  463. }
  464. .text2 {
  465. float: right;
  466. font-weight: 700;
  467. }
  468. }
  469. }
  470. }
  471. }
  472. .L-l {
  473. width: 2rpx;
  474. height: 40rpx;
  475. background: #f9fafb;
  476. position: absolute;
  477. left: 20rpx;
  478. top: 72rpx;
  479. }
  480. .R-l {
  481. width: 2rpx;
  482. height: 40rpx;
  483. background: #f9fafb;
  484. position: absolute;
  485. right: 20rpx;
  486. top: 72rpx;
  487. }
  488. }
  489. .foot_btn2 {
  490. position: fixed;
  491. bottom: 0;
  492. width: 100vw;
  493. padding: 0 20rpx;
  494. box-sizing: border-box;
  495. line-height: 66rpx;
  496. height: 100rpx;
  497. border-top: 2rpx solid #e5e9ed;
  498. background: #f9fafb;
  499. text-align: center;
  500. display: flex;
  501. justify-content: center;
  502. align-items: center;
  503. .btn2 {
  504. height: 66rpx;
  505. flex: 1;
  506. margin: 16rpx 16rpx 0;
  507. background-image: linear-gradient(to right, #72c172, #3bb197);
  508. color: #fff;
  509. border-radius: 8rpx;
  510. font-size: 32rpx;
  511. }
  512. }
  513. }
  514. </style>