patientInformationList.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755
  1. <template>
  2. <view class="patientInformationList">
  3. <view class="page_tab">
  4. <view class="page_tab_bar active">
  5. <view class="tab_dept">{{ currenDept.dept
  6. }}<button type="default" size="mini" class="changeDept" @click="changeDept">
  7. 切换科室
  8. </button></view>
  9. </view>
  10. </view>
  11. <view v-if="zxzData.length == 0" class="zwsj">
  12. <image class="zwsj-img" mode="widthFix" src="../../static/img/zanwushuju.png"></image>
  13. <view class="zwsj-txt">暂无数据</view>
  14. </view>
  15. <view v-if="zxzData.length" class="page_items">
  16. <scroll-view class="page_items_scroll" scroll-y :refresher-enabled="scroll_refresher_enabled"
  17. :refresher-triggered="triggered" @refresherrefresh="refresherrefresh" @refresherrestore="refresherrestore"
  18. @scrolltolower="scrolltolower" :scroll-top="scroll_top" @refresherabort="refresherabort" @scroll="scroll"
  19. refresher-background="transport">
  20. <view class="page_item_wrap" v-for="(item, index) of zxzData" :key="index">
  21. <view class="page_item">
  22. <view class="L"></view>
  23. <view class="R"></view>
  24. <view class="page_item_top">
  25. <view class="page_item_top_L">
  26. <template v-if="item.illnessState">
  27. <text v-if="item.illnessState.value === '2'"
  28. class="colorRed icon_transport transport-tubiao_wei"></text>
  29. <text v-if="item.illnessState.value === '3'" class="colorRed icon_transport transport-zhong"></text>
  30. </template>
  31. <template v-if="item.careLevel">
  32. <text v-if="item.careLevel.value === '0'" class="icon_transport transport-te1"></text>
  33. <text v-if="item.careLevel.value === '1'" class="icon_transport transport-1_round_solid"></text>
  34. <text v-if="item.careLevel.value === '2'" class="icon_transport transport-2_round_solid"></text>
  35. <text v-if="item.careLevel.value === '3'" class="icon_transport transport-3_round_solid"></text>
  36. </template>
  37. <!-- <view class="page_item_top_R" v-show="wechatFocusSwitch == 1 && item.focusPatient == 1">
  38. 需要帮助
  39. </view>
  40. <view class="page_item_top_R" style="background-color: #49b856"
  41. v-show="wechatFocusSwitch == 1 && !item.focusPatient">
  42. 无需帮助
  43. </view> -->
  44. </view>
  45. <view class="send_wrap">
  46. <view class="sendBack">
  47. <button @click="scanDept(item)">送回病房</button>
  48. </view>
  49. </view>
  50. </view>
  51. <view class="page_item_cont">
  52. <view class="page_item_conts">
  53. <view>{{ item.patientName }}({{ item.patientCode }})</view>
  54. <view> 床号:{{ item.bedNum || "-" }} </view>
  55. <view> 待检:{{ item.watingCount }} </view>
  56. </view>
  57. </view>
  58. <view class="page_item_btn" hover-class="seimin-btn-hover" @click="itemInfo(item.patientCode)">患者详情</view>
  59. </view>
  60. <view class="L-l"></view>
  61. <view class="R-l"></view>
  62. </view>
  63. </scroll-view>
  64. </view>
  65. <!-- 底部扫一扫 -->
  66. <bigScreen></bigScreen>
  67. <!-- 送回病房弹窗 -->
  68. <showModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content"
  69. :operate="models1.operate" @ok="ok1" @cancel="cancel1"></showModel>
  70. <!-- 送回病房建单弹窗 -->
  71. <showModel :title="models2.title" :icon="models2.icon" :disjunctor="models2.disjunctor" :content="models2.content"
  72. :operate="models2.operate" @ok="ok2" @cancel="cancel2"></showModel>
  73. <!-- 送回病房建单弹窗-扫描科室 -->
  74. <showModel :title="models3.title" :icon="models3.icon" :disjunctor="models3.disjunctor" :content="models3.content"
  75. :operate="models3.operate" @ok="ok3" @cancel="cancel3"></showModel>
  76. </view>
  77. </template>
  78. <script>
  79. import bigScreen from "../../components/bigScreen/bigScreen.vue";
  80. import {
  81. get,
  82. post,
  83. SM,
  84. deleteIt,
  85. webHandle
  86. } from "../../http/http.js";
  87. export default {
  88. data() {
  89. return {
  90. SMFlag:true,
  91. hosId: uni.getStorageSync("userData").user.currentHospital.id,
  92. // 选中的患者项
  93. currentItem: {},
  94. // 送回病房弹窗model
  95. models1: {
  96. disjunctor: false,
  97. },
  98. // 送回病房建单弹窗model
  99. models2: {
  100. disjunctor: false,
  101. },
  102. // 送回病房建单弹窗model-扫描科室
  103. models3: {
  104. disjunctor: false,
  105. },
  106. scrollYY: 0, //滚动条滚动的距离
  107. options: {},
  108. // wechatFocusSwitch: 0,
  109. //当前登录人所属科室
  110. currenDept: {},
  111. // 抢单的id
  112. qdId: "",
  113. //列表数据
  114. zxzData: [],
  115. //分页页码
  116. idx: 0,
  117. // 列表项总数
  118. totalNum: -1,
  119. triggered: false, //下拉刷新状态
  120. freshing: false, //上拉加载开关
  121. scroll_top: 0, //距离顶部的距离
  122. scroll_refresher_enabled: true, //是否开启自定义下拉刷新
  123. currentStartDept: {}, //扫描的起点科室
  124. };
  125. },
  126. components: {
  127. bigScreen,
  128. },
  129. methods: {
  130. ok2() {
  131. this.models2.disjunctor = false;
  132. let currentItem = JSON.parse(this.options.currentItem);
  133. uni.showLoading({
  134. mask: true,
  135. title: '加载中'
  136. })
  137. let userId = uni.getStorageSync("userData").user.id;
  138. let postData = {
  139. "workOrder": {
  140. sourceId: 4,
  141. "hosId": this.hosId,
  142. "startDept": {
  143. "id": this.options.did
  144. },
  145. "createDept": this.options.did,
  146. "patient": {
  147. "patientCode": currentItem.patientCode
  148. },
  149. "worker": {
  150. "id": userId
  151. }
  152. }
  153. };
  154. console.log(postData)
  155. post("/workerOrder/returnSickRoom", postData).then((res) => {
  156. uni.hideLoading();
  157. if (res.status == 200) {
  158. uni.showToast({
  159. icon: 'success',
  160. title: '建单成功',
  161. });
  162. } else {
  163. uni.showToast({
  164. icon: "none",
  165. title: "请求失败!",
  166. });
  167. }
  168. })
  169. },
  170. cancel2() {
  171. this.models2.disjunctor = false;
  172. },
  173. ok3() {
  174. this.models3.disjunctor = false;
  175. uni.showLoading({
  176. mask: true,
  177. title: '加载中'
  178. })
  179. let userId = uni.getStorageSync("userData").user.id;
  180. let postData = {
  181. "workOrder": {
  182. sourceId: 4,
  183. "hosId": this.hosId,
  184. "startDept": {
  185. "id": this.currentStartDept.id
  186. },
  187. "createDept": this.currentStartDept.id,
  188. "patient": {
  189. "patientCode": this.currentItem.patientCode
  190. },
  191. "worker": {
  192. "id": userId
  193. }
  194. }
  195. };
  196. console.log(postData)
  197. post("/workerOrder/returnSickRoom", postData).then((res) => {
  198. uni.hideLoading();
  199. if (res.status == 200) {
  200. uni.showToast({
  201. icon: 'success',
  202. title: '建单成功',
  203. });
  204. } else {
  205. uni.showToast({
  206. icon: "none",
  207. title: "请求失败!",
  208. });
  209. }
  210. })
  211. },
  212. cancel3() {
  213. this.models3.disjunctor = false;
  214. },
  215. // 送回病房-建单
  216. sendBuild() {
  217. let currentItem = JSON.parse(this.options.currentItem);
  218. this.models2 = {
  219. disjunctor: true,
  220. title: "提示",
  221. content: `您选择的起点科室为【${this.options.ddept}】,您将从【${this.options.ddept}】把【${currentItem.patientName}】送回【${this.options.dept}】,如您确认请点击“确认建单”。`,
  222. icon: "warn",
  223. operate: {
  224. ok: "确认建单",
  225. cancel: "取消",
  226. },
  227. };
  228. },
  229. // 送回病房-扫描科室
  230. scanDept(item) {
  231. if (!this.SMFlag) {
  232. return;
  233. }
  234. this.SMFlag = false;
  235. this.currentItem = item;
  236. let code = "";
  237. SM().then((ress1) => {
  238. uni.showLoading({
  239. title: "加载中",
  240. mask: true,
  241. });
  242. //检验二维码的有效性
  243. post("/dept/scanning", {
  244. content: ress1,
  245. }).then((result) => {
  246. this.SMFlag = true;
  247. if (result.state == 200 || result.state == 201) {
  248. let ress = result.code;
  249. if (ress) {
  250. code = ress;
  251. // 科室扫描
  252. let postData = {
  253. "idx": 0,
  254. "sum": 1,
  255. "department": {
  256. "hospital": {
  257. "id": this.hosId
  258. },
  259. "qrcode": code
  260. }
  261. };
  262. post("/data/fetchDataList/department", postData).then((res) => {
  263. uni.hideLoading();
  264. if (res.status == 200) {
  265. if (res.totalNum > 0) {
  266. this.currentStartDept = res.list[0];
  267. this.models3 = {
  268. disjunctor: true,
  269. title: "提示",
  270. content: `您选择的起点科室为【${this.currentStartDept.dept}】,您将从【${this.currentStartDept.dept}】把【${this.currentItem.patientName}】送回【${this.currenDept.dept}】,如您确认请点击“确认建单”。`,
  271. icon: "warn",
  272. operate: {
  273. ok: "确认建单",
  274. cancel: "取消",
  275. },
  276. };
  277. } else {
  278. uni.hideLoading();
  279. uni.showToast({
  280. icon: "none",
  281. title: "请扫描正确的科室码!",
  282. });
  283. }
  284. } else {
  285. uni.hideLoading();
  286. uni.showToast({
  287. icon: "none",
  288. title: "请求失败!",
  289. });
  290. }
  291. });
  292. }
  293. } else {
  294. uni.hideLoading();
  295. uni.showToast({
  296. icon: "none",
  297. title: "请求失败!",
  298. });
  299. }
  300. });
  301. }).catch(err=>{
  302. this.SMFlag = true;
  303. });
  304. },
  305. // 送回病房-选择起点科室
  306. sendBack(item) {
  307. this.currentItem = item;
  308. this.models1 = {
  309. disjunctor: true,
  310. title: "提示",
  311. content: `您好,您是要将【${item.patientName}】送回病房吗?如确认请您点击“选择起点科室”建立工单。`,
  312. icon: "warn",
  313. operate: {
  314. ok: "选择起点科室",
  315. cancel: "取消",
  316. },
  317. };
  318. },
  319. ok1() {
  320. this.models1.disjunctor = false;
  321. uni.navigateTo({
  322. url: `../search/search?type=sendBackPatientList&currentItem=${JSON.stringify(this.currentItem)}&cid=${this.currenDept.id}&cdept=${this.currenDept.dept}&scrollYY=${this.scrollYY}`,
  323. });
  324. },
  325. cancel1() {
  326. this.models1.disjunctor = false;
  327. },
  328. // 切换科室
  329. changeDept() {
  330. uni.navigateTo({
  331. url: `../search/search?type=patientInformationList`,
  332. });
  333. },
  334. // 进入详情页
  335. itemInfo(patientCode) {
  336. // #ifdef H5
  337. document.body.removeEventListener("touchmove", this.stop, {
  338. passive: false,
  339. });
  340. // #endif
  341. uni.navigateTo({
  342. url: `../patientInformationInfo/patientInformationInfo?patientCode=${patientCode}`,
  343. });
  344. },
  345. //患者列表数据获取
  346. waitingOrders(idx) {
  347. if (this.zxzData.length == this.totalNum) {
  348. uni.showToast({
  349. icon: "none",
  350. title: "没有更多数据了!",
  351. });
  352. this.freshing = true;
  353. return;
  354. }
  355. let data = {
  356. idx,
  357. sum: 99999,
  358. patient: {
  359. department: {
  360. id: this.currenDept.id,
  361. },
  362. },
  363. };
  364. uni.showLoading({
  365. title: "加载中",
  366. mask: true,
  367. });
  368. // 请求列表数据
  369. post("/nurse/fetchDataList/patient", data).then((res) => {
  370. uni.hideLoading();
  371. if (res.status == 200) {
  372. this.triggered = false;
  373. this.freshing = true;
  374. this.totalNum = res.totalNum;
  375. if (idx === 0) {
  376. this.zxzData = res.list;
  377. } else {
  378. this.zxzData.push(...res.list);
  379. }
  380. } else {
  381. uni.showToast({
  382. icon: "none",
  383. title: "请求失败!",
  384. });
  385. }
  386. });
  387. },
  388. //刷新
  389. refresherrefresh() {
  390. if (this.triggered) {
  391. return;
  392. }
  393. console.log("下拉刷新");
  394. this.triggered = true;
  395. this.idx = 0;
  396. this.totalNum = -1;
  397. this.waitingOrders(0);
  398. },
  399. // 下拉刷新复位
  400. refresherrestore() {
  401. this.triggered = false;
  402. console.log("下拉刷新复位");
  403. },
  404. //下拉刷新中止
  405. refresherabort() {
  406. this.triggered = false;
  407. console.log("下拉刷新中止");
  408. },
  409. //分页,上拉加载
  410. scrolltolower() {
  411. if (this.freshing) {
  412. console.log("上拉加载");
  413. this.freshing = false;
  414. this.waitingOrders(++this.idx);
  415. }
  416. },
  417. // 滚动
  418. scroll(e) {
  419. this.scrollYY = e.detail.scrollTop;
  420. if (e.detail.scrollTop < 20) {
  421. this.scroll_refresher_enabled = true;
  422. } else {
  423. this.scroll_refresher_enabled = false;
  424. }
  425. },
  426. // 阻止浏览器滑动
  427. stop(e) {
  428. e.preventDefault();
  429. },
  430. // 获取需要帮助权限
  431. // getWechatFocusSwitch() {
  432. // let postData = {
  433. // idx: 0,
  434. // sum: 1,
  435. // taskType: {
  436. // hosIds: this.hosId,
  437. // associationType: {
  438. // id: 260,
  439. // },
  440. // },
  441. // };
  442. // post("/configuration/fetchDataList/taskType", postData).then((res) => {
  443. // if (res.status == 200) {
  444. // this.wechatFocusSwitch = res.list[0].wechatFocusSwitch;
  445. // } else {
  446. // uni.showToast({
  447. // icon: "none",
  448. // title: "请求失败!",
  449. // });
  450. // }
  451. // });
  452. // },
  453. },
  454. onLoad(options) {
  455. console.log(options);
  456. this.options = options;
  457. //滚动条位置设置
  458. if (options.scrollYY !== undefined) {
  459. this.scroll_top = options.scrollYY;
  460. }
  461. if (options.did && options.ddept && options.currentItem) {
  462. this.sendBuild();
  463. }
  464. let patientCurrentDept = uni.getStorageSync("patientCurrentDept");
  465. if (options.id && options.dept) {
  466. let {
  467. id,
  468. dept
  469. } = options;
  470. this.currenDept.id = id;
  471. this.currenDept.dept = dept;
  472. } else if (patientCurrentDept) {
  473. this.currenDept.id = patientCurrentDept.id;
  474. this.currenDept.dept = patientCurrentDept.dept;
  475. } else {
  476. this.currenDept = uni.getStorageSync("userData").user.dept;
  477. }
  478. // this.getWechatFocusSwitch();
  479. this.waitingOrders(0);
  480. // #ifdef APP-PLUS
  481. webHandle("no", "app");
  482. // #endif
  483. // #ifdef H5
  484. webHandle("no", "wx");
  485. // #endif
  486. },
  487. onShow() {
  488. this.SMFlag = true;
  489. // #ifdef H5
  490. document.body.addEventListener("touchmove", this.stop, {
  491. passive: false,
  492. });
  493. // #endif
  494. },
  495. onHide() {
  496. // #ifdef H5
  497. document.body.removeEventListener("touchmove", this.stop, {
  498. passive: false,
  499. });
  500. // #endif
  501. },
  502. };
  503. </script>
  504. <style lang="less">
  505. .patientInformationList {
  506. width: 100%;
  507. height: 100%;
  508. position: relative;
  509. .icon_transport {
  510. color: #49b856;
  511. font-size: 50rpx;
  512. &.colorRed {
  513. color: red;
  514. font-size: 40rpx;
  515. }
  516. }
  517. .page_tab {
  518. width: 100%;
  519. height: 96rpx;
  520. display: flex;
  521. position: fixed;
  522. left: 0;
  523. top: 0;
  524. z-index: 999;
  525. .page_tab_bar {
  526. flex: 1;
  527. font-size: 36rpx;
  528. background: #fff;
  529. display: flex;
  530. justify-content: center;
  531. align-items: center;
  532. position: relative;
  533. &:after {
  534. content: "";
  535. position: absolute;
  536. left: 0;
  537. bottom: 0;
  538. height: 2rpx;
  539. width: 100%;
  540. background-color: transparent;
  541. }
  542. .tab_dept {
  543. position: relative;
  544. .changeDept {
  545. white-space: nowrap;
  546. margin: 0;
  547. position: absolute;
  548. right: 0;
  549. top: 50%;
  550. transform: translate(105%, -50%);
  551. padding: 0 0.5em;
  552. line-height: 2;
  553. }
  554. }
  555. &.active {
  556. color: #49b856;
  557. &:after {
  558. background-color: #49b856;
  559. }
  560. }
  561. }
  562. }
  563. .zwsj {
  564. position: absolute;
  565. left: 50%;
  566. top: 180rpx;
  567. transform: translateX(-50%);
  568. .zwsj-img {
  569. width: 560rpx;
  570. }
  571. .zwsj-txt {
  572. font-size: 36rpx;
  573. font-weight: 700;
  574. margin-top: 20rpx;
  575. text-align: center;
  576. }
  577. }
  578. .page_items {
  579. height: calc(100vh - 184rpx);
  580. padding: 0 20rpx;
  581. padding-top: 96rpx;
  582. .page_items_scroll {
  583. height: 100%;
  584. .page_item_wrap {
  585. position: relative;
  586. margin-bottom: 32rpx;
  587. .page_item {
  588. margin-bottom: 16rpx;
  589. height: 276rpx;
  590. background: #fff;
  591. border-radius: 8rpx;
  592. overflow: hidden;
  593. border: 2rpx solid #e5e9ed;
  594. display: flex;
  595. flex-direction: column;
  596. justify-content: space-between;
  597. .L {
  598. width: 40rpx;
  599. height: 40rpx;
  600. border-radius: 50%;
  601. background: #f9fafb;
  602. position: absolute;
  603. left: -24rpx;
  604. top: 68rpx;
  605. border: 2rpx solid #e5e9ed;
  606. }
  607. .R {
  608. width: 40rpx;
  609. height: 40rpx;
  610. border-radius: 50%;
  611. background: #f9fafb;
  612. position: absolute;
  613. float: right;
  614. right: -24rpx;
  615. top: 68rpx;
  616. border: 2rpx solid #e5e9ed;
  617. }
  618. .page_item_top {
  619. height: 86rpx;
  620. border-bottom: 2rpx dashed #e5e9ed;
  621. padding: 0 16rpx;
  622. display: flex;
  623. align-items: center;
  624. justify-content: space-between;
  625. .send_wrap {
  626. display: flex;
  627. justify-content: space-between;
  628. align-items: center;
  629. }
  630. .sendBack {
  631. button {
  632. font-size: 28rpx;
  633. height: 52rpx;
  634. line-height: 52rpx;
  635. margin: 0;
  636. color: rgb(7, 134, 60);
  637. }
  638. }
  639. .page_item_top_L {
  640. height: 100%;
  641. float: left;
  642. display: flex;
  643. align-items: center;
  644. line-height: 88rpx;
  645. .L_time {
  646. color: #6cc076;
  647. font-size: 32rpx;
  648. }
  649. }
  650. .page_item_top_R {
  651. height: 40rpx;
  652. float: right;
  653. line-height: 40rpx;
  654. font-size: 24rpx;
  655. padding: 0 8rpx;
  656. background-color: red;
  657. color: #fff;
  658. }
  659. }
  660. .page_item_cont {
  661. min-height: 100rpx;
  662. max-height: 344rpx;
  663. padding: 0 16rpx;
  664. text-align: left;
  665. position: relative;
  666. .page_item_conts {
  667. color: rgb(102, 102, 102);
  668. font-size: 28rpx;
  669. display: flex;
  670. align-items: center;
  671. min-height: 100rpx;
  672. max-height: 344rpx;
  673. view {
  674. margin-bottom: 10rpx;
  675. margin-left: 40rpx;
  676. &:first-of-type {
  677. margin-left: 0;
  678. }
  679. }
  680. text {
  681. color: #49b856;
  682. }
  683. .num {
  684. float: right;
  685. }
  686. }
  687. }
  688. .page_item_btn {
  689. height: 88rpx;
  690. background-image: linear-gradient(to right, #72c172, #3bb197);
  691. border-radius: 8rpx;
  692. line-height: 88rpx;
  693. color: #fff;
  694. font-size: 36rpx;
  695. font-weight: 700;
  696. text-align: center;
  697. }
  698. }
  699. .L-l {
  700. width: 2rpx;
  701. height: 40rpx;
  702. background: #f9fafb;
  703. position: absolute;
  704. left: 20rpx;
  705. top: 72rpx;
  706. display: none;
  707. }
  708. .R-l {
  709. width: 2rpx;
  710. height: 40rpx;
  711. background: #f9fafb;
  712. position: absolute;
  713. right: 20rpx;
  714. top: 72rpx;
  715. display: none;
  716. }
  717. }
  718. }
  719. }
  720. }
  721. </style>