patientDetail.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755
  1. <template>
  2. <view class="orderDetail">
  3. <!-- 头部 -->
  4. <view class="orderDetail_header">
  5. <view class="orderDetail_header_item" v-for="tab in tabs" :key="tab.id" :class="{active:tab.id === selectedTab}"
  6. @click="debouncedChangeTab(tab.id)">
  7. {{tab.name}}
  8. </view>
  9. </view>
  10. <!-- tab -->
  11. <!-- 患者信息 -->
  12. <view class="orderDetail_info" v-show="selectedTab === 1">
  13. <scroll-view scroll-y class="orderDetail_infoItem" v-if="info.id">
  14. <view class="orderDetail_infoItem_header">
  15. <view class="orderDetail_infoItem_header_title">
  16. <view class="icon"></view>
  17. <view class="taskNameAndWorkerName">
  18. <text class="taskName">患者姓名:{{info.patientName||'暂无'}}</text>
  19. </view>
  20. </view>
  21. <text class="orderDetail_infoItem_header_more">床号:{{info.bedNum?info.bedNum + '床':'暂无'}}</text>
  22. </view>
  23. <view class="orderDetail_infoItem_item">
  24. <view class="orderDetail_infoItem_item_content">
  25. <text class="orderDetail_infoItem_item_name">住院号</text>
  26. <text class="orderDetail_infoItem_item_value">{{info.residenceNo || '暂无'}}</text>
  27. </view>
  28. <view class="orderDetail_infoItem_item_content">
  29. <text class="orderDetail_infoItem_item_name">护理级别</text>
  30. <text class="orderDetail_infoItem_item_value">{{info.careLevel ?info.careLevel.name: '暂无'}}</text>
  31. </view>
  32. <view class="orderDetail_infoItem_item_content">
  33. <text class="orderDetail_infoItem_item_name">病情级别</text>
  34. <text class="orderDetail_infoItem_item_value">{{info.illnessState ?info.illnessState.name: '暂无'}}</text>
  35. </view>
  36. </view>
  37. </scroll-view>
  38. </view>
  39. <!-- 患者标本 -->
  40. <view class="orderDetail_info" v-show="selectedTab ===2">
  41. <scroll-view scroll-y class="orderDetail_infoItem">
  42. <view class="orderDetail_infoItem_header">
  43. <view class="orderDetail_infoItem_header_title">
  44. <view class="icon"></view>
  45. <view class="taskNameAndWorkerName">
  46. <text class="taskName">标本信息</text>
  47. </view>
  48. </view>
  49. </view>
  50. <!-- 标本信息 -->
  51. <view class="orderDetail_infoItem_item business business_specimen">
  52. <view class="inspect_specimen">
  53. <uni-table stripe emptyText="暂无更多数据">
  54. <!-- 表头行 -->
  55. <uni-tr class="th">
  56. <uni-th align="center" width="68">标本类型</uni-th>
  57. <uni-th align="center" width="71">标本编码</uni-th>
  58. <uni-th align="center" width="66">状态</uni-th>
  59. <uni-th align="center" width="71">科室</uni-th>
  60. </uni-tr>
  61. <!-- 表格数据行 -->
  62. <uni-tr v-for="data in info.specimens" :key="data.id" @click.native="toDetail(data.id,'specimen',data.scode)">
  63. <uni-td align="center">{{data.stype?data.stype.name:'暂无'}}</uni-td>
  64. <uni-td align="center">{{data.scode || '暂无'}}</uni-td>
  65. <uni-td align="center">{{data.speState?data.speState.name:'暂无'}}</uni-td>
  66. <uni-td align="center" class="td" v-if="data.checkDept">
  67. {{deptDisplay==2?data.checkDept.deptalias:data.checkDept.dept}}
  68. <image class="urgent" v-if="data.urgent == 1" src="../../static/imgs/icon_ji.png" mode="widthFix">
  69. </image>
  70. </uni-td>
  71. <uni-td align="center" class="td" v-else>
  72. 暂无
  73. <image class="urgent" v-if="data.urgent == 1" src="../../static/imgs/icon_ji.png" mode="widthFix">
  74. </image>
  75. </uni-td>
  76. </uni-tr>
  77. </uni-table>
  78. </view>
  79. </view>
  80. </scroll-view>
  81. </view>
  82. <!-- 患者检查 -->
  83. <view class="orderDetail_info" v-show="selectedTab === 3">
  84. <scroll-view scroll-y class="orderDetail_infoItem">
  85. <view class="orderDetail_infoItem_header">
  86. <view class="orderDetail_infoItem_header_title">
  87. <view class="icon"></view>
  88. <view class="taskNameAndWorkerName">
  89. <text class="taskName">检查信息</text>
  90. </view>
  91. </view>
  92. </view>
  93. <!-- 检查信息 -->
  94. <view class="orderDetail_infoItem_item business business_inspect">
  95. <view class="inspect_item" v-for="item in info.inspects" :key="item.id" @click="toDetail(item.id,'inspect')">
  96. <view class="inspect_item_name">
  97. {{item.inspectName||'暂无'}}
  98. </view>
  99. <view class="inspect_item_info">
  100. <view class="inspect_item_dept">预约时间</view>
  101. <view class="inspect_item_number">
  102. {{item.yyTime || '暂无'}}
  103. </view>
  104. </view>
  105. <view class="inspect_item_info">
  106. <view class="inspect_item_dept">到达时间</view>
  107. <view class="inspect_item_number">
  108. {{item.arriveTime || '暂无'}}
  109. </view>
  110. </view>
  111. <view class="inspect_item_info">
  112. <view class="inspect_item_dept">检查状态</view>
  113. <view class="inspect_item_number">
  114. {{item.inspectState?item.inspectState.name:'暂无'}}
  115. </view>
  116. </view>
  117. </view>
  118. </view>
  119. </scroll-view>
  120. </view>
  121. <!-- 底部 -->
  122. <seiminFooterBtn :btns="btns"></seiminFooterBtn>
  123. <seiminModel ref="seiminModel"></seiminModel>
  124. <seiminPicker ref="sPicker" :title="pickerTitle" titleColor="#808080" titleFontSize="28rpx" confirmColor="#333"
  125. confirmFontSize="38rpx" confirmFontWeight="500" itemFontSize="32rpx" @onClose="closePicker"
  126. @onConfirm="confirmPicker" :pickerList="taskTypeList">
  127. </seiminPicker>
  128. </view>
  129. </template>
  130. <script>
  131. import {
  132. debounce
  133. } from 'lodash/function';
  134. import {
  135. reqGetPatientInspectInfo,
  136. reqDeptTSPTaskType,
  137. reqBuildTrip,
  138. } from "../../request/api.js";
  139. import {
  140. mapState,
  141. mapMutations,
  142. } from "vuex";
  143. import {
  144. GDSTATE
  145. } from "../../utils/enum.gdstate.js";
  146. import {
  147. ASSOCIATION_TYPES
  148. } from "../../utils/enum.association_types.js";
  149. import {
  150. showAppraise,
  151. openRecallModal,
  152. openExecModal,
  153. showJiaji,
  154. } from "../../utils/index.js";
  155. export default {
  156. data() {
  157. return {
  158. checkedShowMsg: {}, //当前选中的任务类型的buildtrip信息
  159. pickerTitle: "", //一键建单picker的title
  160. taskTypeListResource: [], //任务类型列表(请求的原始数据)
  161. taskTypeList: [], //任务类型列表
  162. debouncedChangeTab: null,
  163. // 路由传参
  164. queryParams: {},
  165. // 关联类型
  166. ASSOCIATION_TYPES,
  167. // 选项卡
  168. tabs: [{
  169. id: 1,
  170. name: '患者信息'
  171. },
  172. {
  173. id: 2,
  174. name: '患者标本'
  175. },
  176. {
  177. id: 3,
  178. name: '患者检查'
  179. },
  180. ],
  181. // 当前选中的tab
  182. selectedTab: 1,
  183. // 工单信息
  184. info: {},
  185. // 流程信息
  186. logList: [],
  187. //底部按钮
  188. btns: [{
  189. name: "回到列表",
  190. type: "default",
  191. click: () => {
  192. uni.navigateTo({
  193. url: "/pages/patientList/patientList",
  194. });
  195. },
  196. }, {
  197. name: "一键建单",
  198. type: "default",
  199. click: () => {
  200. this.buildOrder(this.queryParams);
  201. },
  202. }],
  203. };
  204. },
  205. computed: {
  206. ...mapState('other', ["deptDisplay"]),
  207. },
  208. methods: {
  209. ...mapMutations('other', ['changeQucikCreateOrderType', 'clearPatientBuildData', 'changePatientBuildData']),
  210. //关闭
  211. closePicker() {
  212. this.$refs.sPicker._close();
  213. },
  214. //打开
  215. openPicker() {
  216. this.$refs.sPicker._open();
  217. },
  218. //确定:接收子组件传来的参数
  219. confirmPicker(checkedObj) {
  220. console.log(checkedObj);
  221. // 补充:清除建单数据
  222. this.clearPatientBuildData();
  223. // 2,获取buildTrip信息
  224. let postData = {
  225. "taskTypeId": checkedObj.value,
  226. "patientCode": this.selectedPatient.patientCode
  227. };
  228. uni.showLoading({
  229. mask: true,
  230. title: '加载中'
  231. })
  232. reqBuildTrip(postData).then(res => {
  233. uni.hideLoading();
  234. let taskType = this.taskTypeListResource.find(v => v.id == checkedObj.value);
  235. let patientTaskType = taskType || {};
  236. if (patientTaskType.associationType.value == this.ASSOCIATION_TYPES['患者其他服务业务']) {
  237. // 患者其他服务业务--无法用status判断,运输过程“默认患者所在科室”没有返回status==200,估计是后端漏掉了这种情况,如果后期后端可以返回status,则可以根据status判断。
  238. if (res.start && res.end) {
  239. if (res.status == 100013 || res.status == 100014 || res.status == 100015) {
  240. this.checkedShowMsg = res.data;
  241. //需要选择起点科室和目标科室
  242. this.changeQucikCreateOrderType({
  243. type: "patient",
  244. taskTypeId: checkedObj.value,
  245. patientTaskType,
  246. selectedPatient: this.selectedPatient,
  247. patientBuildTrip: res,
  248. });
  249. uni.navigateTo({
  250. url: "/pages/quickCreateOrder/quickCreateOrder",
  251. });
  252. } else {
  253. //无需选择科室
  254. this.checkedShowMsg = res.data;
  255. this.changePatientBuildData({
  256. key: 'dept',
  257. value: {
  258. startDept: res.start.start.list[0],
  259. endDept: res.end.end.list[0],
  260. }
  261. });
  262. this.changeQucikCreateOrderType({
  263. type: "patient",
  264. taskTypeId: checkedObj.value,
  265. patientTaskType,
  266. selectedPatient: this.selectedPatient,
  267. patientBuildTrip: res,
  268. });
  269. uni.navigateTo({
  270. url: "/pages/patientBuild/patientBuild",
  271. });
  272. }
  273. } else {
  274. this.$refs.seiminModel.show({
  275. skin: "toast",
  276. icon: "error",
  277. content: res.msg || "获取数据失败",
  278. });
  279. throw new Error(res.msg || '获取数据失败');
  280. }
  281. } else if (patientTaskType.associationType.value == this.ASSOCIATION_TYPES['患者陪检业务']) {
  282. // 患者陪检业务
  283. if (res.status == 200) {
  284. this.checkedShowMsg = res.data;
  285. this.changePatientBuildData({
  286. key: 'dept',
  287. value: {
  288. startDept: {
  289. id: res.startDept,
  290. dept: res.startDeptName,
  291. deptalias: res.startDeptAlias
  292. }, //待改
  293. endDept: {
  294. id: res.startDept,
  295. dept: res.startDeptName,
  296. deptalias: res.startDeptAlias
  297. }, //待改
  298. }
  299. });
  300. this.changeQucikCreateOrderType({
  301. type: "patient",
  302. taskTypeId: checkedObj.value,
  303. patientTaskType,
  304. selectedPatient: this.selectedPatient,
  305. patientBuildTrip: res,
  306. });
  307. uni.navigateTo({
  308. url: "/pages/appointmentInspect/appointmentInspect",
  309. });
  310. } else {
  311. this.$refs.seiminModel.show({
  312. skin: "toast",
  313. icon: "error",
  314. content: res.msg || "获取数据失败",
  315. });
  316. throw new Error(res.msg || '获取数据失败');
  317. }
  318. }
  319. })
  320. },
  321. // 一键建单
  322. buildOrder(patient) {
  323. this.selectedPatient = patient;
  324. // 1,请求任务类型列表
  325. uni.showLoading({
  326. mask: true,
  327. title: '加载中'
  328. })
  329. reqDeptTSPTaskType().then(res => {
  330. uni.hideLoading();
  331. if (res.status == 200) {
  332. res.data = res.data || [];
  333. this.taskTypeListResource = res.data;
  334. this.taskTypeList = res.data.map((v) => ({
  335. value: v.id,
  336. label: v.taskName,
  337. }));
  338. this.pickerTitle = `您选择了<b class="green">${patient.patientName}</b>患者,请选择下方具体服务项`;
  339. this.openPicker();
  340. } else {
  341. this.$refs.seiminModel.show({
  342. skin: "toast",
  343. icon: "error",
  344. content: res.msg || "获取数据失败",
  345. });
  346. throw new Error(res.msg || "获取数据失败");
  347. }
  348. })
  349. },
  350. init(queryParams) {
  351. console.log(queryParams)
  352. this.queryParams = queryParams;
  353. this.changeTab(1);
  354. },
  355. // 跳转详情
  356. toDetail(id, associationType,scode) {
  357. if(scode){
  358. uni.navigateTo({
  359. url: `/pages/detail/detail?id=${id}&associationType=${associationType}&scode=${scode}`
  360. })
  361. }else{
  362. uni.navigateTo({
  363. url: `/pages/detail/detail?id=${id}&associationType=${associationType}`
  364. })
  365. }
  366. },
  367. // 切换tab
  368. changeTab(id) {
  369. this.selectedTab = id;
  370. switch (id) {
  371. case 1:
  372. this.getInfo(this.queryParams);
  373. break;
  374. case 2:
  375. break;
  376. case 3:
  377. break;
  378. }
  379. },
  380. //获取工单信息数据
  381. getInfo(queryParams) {
  382. uni.showLoading({
  383. mask: true,
  384. title: '加载中',
  385. })
  386. let postData = {
  387. "patientCode": queryParams.patientCode
  388. };
  389. console.log(queryParams.patientCode)
  390. reqGetPatientInspectInfo(postData).then(res => {
  391. uni.hideLoading();
  392. if (res.status == 200) {
  393. // 工单信息
  394. res.data.specimens = res.data.specimens || [];
  395. res.data.inspects = res.data.inspects || [];
  396. this.info = res.data;
  397. } else {
  398. this.$refs.seiminModel.show({
  399. skin: 'toast',
  400. icon: 'error',
  401. content: '请求失败',
  402. })
  403. }
  404. })
  405. },
  406. },
  407. onLoad(queryParams) {
  408. console.log(queryParams);
  409. this.init(queryParams);
  410. },
  411. created() {
  412. this.debouncedChangeTab = debounce(this.changeTab, 166);
  413. },
  414. beforeDestroy() {
  415. this.debouncedChangeTab.cancel()
  416. }
  417. }
  418. </script>
  419. <style lang="scss" scoped>
  420. .orderDetail {
  421. padding-bottom: 108rpx;
  422. // 头部
  423. .orderDetail_header {
  424. position: fixed;
  425. z-index: 98;
  426. width: 100%;
  427. height: 88rpx;
  428. background-color: #fff;
  429. color: #333;
  430. @include flex;
  431. .orderDetail_header_item {
  432. flex: 1;
  433. font-size: 32rpx;
  434. @include border(right);
  435. @include border(bottom);
  436. @include flex(center, center);
  437. &:last-of-type {
  438. border-right: none;
  439. }
  440. &.active {
  441. color: $defaultColor;
  442. border-bottom: 4rpx solid $defaultColor;
  443. }
  444. }
  445. }
  446. // tab
  447. // 工单详情
  448. .orderDetail_info {
  449. padding: 108rpx 24rpx;
  450. .orderDetail_infoItem {
  451. width: 702rpx;
  452. height: 80vh;
  453. background-color: #fff;
  454. margin-top: 8rpx;
  455. border-radius: 8rpx;
  456. position: relative;
  457. padding: 0 24rpx 24rpx;
  458. font-size: 32rpx;
  459. @include border;
  460. @include semicircle(#f9fafb, 82rpx);
  461. @include flex(flex-start, stretch, column);
  462. .ji,
  463. .jiaji {
  464. width: 60rpx;
  465. position: absolute;
  466. right: 0;
  467. top: 0;
  468. }
  469. .orderDetail_infoItem_header {
  470. height: 86rpx;
  471. @include border($directive:bottom, $style:dashed);
  472. @include flex(space-between, center);
  473. .orderDetail_infoItem_header_title {
  474. color: #333;
  475. flex: 1;
  476. @include flex(flex-start, center);
  477. .icon {
  478. width: 10rpx;
  479. height: 46rpx;
  480. border-radius: 2rpx;
  481. background-color: #F0F6ED;
  482. @include btn_background;
  483. }
  484. .taskNameAndWorkerName {
  485. flex: 1;
  486. @include flex;
  487. .taskName {
  488. max-width: 10em;
  489. margin-left: 8rpx;
  490. font-size: 38rpx;
  491. font-weight: bold;
  492. @include clamp;
  493. }
  494. }
  495. }
  496. .orderDetail_infoItem_header_more {
  497. color: $defaultColor;
  498. font-weight: bold;
  499. font-size: 38rpx;
  500. @include clamp;
  501. }
  502. }
  503. .orderDetail_infoItem_item {
  504. padding-top: 12rpx;
  505. padding-bottom: 12rpx;
  506. color: #333;
  507. font-size: 30rpx;
  508. flex: 1;
  509. @include border(bottom);
  510. @include flex(flex-start, stretch, column);
  511. &.process {
  512. padding-top: 90rpx;
  513. padding-bottom: 90rpx;
  514. }
  515. &:last-of-type {
  516. border-bottom: none;
  517. }
  518. // 工单信息
  519. .orderDetail_infoItem_item_content {
  520. margin-top: 20rpx;
  521. @include flex(space-between, stretch);
  522. .orderDetail_infoItem_item_name {
  523. font-size: 34rpx;
  524. color: #666;
  525. max-width: 4em;
  526. }
  527. .orderDetail_infoItem_item_value {
  528. font-size: 38rpx;
  529. color: #333;
  530. font-weight: bold;
  531. max-width: 420rpx;
  532. text-align: justify;
  533. word-break: break-all;
  534. }
  535. }
  536. // 流程信息
  537. .orderDetail_process_item {
  538. min-height: 120rpx;
  539. line-height: 50rpx;
  540. color: #333;
  541. @include flex(center);
  542. &:last-of-type {
  543. .step_icon {
  544. &::after {
  545. display: none;
  546. }
  547. }
  548. }
  549. .step_infoStart {
  550. font-size: 28rpx;
  551. flex: 1;
  552. @include flex(flex-end);
  553. .step_time {
  554. margin-left: 16rpx;
  555. }
  556. }
  557. .step_icon {
  558. font-size: 38rpx;
  559. margin-left: 30rpx;
  560. margin-right: 30rpx;
  561. position: relative;
  562. color: #E5E9ED;
  563. &.active {
  564. color: #07863C;
  565. }
  566. &::after {
  567. content: '';
  568. position: absolute;
  569. top: 60rpx;
  570. left: 18rpx;
  571. width: 1px;
  572. height: calc(100% - 70rpx);
  573. background-color: #DDE1E5;
  574. }
  575. }
  576. .step_infoEnd {
  577. font-size: 34rpx;
  578. flex: 1;
  579. padding-bottom: 16rpx;
  580. }
  581. }
  582. // 业务信息-检查
  583. &.business_inspect {
  584. .inspect_info {
  585. font-size: 34rpx;
  586. color: #333;
  587. padding-top: 20rpx;
  588. padding-bottom: 20rpx;
  589. @include border($directive:bottom, $style:dashed);
  590. .inspect_info_block {
  591. height: 60rpx;
  592. @include flex(space-between, center);
  593. .inspect_info_left {
  594. @include flex;
  595. .inspect_info_icon {
  596. width: 50rpx;
  597. height: 50rpx;
  598. line-height: 50rpx;
  599. border-radius: 50%;
  600. font-size: 28rpx;
  601. margin-right: 8rpx;
  602. @include flex(center, center);
  603. &.green {
  604. color: $defaultColor;
  605. border: 1px solid $defaultColor;
  606. background-color: rgba(73, 184, 86, 0.1);
  607. }
  608. &.red {
  609. color: #FF3B53;
  610. border: 1px solid #FF3B53;
  611. background-color: #FFE8EB;
  612. }
  613. }
  614. .inspect_info_name {
  615. font-weight: bold;
  616. }
  617. }
  618. .inspect_info_right {
  619. font-weight: bold;
  620. }
  621. }
  622. }
  623. .inspect_item {
  624. color: #333;
  625. font-size: 34rpx;
  626. line-height: 48rpx;
  627. padding-top: 26rpx;
  628. padding-bottom: 26rpx;
  629. @include border($directive:bottom, $style:dashed);
  630. .inspect_item_name {
  631. font-weight: bold;
  632. }
  633. .inspect_item_yytime {
  634. font-weight: bold;
  635. }
  636. .inspect_item_info {
  637. margin-top: 16rpx;
  638. margin-bottom: 16rpx;
  639. @include flex(space-between, center);
  640. .inspect_item_dept {
  641. flex: 1;
  642. word-break: break-all;
  643. @include clamp;
  644. }
  645. .inspect_item_number {
  646. flex: 1;
  647. text-align: right;
  648. word-break: break-all;
  649. @include clamp;
  650. }
  651. }
  652. }
  653. }
  654. // 业务信息-标本
  655. &.business_specimen {
  656. font-size: 34rpx;
  657. .th {
  658. background-color: red;
  659. @include btn_background;
  660. th {
  661. color: #fff;
  662. }
  663. }
  664. .td {
  665. position: relative;
  666. .urgent {
  667. width: 60rpx;
  668. position: absolute !important;
  669. right: 0;
  670. top: 0;
  671. }
  672. }
  673. .table--border {
  674. border: none;
  675. }
  676. ::v-deep .uni-table {
  677. min-width: 0;
  678. }
  679. ::v-deep .uni-table-td {
  680. word-break: break-all;
  681. }
  682. }
  683. // 业务信息-药品
  684. &.business_drugsBag {
  685. .drugsBag_item {
  686. color: #333;
  687. font-size: 34rpx;
  688. margin-top: 20rpx;
  689. @include flex(space-between, center);
  690. .drugsBag_item_name {}
  691. .drugsBag_item_value {
  692. font-weight: bold;
  693. }
  694. }
  695. }
  696. }
  697. }
  698. }
  699. }
  700. </style>