patientBuildConfirm.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699
  1. <template>
  2. <view class="patientBuildConfirm">
  3. <view class="qco_msg" v-html="patientMsg"></view>
  4. <view class="orderDetail_info">
  5. <scroll-view scroll-y class="orderDetail_infoItem">
  6. <view class="orderDetail_infoItem_header">
  7. <view class="orderDetail_infoItem_header_title">
  8. <view class="icon"></view>
  9. <view class="taskNameAndWorkerName">
  10. <text class="taskName">服务</text>
  11. </view>
  12. </view>
  13. <text class="orderDetail_infoItem_header_more">{{patientTaskType.taskName||'暂无'}}</text>
  14. </view>
  15. <view class="orderDetail_infoItem_item">
  16. <view class="orderDetail_infoItem_item_content">
  17. <text class="orderDetail_infoItem_item_name">起点科室</text>
  18. <text
  19. class="orderDetail_infoItem_item_value">{{deptDisplay == 2?patientBuildData.dept.startDept.deptalias:patientBuildData.dept.startDept.dept}}</text>
  20. </view>
  21. <view class="orderDetail_infoItem_item_content"
  22. v-if="patientTaskType.associationType.value == ASSOCIATION_TYPES['患者陪检业务']">
  23. <text class="orderDetail_infoItem_item_name">中间科室</text>
  24. <text class="orderDetail_infoItem_item_value">{{checkDeptsName}}</text>
  25. </view>
  26. <view class="orderDetail_infoItem_item_content">
  27. <text class="orderDetail_infoItem_item_name">目标科室</text>
  28. <text
  29. class="orderDetail_infoItem_item_value">{{deptDisplay == 2?patientBuildData.dept.endDept.deptalias:patientBuildData.dept.endDept.dept}}</text>
  30. </view>
  31. <view class="orderDetail_infoItem_item_content">
  32. <text class="orderDetail_infoItem_item_name">携带设备</text>
  33. <text class="orderDetail_infoItem_item_value">{{goodsName||'暂无'}}</text>
  34. </view>
  35. <view class="orderDetail_infoItem_item_content">
  36. <text class="orderDetail_infoItem_item_name">预约时间</text>
  37. <text class="orderDetail_infoItem_item_value">{{patientBuildData.yyTime||'暂无'}}</text>
  38. </view>
  39. <view class="orderDetail_infoItem_item_content">
  40. <text class="orderDetail_infoItem_item_name">是否紧急</text>
  41. <text class="orderDetail_infoItem_item_value">{{patientBuildData.urgent.isUrgent?'是':'否'}}</text>
  42. </view>
  43. </view>
  44. </scroll-view>
  45. </view>
  46. <!-- 底部 -->
  47. <seiminFooterBtn :btns="btns"></seiminFooterBtn>
  48. <seiminModel ref="seiminModel"></seiminModel>
  49. </view>
  50. </template>
  51. <script>
  52. import {
  53. mapState,
  54. } from "vuex";
  55. import {
  56. ASSOCIATION_TYPES
  57. } from "../../utils/enum.association_types.js";
  58. import {
  59. SOURCEID
  60. } from "../../utils/enum.sourceid.js";
  61. import {
  62. uniqBy
  63. } from 'lodash'
  64. import {
  65. reqBuild
  66. } from '../../request/api.js';
  67. export default {
  68. data() {
  69. return {
  70. reFresh: '',
  71. ASSOCIATION_TYPES,
  72. SOURCEID,
  73. // 中间科室名称
  74. checkDeptsName: '',
  75. // 设备
  76. goodsName: '',
  77. //患者建单信息展示
  78. patientMsg: '请您确认一下建单信息!',
  79. // 传递过来的参数
  80. queryParams: {},
  81. //底部按钮
  82. btns: [{
  83. name: "取消",
  84. type: "default",
  85. click: () => {
  86. uni.navigateBack();
  87. },
  88. }, {
  89. name: "确认建单",
  90. type: "primary",
  91. click: () => {
  92. this.buildOrder();
  93. },
  94. }, ],
  95. };
  96. },
  97. computed: {
  98. ...mapState('login', [
  99. 'loginInfo',
  100. ]),
  101. ...mapState('other', [
  102. 'deptDisplay',
  103. 'patientBuildTrip',
  104. 'patientTaskType',
  105. 'selectedPatient',
  106. 'patientBuildData',
  107. ]),
  108. },
  109. methods: {
  110. // 重复策略
  111. showReaptModal(msg, postData) {
  112. this.$refs.seiminModel.show({
  113. icon: "warn",
  114. content: msg,
  115. btns: [{
  116. name: "否",
  117. type: "primary",
  118. click: () => {
  119. this.$refs.seiminModel.close();
  120. },
  121. }, {
  122. name: "是",
  123. type: "default",
  124. click: () => {
  125. this.$refs.seiminModel.close();
  126. postData.tipsCreateOder = 1;
  127. uni.showLoading({
  128. mask: true,
  129. title: '加载中'
  130. })
  131. reqBuild(this.patientBuildData.isYY ? "appointmentOrder" : "startOrder", postData)
  132. .then((data) => {
  133. uni.hideLoading();
  134. if (data.status == 200) {
  135. this.$refs.seiminModel.show({
  136. skin: "toast",
  137. icon: "success",
  138. content: "您申请的工单已建单成功,工作人员会尽快处理!",
  139. btns:[{
  140. click:()=>{
  141. uni.navigateTo({
  142. url: '/pages/patientList/patientList'
  143. })
  144. }
  145. }]
  146. });
  147. } else {
  148. this.$refs.seiminModel.show({
  149. skin: "toast",
  150. icon: "error",
  151. content: data.msg || "创建失败",
  152. });
  153. }
  154. });
  155. },
  156. }, ],
  157. })
  158. },
  159. // 是否需要护士医生陪同模态框
  160. accompany(postData, yuyue, type) {
  161. this.$refs.seiminModel.show({
  162. icon: "warn",
  163. content: "您选择的患者是危重或特级护理或一级护理患者,请问是否需要医护陪同检查?",
  164. btns: [{
  165. name: "否",
  166. type: "primary",
  167. click: () => {
  168. this.$refs.seiminModel.close();
  169. if (type == "patient") {
  170. //患者列表直接建单
  171. this.buildCommon(postData, 0, 'accompany3');
  172. } else if (type == "patient-yy") {
  173. //患者列表预约建单
  174. this.buildCommon(postData, 0, 'accompany4');
  175. }
  176. },
  177. }, {
  178. name: "是",
  179. type: "default",
  180. click: () => {
  181. this.$refs.seiminModel.close();
  182. if (type == "patient") {
  183. //患者列表直接建单
  184. this.buildCommon(postData, 0, 'accompany1');
  185. } else if (type == "patient-yy") {
  186. //患者列表预约建单
  187. this.buildCommon(postData, 0, 'accompany2');
  188. }
  189. },
  190. }, {
  191. name: "取消",
  192. flex: 1,
  193. type: "default",
  194. click: () => {
  195. this.$refs.seiminModel.close();
  196. },
  197. }, ]
  198. });
  199. },
  200. // 建单公共方法
  201. buildCommon(postData, type1, type2) {
  202. if (type1 === null) {
  203. if (!this.patientBuildData.isYY) {
  204. postData.workOrder.platform = 2;
  205. }
  206. //是否需要医护陪同检查
  207. if (this.selectedPatient.careLevel && this.patientTaskType.isAccompany == 1) {
  208. //特级护理或一级护理
  209. if (
  210. this.selectedPatient.careLevel.value === "0" ||
  211. this.selectedPatient.careLevel.value === "1"
  212. ) {
  213. this.accompany(postData, this.patientBuildData.isYY, type2);
  214. return;
  215. }
  216. }
  217. if (
  218. this.selectedPatient.illnessState &&
  219. this.patientTaskType.isAccompany == 1
  220. ) {
  221. //病危或病重
  222. if (
  223. this.selectedPatient.illnessState.value === "2" ||
  224. this.selectedPatient.illnessState.value === "3"
  225. ) {
  226. this.accompany(postData, this.patientBuildData.isYY, type2);
  227. return;
  228. }
  229. }
  230. postData.workOrder.isAccompany = 0; //是否需要医护陪同检查
  231. } else if (typeof type1 === 'number') {
  232. postData.workOrder.isAccompany = type1; //是否需要医护陪同检查
  233. }
  234. uni.showLoading({
  235. mask: true,
  236. title: '加载中'
  237. })
  238. reqBuild(this.patientBuildData.isYY ? "appointmentOrder" : "startOrder", postData)
  239. .then((data) => {
  240. uni.hideLoading();
  241. if (data.status == 200) {
  242. this.$refs.seiminModel.show({
  243. skin: "toast",
  244. icon: "success",
  245. content: "您申请的工单已建单成功,工作人员会尽快处理!",
  246. btns:[{
  247. click:()=>{
  248. uni.navigateTo({
  249. url: '/pages/patientList/patientList'
  250. })
  251. }
  252. }]
  253. });
  254. } else if (data.status == 1000033) {
  255. //重复建单那策略
  256. this.showReaptModal(data.msg, postData);
  257. } else {
  258. this.$refs.seiminModel.show({
  259. skin: "toast",
  260. icon: "error",
  261. content: data.msg || "创建失败",
  262. });
  263. }
  264. });
  265. },
  266. // 确定建单
  267. buildOrder() {
  268. let postData = {
  269. workOrder: {
  270. sourceId: this.SOURCEID['护士端'],
  271. taskType: {
  272. id: this.patientTaskType.id
  273. },
  274. startDept: {
  275. id: this.patientBuildData.dept.startDept.id
  276. },
  277. endDepts: [{
  278. id: this.patientBuildData.dept.endDept.id
  279. }],
  280. createDept: this.loginInfo.user.dept.id,
  281. patient: {
  282. patientCode: this.selectedPatient.patientCode,
  283. },
  284. },
  285. };
  286. // 半程陪检
  287. if (this.patientTaskType.associationType.value == this.ASSOCIATION_TYPES['患者陪检业务']) {
  288. postData.workOrder.taskType.isHalfInspect =
  289. this.patientTaskType.isHalfInspect === 1 ? 1 : 0; //半程陪检
  290. }
  291. // 携带设备
  292. let goodIds = '';
  293. goodIds = this.patientBuildData.goods ? this.patientBuildData.goods.map(v => v.id).toString() :
  294. '';
  295. postData.workOrder["goods"] = goodIds;
  296. // 加急原因
  297. if (!this.patientBuildData.isYY && this.patientTaskType.allowUrgent == 1 && this.patientBuildData.urgent
  298. .isUrgent) {
  299. postData.workOrder["urgentDetails"] = {
  300. checkStatus: {
  301. id: 329
  302. },
  303. urgentReason: this.patientBuildData.urgent.urgentRemark,
  304. };
  305. }
  306. // ---------------------
  307. let yy = false; //检查上是否有预约时间
  308. if (this.patientBuildData.checks && this.patientBuildData.checks.length) {
  309. yy = this.patientBuildData.checks.some((e) => e.yyTime);
  310. }
  311. if (
  312. yy &&
  313. this.patientBuildTrip.status == 200 &&
  314. this.patientBuildData.checks &&
  315. this.patientBuildData.checks.length
  316. ) {
  317. // 有预约时间
  318. postData.workOrder["checkList"] = this.patientBuildData.checks || [];
  319. this.$refs.seiminModel.show({
  320. icon: "warn",
  321. content: "您确认建单吗?",
  322. btns: [{
  323. name: "取消",
  324. type: "default",
  325. click: () => {
  326. this.$refs.seiminModel.close();
  327. },
  328. }, {
  329. name: "确认",
  330. type: "primary",
  331. click: () => {
  332. this.$refs.seiminModel.close();
  333. if (this.patientBuildData.isYY) {
  334. postData.workOrder.yyTime = this.patientBuildData.yyTime;
  335. }
  336. this.buildCommon(postData, null, 'patient-yy');
  337. },
  338. }, ]
  339. });
  340. } else {
  341. if (!yy && this.patientBuildTrip.status == 200) {
  342. postData.workOrder["checkList"] = this.patientBuildData.checks || [];
  343. // 添加预约时间
  344. if (this.patientBuildData.isYY) {
  345. postData.workOrder.yyTime = this.patientBuildData.yyTime;
  346. }
  347. } else {
  348. // 添加预约时间
  349. if (this.patientBuildData.isYY) {
  350. postData.workOrder.yyTime = this.patientBuildData.yyTime;
  351. }
  352. }
  353. if (this.patientBuildTrip.status != 200) {
  354. //微信端不需要自动送回功能
  355. postData.workOrder["isRemand"] = 0;
  356. }
  357. this.buildCommon(postData, null, 'patient');
  358. }
  359. },
  360. // 初始化
  361. init() {
  362. // 设备
  363. this.goodsName = this.patientBuildData.goods ? this.patientBuildData.goods.map(v => v.name).toString() :
  364. '';
  365. if (this.patientTaskType.associationType.value == this.ASSOCIATION_TYPES['患者陪检业务']) {
  366. // 患者陪检业务
  367. let execDeptArr = this.patientBuildData.checks.map(v => v.execDept);
  368. execDeptArr = uniqBy(execDeptArr, 'id');
  369. console.log(execDeptArr)
  370. this.checkDeptsName = execDeptArr.map(v => {
  371. return this.deptDisplay == 2 ? v.deptalias : v.dept;
  372. }).toString();
  373. }
  374. },
  375. },
  376. onLoad(queryParams) {
  377. this.queryParams = queryParams;
  378. this.init();
  379. },
  380. };
  381. </script>
  382. <style lang="scss" scoped>
  383. .patientBuildConfirm {
  384. margin-bottom: 100rpx;
  385. .qco_msg {
  386. padding: 32rpx;
  387. color: #999;
  388. line-height: 40rpx;
  389. font-size: 32rpx;
  390. text-align: center;
  391. }
  392. .orderDetail_info {
  393. padding: 0 24rpx;
  394. .orderDetail_infoItem {
  395. width: 702rpx;
  396. height: 80vh;
  397. background-color: #fff;
  398. margin-top: 8rpx;
  399. border-radius: 8rpx;
  400. position: relative;
  401. padding: 0 24rpx 24rpx;
  402. font-size: 32rpx;
  403. @include border;
  404. @include semicircle(#f9fafb, 82rpx);
  405. @include flex(flex-start, stretch, column);
  406. .ji,
  407. .jiaji {
  408. width: 60rpx;
  409. position: absolute;
  410. right: 0;
  411. top: 0;
  412. }
  413. .orderDetail_infoItem_header {
  414. height: 86rpx;
  415. @include border($directive:bottom, $style:dashed);
  416. @include flex(space-between, center);
  417. .orderDetail_infoItem_header_title {
  418. color: #333;
  419. flex: 1;
  420. @include flex(flex-start, center);
  421. .icon {
  422. width: 10rpx;
  423. height: 46rpx;
  424. border-radius: 2rpx;
  425. background-color: #F0F6ED;
  426. @include btn_background;
  427. }
  428. .taskNameAndWorkerName {
  429. flex: 1;
  430. @include flex;
  431. .taskName {
  432. max-width: 10em;
  433. margin-left: 8rpx;
  434. font-size: 38rpx;
  435. font-weight: bold;
  436. @include clamp;
  437. }
  438. }
  439. }
  440. .orderDetail_infoItem_header_more {
  441. color: $defaultColor;
  442. font-weight: bold;
  443. font-size: 38rpx;
  444. @include clamp;
  445. }
  446. }
  447. .orderDetail_infoItem_item {
  448. padding-top: 12rpx;
  449. padding-bottom: 12rpx;
  450. color: #333;
  451. font-size: 30rpx;
  452. flex: 1;
  453. @include border(bottom);
  454. @include flex(flex-start, stretch, column);
  455. &.process {
  456. padding-top: 90rpx;
  457. padding-bottom: 90rpx;
  458. }
  459. &:last-of-type {
  460. border-bottom: none;
  461. }
  462. // 工单信息
  463. .orderDetail_infoItem_item_content {
  464. margin-top: 20rpx;
  465. @include flex(space-between, stretch);
  466. .orderDetail_infoItem_item_name {
  467. font-size: 34rpx;
  468. color: #666;
  469. max-width: 4em;
  470. }
  471. .orderDetail_infoItem_item_value {
  472. font-size: 38rpx;
  473. color: #333;
  474. font-weight: bold;
  475. max-width: 420rpx;
  476. text-align: justify;
  477. word-break: break-all;
  478. }
  479. }
  480. // 流程信息
  481. .orderDetail_process_item {
  482. min-height: 120rpx;
  483. line-height: 50rpx;
  484. color: #333;
  485. @include flex(center);
  486. &:last-of-type {
  487. .step_icon {
  488. &::after {
  489. display: none;
  490. }
  491. }
  492. }
  493. .step_infoStart {
  494. font-size: 28rpx;
  495. flex: 1;
  496. @include flex(flex-end);
  497. .step_time {
  498. margin-left: 16rpx;
  499. }
  500. }
  501. .step_icon {
  502. font-size: 38rpx;
  503. margin-left: 30rpx;
  504. margin-right: 30rpx;
  505. position: relative;
  506. color: #E5E9ED;
  507. &.active {
  508. color: #07863C;
  509. }
  510. &::after {
  511. content: '';
  512. position: absolute;
  513. top: 60rpx;
  514. left: 18rpx;
  515. width: 1px;
  516. height: calc(100% - 70rpx);
  517. background-color: #DDE1E5;
  518. }
  519. }
  520. .step_infoEnd {
  521. font-size: 34rpx;
  522. flex: 1;
  523. padding-bottom: 16rpx;
  524. }
  525. }
  526. // 业务信息-检查
  527. &.business_inspect {
  528. .inspect_info {
  529. font-size: 34rpx;
  530. color: #333;
  531. padding-top: 20rpx;
  532. padding-bottom: 20rpx;
  533. @include border($directive:bottom, $style:dashed);
  534. .inspect_info_block {
  535. height: 60rpx;
  536. @include flex(space-between, center);
  537. .inspect_info_left {
  538. @include flex;
  539. .inspect_info_icon {
  540. width: 50rpx;
  541. height: 50rpx;
  542. line-height: 50rpx;
  543. border-radius: 50%;
  544. font-size: 28rpx;
  545. margin-right: 8rpx;
  546. @include flex(center, center);
  547. &.green {
  548. color: $defaultColor;
  549. border: 1px solid $defaultColor;
  550. background-color: rgba(73, 184, 86, 0.1);
  551. }
  552. &.red {
  553. color: #FF3B53;
  554. border: 1px solid #FF3B53;
  555. background-color: #FFE8EB;
  556. }
  557. }
  558. .inspect_info_name {
  559. font-weight: bold;
  560. }
  561. }
  562. .inspect_info_right {
  563. font-weight: bold;
  564. }
  565. }
  566. }
  567. .inspect_item {
  568. color: #333;
  569. font-size: 34rpx;
  570. line-height: 48rpx;
  571. padding-top: 26rpx;
  572. padding-bottom: 26rpx;
  573. @include border($directive:bottom, $style:dashed);
  574. .inspect_item_name {
  575. font-weight: bold;
  576. }
  577. .inspect_item_yytime {
  578. font-weight: bold;
  579. }
  580. .inspect_item_info {
  581. margin-top: 16rpx;
  582. margin-bottom: 16rpx;
  583. @include flex(space-between, center);
  584. .inspect_item_dept {
  585. flex: 1;
  586. word-break: break-all;
  587. @include clamp;
  588. }
  589. .inspect_item_number {
  590. flex: 1;
  591. text-align: right;
  592. word-break: break-all;
  593. @include clamp;
  594. }
  595. }
  596. }
  597. }
  598. // 业务信息-标本
  599. &.business_specimen {
  600. font-size: 34rpx;
  601. .th {
  602. background-color: red;
  603. @include btn_background;
  604. th {
  605. color: #fff;
  606. }
  607. }
  608. .td {
  609. position: relative;
  610. .urgent {
  611. width: 60rpx;
  612. position: absolute !important;
  613. right: 0;
  614. top: 0;
  615. }
  616. }
  617. .table--border {
  618. border: none;
  619. }
  620. ::v-deep .uni-table {
  621. min-width: 0;
  622. }
  623. ::v-deep .uni-table-td {
  624. word-break: break-all;
  625. }
  626. }
  627. // 业务信息-药品
  628. &.business_drugsBag {
  629. .drugsBag_item {
  630. color: #333;
  631. font-size: 34rpx;
  632. margin-top: 20rpx;
  633. @include flex(space-between, center);
  634. .drugsBag_item_name {}
  635. .drugsBag_item_value {
  636. font-weight: bold;
  637. }
  638. }
  639. }
  640. }
  641. }
  642. }
  643. }
  644. </style>