patientBuildConfirm.vue 20 KB

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