bloodSelect.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514
  1. <template>
  2. <view class="patientInformationList">
  3. <view class="page_tab">
  4. <view class="page_tab_bar active">
  5. <view class="tab_dept">血制品选择页面</view>
  6. </view>
  7. </view>
  8. <view v-if="zxzData.length == 0" class="zwsj">
  9. <image class="zwsj-img" mode="widthFix" src="../../static/img/zanwushuju.png"></image>
  10. <view class="zwsj-txt">暂无数据</view>
  11. </view>
  12. <view v-if="zxzData.length" class="page_items">
  13. <scroll-view class="page_items_scroll" scroll-y :refresher-enabled="scroll_refresher_enabled"
  14. :refresher-triggered="triggered" @refresherrefresh="refresherrefresh" @refresherrestore="refresherrestore"
  15. @scrolltolower="scrolltolower" :scroll-top="scroll_top" @refresherabort="refresherabort" @scroll="scroll"
  16. refresher-background="transport">
  17. <view class="page_item_wrap" v-for="(item, index) of zxzData" :key="index" @click="itemInfo(item)">
  18. <view class="page_item">
  19. <view class="L"></view>
  20. <view class="R"></view>
  21. <view class="page_item_top">
  22. <view class="page_item_top_L">
  23. <text>{{ item.bloodCode }}<text v-if="item.productCode">({{ item.productCode }})</text></text>
  24. </view>
  25. <view class="send_wrap"></view>
  26. </view>
  27. <view class="page_item_cont">
  28. <view class="page_item_conts">
  29. <view>{{ item.patientName }}({{ item.patientNo }})</view>
  30. </view>
  31. </view>
  32. </view>
  33. <view class="L-l"></view>
  34. <view class="R-l"></view>
  35. </view>
  36. </scroll-view>
  37. </view>
  38. <!-- 弹窗 -->
  39. <showModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content"
  40. :operate="models1.operate" @ok="ok1" @cancel="cancel1"></showModel>
  41. </view>
  42. </template>
  43. <script>
  44. import {
  45. get,
  46. post,
  47. SM,
  48. deleteIt,
  49. webHandle
  50. } from "../../http/http.js";
  51. export default {
  52. data() {
  53. return {
  54. SMFlag:true,
  55. hosId: uni.getStorageSync("userData").user.currentHospital.id,
  56. // 选中的患者项
  57. currentItem: {},
  58. // 弹窗model
  59. models1: {
  60. disjunctor: false,
  61. },
  62. scrollYY: 0, //滚动条滚动的距离
  63. options: {},
  64. //列表数据
  65. zxzData: [],
  66. //分页页码
  67. idx: 0,
  68. // 列表项总数
  69. totalNum: -1,
  70. triggered: false, //下拉刷新状态
  71. freshing: false, //上拉加载开关
  72. scroll_top: 0, //距离顶部的距离
  73. scroll_refresher_enabled: true, //是否开启自定义下拉刷新
  74. };
  75. },
  76. methods: {
  77. ok1() {
  78. this.models1.disjunctor = false;
  79. if(this.options.navigateTo === 'scanning_blood_process'){
  80. uni.showLoading({
  81. title: "加载中",
  82. mask: true,
  83. });
  84. post("/transflow/scanBind", {type: 'blood',orderId: this.options.orderId, id: this.currentItem.id, forceDept: this.options.isInput == 1 ? true : undefined}).then((ress) => {
  85. uni.hideLoading();
  86. if (ress.state == 200 && ress.data.state != 400) {
  87. //todo
  88. if(this.options.isInput == 1){
  89. uni.redirectTo({
  90. url: `../scanning_blood_process/scanning_blood_process?orderId=${this.options.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(ress.data.dto))}&scanCount=${ress.data.scanCount}&status=200&scanOrHand=${this.options.scanOrHand}&isSelect=1&isInput=1`,
  91. });
  92. }else{
  93. uni.redirectTo({
  94. url: `../scanning_blood_process/scanning_blood_process?orderId=${this.options.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(ress.data.dto))}&scanCount=${ress.data.scanCount}&status=200&scanOrHand=${this.options.scanOrHand}&isSelect=1`,
  95. });
  96. }
  97. } else if (ress.state == 200 && ress.data.state == 400 && ress.data.orderState != 5) {
  98. if(this.options.isInput == 1){
  99. uni.redirectTo({
  100. url: `../scanning_blood_process/scanning_blood_process?orderId=${this.options.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(ress.data.data))}&status=400&scanOrHand=${this.options.scanOrHand}&qrcode=${this.options.qrcode}&isInput=1`,
  101. });
  102. }else{
  103. uni.redirectTo({
  104. url: `../scanning_blood_process/scanning_blood_process?orderId=${this.options.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(ress.data.data))}&status=400&scanOrHand=${this.options.scanOrHand}&qrcode=${this.options.qrcode}`,
  105. });
  106. }
  107. } else {
  108. if(this.options.isInput == 1){
  109. uni.redirectTo({
  110. url: `../scanning_blood_process/scanning_blood_process?orderId=${this.options.orderId}&status=500&scanOrHand=${this.options.scanOrHand}&qrcode=${this.options.qrcode}&isInput=1`,
  111. });
  112. }else{
  113. uni.redirectTo({
  114. url: `../scanning_blood_process/scanning_blood_process?orderId=${this.options.orderId}&status=500&scanOrHand=${this.options.scanOrHand}&qrcode=${this.options.qrcode}`,
  115. });
  116. }
  117. }
  118. });
  119. }else{
  120. uni.navigateTo({
  121. url: `../${this.options.navigateTo}/${this.options.navigateTo}?id=${this.currentItem.id}`,
  122. });
  123. }
  124. },
  125. cancel1() {
  126. this.models1.disjunctor = false;
  127. },
  128. // 进入详情页
  129. itemInfo(item) {
  130. // #ifdef H5
  131. document.body.removeEventListener("touchmove", this.stop, {
  132. passive: false,
  133. });
  134. // #endif
  135. console.log(item)
  136. this.currentItem = item;
  137. this.models1 = {
  138. disjunctor: true,
  139. title: "提示",
  140. content: `您确认是此血袋号【${item.bloodCode}】;产品码【${item.productCode}】;患者【${item.patientName}】吗?`,
  141. icon: "warn",
  142. operate: {
  143. ok: "确认",
  144. cancel: "取消",
  145. },
  146. };
  147. },
  148. //血制品列表数据获取
  149. waitingOrders(idx) {
  150. if (this.zxzData.length == this.totalNum) {
  151. uni.showToast({
  152. icon: "none",
  153. title: "没有更多数据了!",
  154. });
  155. this.freshing = true;
  156. return;
  157. }
  158. uni.showLoading({
  159. title: "加载中",
  160. mask: true,
  161. });
  162. // 请求列表数据
  163. post("/transflow/scanCheckList", {
  164. type: 'blood',
  165. code: this.options.qrcode,
  166. }).then((res) => {
  167. uni.hideLoading();
  168. if (res.state == 200) {
  169. this.triggered = false;
  170. this.freshing = true;
  171. this.totalNum = res.data ? res.data.length : 0;
  172. if (idx === 0) {
  173. this.zxzData = res.data;
  174. } else {
  175. this.zxzData.push(...res.data);
  176. }
  177. } else {
  178. uni.showToast({
  179. icon: "none",
  180. title: res.msg || "接口获取数据失败!",
  181. });
  182. }
  183. });
  184. },
  185. //刷新
  186. refresherrefresh() {
  187. if (this.triggered) {
  188. return;
  189. }
  190. console.log("下拉刷新");
  191. this.triggered = true;
  192. this.idx = 0;
  193. this.totalNum = -1;
  194. this.waitingOrders(0);
  195. },
  196. // 下拉刷新复位
  197. refresherrestore() {
  198. this.triggered = false;
  199. console.log("下拉刷新复位");
  200. },
  201. //下拉刷新中止
  202. refresherabort() {
  203. this.triggered = false;
  204. console.log("下拉刷新中止");
  205. },
  206. //分页,上拉加载
  207. scrolltolower() {
  208. if (this.freshing) {
  209. console.log("上拉加载");
  210. this.freshing = false;
  211. // this.waitingOrders(++this.idx);
  212. }
  213. },
  214. // 滚动
  215. scroll(e) {
  216. this.scrollYY = e.detail.scrollTop;
  217. if (e.detail.scrollTop < 20) {
  218. this.scroll_refresher_enabled = true;
  219. } else {
  220. this.scroll_refresher_enabled = false;
  221. }
  222. },
  223. // 阻止浏览器滑动
  224. stop(e) {
  225. e.preventDefault();
  226. },
  227. },
  228. onLoad(options) {
  229. console.log(options);
  230. this.options = options;
  231. //滚动条位置设置
  232. if (options.scrollYY !== undefined) {
  233. this.scroll_top = options.scrollYY;
  234. }
  235. this.waitingOrders(0);
  236. // #ifdef APP-PLUS
  237. webHandle("no", "app");
  238. // #endif
  239. // #ifdef H5
  240. webHandle("no", "wx");
  241. // #endif
  242. },
  243. onShow() {
  244. this.SMFlag = true;
  245. // #ifdef H5
  246. document.body.addEventListener("touchmove", this.stop, {
  247. passive: false,
  248. });
  249. // #endif
  250. },
  251. onHide() {
  252. // #ifdef H5
  253. document.body.removeEventListener("touchmove", this.stop, {
  254. passive: false,
  255. });
  256. // #endif
  257. },
  258. };
  259. </script>
  260. <style lang="less">
  261. .patientInformationList {
  262. width: 100%;
  263. height: 100%;
  264. position: relative;
  265. .newicon {
  266. color: #49b856;
  267. font-size: 50rpx;
  268. &.colorRed {
  269. color: red;
  270. font-size: 40rpx;
  271. }
  272. }
  273. .page_tab {
  274. width: 100%;
  275. height: 96rpx;
  276. display: flex;
  277. position: fixed;
  278. left: 0;
  279. top: 0;
  280. z-index: 999;
  281. .page_tab_bar {
  282. flex: 1;
  283. font-size: 36rpx;
  284. background: #fff;
  285. display: flex;
  286. justify-content: center;
  287. align-items: center;
  288. position: relative;
  289. &:after {
  290. content: "";
  291. position: absolute;
  292. left: 0;
  293. bottom: 0;
  294. height: 2rpx;
  295. width: 100%;
  296. background-color: transparent;
  297. }
  298. .tab_dept {
  299. position: relative;
  300. .changeDept {
  301. white-space: nowrap;
  302. margin: 0;
  303. position: absolute;
  304. right: 0;
  305. top: 50%;
  306. transform: translate(105%, -50%);
  307. padding: 0 0.5em;
  308. line-height: 2;
  309. }
  310. }
  311. &.active {
  312. color: #49b856;
  313. &:after {
  314. background-color: #49b856;
  315. }
  316. }
  317. }
  318. }
  319. .zwsj {
  320. position: absolute;
  321. left: 50%;
  322. top: 180rpx;
  323. transform: translateX(-50%);
  324. .zwsj-img {
  325. width: 560rpx;
  326. }
  327. .zwsj-txt {
  328. font-size: 36rpx;
  329. font-weight: 700;
  330. margin-top: 20rpx;
  331. text-align: center;
  332. }
  333. }
  334. .page_items {
  335. // height: calc(100vh - 184rpx);
  336. height: calc(100vh - 96rpx);
  337. padding: 0 20rpx;
  338. padding-top: 96rpx;
  339. .page_items_scroll {
  340. height: 100%;
  341. .page_item_wrap {
  342. position: relative;
  343. margin-bottom: 32rpx;
  344. .page_item {
  345. margin-bottom: 16rpx;
  346. // height: 276rpx;
  347. height: 200rpx;
  348. background: #fff;
  349. border-radius: 8rpx;
  350. overflow: hidden;
  351. border: 2rpx solid #e5e9ed;
  352. display: flex;
  353. flex-direction: column;
  354. justify-content: space-between;
  355. .L {
  356. width: 40rpx;
  357. height: 40rpx;
  358. border-radius: 50%;
  359. background: #f9fafb;
  360. position: absolute;
  361. left: -24rpx;
  362. top: 68rpx;
  363. border: 2rpx solid #e5e9ed;
  364. }
  365. .R {
  366. width: 40rpx;
  367. height: 40rpx;
  368. border-radius: 50%;
  369. background: #f9fafb;
  370. position: absolute;
  371. float: right;
  372. right: -24rpx;
  373. top: 68rpx;
  374. border: 2rpx solid #e5e9ed;
  375. }
  376. .page_item_top {
  377. height: 86rpx;
  378. border-bottom: 2rpx dashed #e5e9ed;
  379. padding: 0 16rpx;
  380. display: flex;
  381. align-items: center;
  382. justify-content: space-between;
  383. .send_wrap {
  384. display: flex;
  385. justify-content: space-between;
  386. align-items: center;
  387. }
  388. .sendBack {
  389. button {
  390. font-size: 28rpx;
  391. height: 52rpx;
  392. line-height: 52rpx;
  393. margin: 0;
  394. color: rgb(7, 134, 60);
  395. }
  396. }
  397. .page_item_top_L {
  398. height: 100%;
  399. float: left;
  400. display: flex;
  401. align-items: center;
  402. line-height: 88rpx;
  403. .L_time {
  404. color: #6cc076;
  405. font-size: 32rpx;
  406. }
  407. }
  408. .page_item_top_R {
  409. height: 40rpx;
  410. float: right;
  411. line-height: 40rpx;
  412. font-size: 24rpx;
  413. padding: 0 8rpx;
  414. background-color: red;
  415. color: #fff;
  416. }
  417. }
  418. .page_item_cont {
  419. min-height: 100rpx;
  420. max-height: 344rpx;
  421. padding: 0 16rpx;
  422. text-align: left;
  423. position: relative;
  424. .page_item_conts {
  425. color: rgb(102, 102, 102);
  426. font-size: 28rpx;
  427. display: flex;
  428. align-items: center;
  429. min-height: 100rpx;
  430. max-height: 344rpx;
  431. view {
  432. margin-bottom: 10rpx;
  433. margin-left: 40rpx;
  434. &:first-of-type {
  435. margin-left: 0;
  436. }
  437. }
  438. text {
  439. color: #49b856;
  440. }
  441. .num {
  442. float: right;
  443. }
  444. }
  445. }
  446. .page_item_btn {
  447. height: 88rpx;
  448. background-image: linear-gradient(to right, #72c172, #3bb197);
  449. border-radius: 8rpx;
  450. line-height: 88rpx;
  451. color: #fff;
  452. font-size: 36rpx;
  453. font-weight: 700;
  454. text-align: center;
  455. }
  456. }
  457. .L-l {
  458. width: 2rpx;
  459. height: 40rpx;
  460. background: #f9fafb;
  461. position: absolute;
  462. left: 20rpx;
  463. top: 72rpx;
  464. display: none;
  465. }
  466. .R-l {
  467. width: 2rpx;
  468. height: 40rpx;
  469. background: #f9fafb;
  470. position: absolute;
  471. right: 20rpx;
  472. top: 72rpx;
  473. display: none;
  474. }
  475. }
  476. }
  477. }
  478. }
  479. </style>