123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755 |
- <template>
- <view class="orderDetail">
- <!-- 头部 -->
- <view class="orderDetail_header">
- <view class="orderDetail_header_item" v-for="tab in tabs" :key="tab.id" :class="{active:tab.id === selectedTab}"
- @click="debouncedChangeTab(tab.id)">
- {{tab.name}}
- </view>
- </view>
- <!-- tab -->
- <!-- 患者信息 -->
- <view class="orderDetail_info" v-show="selectedTab === 1">
- <scroll-view scroll-y class="orderDetail_infoItem" v-if="info.id">
- <view class="orderDetail_infoItem_header">
- <view class="orderDetail_infoItem_header_title">
- <view class="icon"></view>
- <view class="taskNameAndWorkerName">
- <text class="taskName">患者姓名:{{info.patientName||'暂无'}}</text>
- </view>
- </view>
- <text class="orderDetail_infoItem_header_more">床号:{{info.bedNum?info.bedNum + '床':'暂无'}}</text>
- </view>
- <view class="orderDetail_infoItem_item">
- <view class="orderDetail_infoItem_item_content">
- <text class="orderDetail_infoItem_item_name">住院号</text>
- <text class="orderDetail_infoItem_item_value">{{info.residenceNo || '暂无'}}</text>
- </view>
- <view class="orderDetail_infoItem_item_content">
- <text class="orderDetail_infoItem_item_name">护理级别</text>
- <text class="orderDetail_infoItem_item_value">{{info.careLevel ?info.careLevel.name: '暂无'}}</text>
- </view>
- <view class="orderDetail_infoItem_item_content">
- <text class="orderDetail_infoItem_item_name">病情级别</text>
- <text class="orderDetail_infoItem_item_value">{{info.illnessState ?info.illnessState.name: '暂无'}}</text>
- </view>
- </view>
- </scroll-view>
- </view>
- <!-- 患者标本 -->
- <view class="orderDetail_info" v-show="selectedTab ===2">
- <scroll-view scroll-y class="orderDetail_infoItem">
- <view class="orderDetail_infoItem_header">
- <view class="orderDetail_infoItem_header_title">
- <view class="icon"></view>
- <view class="taskNameAndWorkerName">
- <text class="taskName">标本信息</text>
- </view>
- </view>
- </view>
- <!-- 标本信息 -->
- <view class="orderDetail_infoItem_item business business_specimen">
- <view class="inspect_specimen">
- <uni-table stripe emptyText="暂无更多数据">
- <!-- 表头行 -->
- <uni-tr class="th">
- <uni-th align="center" width="68">标本类型</uni-th>
- <uni-th align="center" width="71">标本编码</uni-th>
- <uni-th align="center" width="66">状态</uni-th>
- <uni-th align="center" width="71">科室</uni-th>
- </uni-tr>
- <!-- 表格数据行 -->
- <uni-tr v-for="data in info.specimens" :key="data.id" @click.native="toDetail(data.id,'specimen',data.scode)">
- <uni-td align="center">{{data.stype?data.stype.name:'暂无'}}</uni-td>
- <uni-td align="center">{{data.scode || '暂无'}}</uni-td>
- <uni-td align="center">{{data.speState?data.speState.name:'暂无'}}</uni-td>
- <uni-td align="center" class="td" v-if="data.checkDept">
- {{deptDisplay==2?data.checkDept.deptalias:data.checkDept.dept}}
- <image class="urgent" v-if="data.urgent == 1" src="../../static/imgs/icon_ji.png" mode="widthFix">
- </image>
- </uni-td>
- <uni-td align="center" class="td" v-else>
- 暂无
- <image class="urgent" v-if="data.urgent == 1" src="../../static/imgs/icon_ji.png" mode="widthFix">
- </image>
- </uni-td>
- </uni-tr>
- </uni-table>
- </view>
- </view>
- </scroll-view>
- </view>
- <!-- 患者检查 -->
- <view class="orderDetail_info" v-show="selectedTab === 3">
- <scroll-view scroll-y class="orderDetail_infoItem">
- <view class="orderDetail_infoItem_header">
- <view class="orderDetail_infoItem_header_title">
- <view class="icon"></view>
- <view class="taskNameAndWorkerName">
- <text class="taskName">检查信息</text>
- </view>
- </view>
- </view>
- <!-- 检查信息 -->
- <view class="orderDetail_infoItem_item business business_inspect">
- <view class="inspect_item" v-for="item in info.inspects" :key="item.id" @click="toDetail(item.id,'inspect')">
- <view class="inspect_item_name">
- {{item.inspectName||'暂无'}}
- </view>
- <view class="inspect_item_info">
- <view class="inspect_item_dept">预约时间</view>
- <view class="inspect_item_number">
- {{item.yyTime || '暂无'}}
- </view>
- </view>
- <view class="inspect_item_info">
- <view class="inspect_item_dept">到达时间</view>
- <view class="inspect_item_number">
- {{item.arriveTime || '暂无'}}
- </view>
- </view>
- <view class="inspect_item_info">
- <view class="inspect_item_dept">检查状态</view>
- <view class="inspect_item_number">
- {{item.inspectState?item.inspectState.name:'暂无'}}
- </view>
- </view>
- </view>
- </view>
- </scroll-view>
- </view>
- <!-- 底部 -->
- <seiminFooterBtn :btns="btns"></seiminFooterBtn>
- <seiminModel ref="seiminModel"></seiminModel>
- <seiminPicker ref="sPicker" :title="pickerTitle" titleColor="#808080" titleFontSize="28rpx" confirmColor="#333"
- confirmFontSize="38rpx" confirmFontWeight="500" itemFontSize="32rpx" @onClose="closePicker"
- @onConfirm="confirmPicker" :pickerList="taskTypeList">
- </seiminPicker>
- </view>
- </template>
- <script>
- import {
- debounce
- } from 'lodash/function';
- import {
- reqGetPatientInspectInfo,
- reqDeptTSPTaskType,
- reqBuildTrip,
- } from "../../request/api.js";
- import {
- mapState,
- mapMutations,
- } from "vuex";
- import {
- GDSTATE
- } from "../../utils/enum.gdstate.js";
- import {
- ASSOCIATION_TYPES
- } from "../../utils/enum.association_types.js";
- import {
- showAppraise,
- openRecallModal,
- openExecModal,
- showJiaji,
- } from "../../utils/index.js";
- export default {
- data() {
- return {
- checkedShowMsg: {}, //当前选中的任务类型的buildtrip信息
- pickerTitle: "", //一键建单picker的title
- taskTypeListResource: [], //任务类型列表(请求的原始数据)
- taskTypeList: [], //任务类型列表
- debouncedChangeTab: null,
- // 路由传参
- queryParams: {},
- // 关联类型
- ASSOCIATION_TYPES,
- // 选项卡
- tabs: [{
- id: 1,
- name: '患者信息'
- },
- {
- id: 2,
- name: '患者标本'
- },
- {
- id: 3,
- name: '患者检查'
- },
- ],
- // 当前选中的tab
- selectedTab: 1,
- // 工单信息
- info: {},
- // 流程信息
- logList: [],
- //底部按钮
- btns: [{
- name: "回到列表",
- type: "default",
- click: () => {
- uni.navigateTo({
- url: "/pages/patientList/patientList",
- });
- },
- }, {
- name: "一键建单",
- type: "default",
- click: () => {
- this.buildOrder(this.queryParams);
- },
- }],
- };
- },
- computed: {
- ...mapState('other', ["deptDisplay"]),
- },
- methods: {
- ...mapMutations('other', ['changeQucikCreateOrderType', 'clearPatientBuildData', 'changePatientBuildData']),
- //关闭
- closePicker() {
- this.$refs.sPicker._close();
- },
- //打开
- openPicker() {
- this.$refs.sPicker._open();
- },
- //确定:接收子组件传来的参数
- confirmPicker(checkedObj) {
- console.log(checkedObj);
- // 补充:清除建单数据
- this.clearPatientBuildData();
- // 2,获取buildTrip信息
- let postData = {
- "taskTypeId": checkedObj.value,
- "patientCode": this.selectedPatient.patientCode
- };
- uni.showLoading({
- mask: true,
- title: '加载中'
- })
- reqBuildTrip(postData).then(res => {
- uni.hideLoading();
- let taskType = this.taskTypeListResource.find(v => v.id == checkedObj.value);
- let patientTaskType = taskType || {};
- if (patientTaskType.associationType.value == this.ASSOCIATION_TYPES['患者其他服务业务']) {
- // 患者其他服务业务--无法用status判断,运输过程“默认患者所在科室”没有返回status==200,估计是后端漏掉了这种情况,如果后期后端可以返回status,则可以根据status判断。
- if (res.start && res.end) {
- if (res.status == 100013 || res.status == 100014 || res.status == 100015) {
- this.checkedShowMsg = res.data;
- //需要选择起点科室和目标科室
- this.changeQucikCreateOrderType({
- type: "patient",
- taskTypeId: checkedObj.value,
- patientTaskType,
- selectedPatient: this.selectedPatient,
- patientBuildTrip: res,
- });
- uni.navigateTo({
- url: "/pages/quickCreateOrder/quickCreateOrder",
- });
- } else {
- //无需选择科室
- this.checkedShowMsg = res.data;
- this.changePatientBuildData({
- key: 'dept',
- value: {
- startDept: res.start.start.list[0],
- endDept: res.end.end.list[0],
- }
- });
- this.changeQucikCreateOrderType({
- type: "patient",
- taskTypeId: checkedObj.value,
- patientTaskType,
- selectedPatient: this.selectedPatient,
- patientBuildTrip: res,
- });
- uni.navigateTo({
- url: "/pages/patientBuild/patientBuild",
- });
- }
- } else {
- this.$refs.seiminModel.show({
- skin: "toast",
- icon: "error",
- content: res.msg || "获取数据失败",
- });
- throw new Error(res.msg || '获取数据失败');
- }
- } else if (patientTaskType.associationType.value == this.ASSOCIATION_TYPES['患者陪检业务']) {
- // 患者陪检业务
- if (res.status == 200) {
- this.checkedShowMsg = res.data;
- this.changePatientBuildData({
- key: 'dept',
- value: {
- startDept: {
- id: res.startDept,
- dept: res.startDeptName,
- deptalias: res.startDeptAlias
- }, //待改
- endDept: {
- id: res.startDept,
- dept: res.startDeptName,
- deptalias: res.startDeptAlias
- }, //待改
- }
- });
- this.changeQucikCreateOrderType({
- type: "patient",
- taskTypeId: checkedObj.value,
- patientTaskType,
- selectedPatient: this.selectedPatient,
- patientBuildTrip: res,
- });
- uni.navigateTo({
- url: "/pages/appointmentInspect/appointmentInspect",
- });
- } else {
- this.$refs.seiminModel.show({
- skin: "toast",
- icon: "error",
- content: res.msg || "获取数据失败",
- });
- throw new Error(res.msg || '获取数据失败');
- }
- }
- })
- },
- // 一键建单
- buildOrder(patient) {
- this.selectedPatient = patient;
- // 1,请求任务类型列表
- uni.showLoading({
- mask: true,
- title: '加载中'
- })
- reqDeptTSPTaskType().then(res => {
- uni.hideLoading();
- if (res.status == 200) {
- res.data = res.data || [];
- this.taskTypeListResource = res.data;
- this.taskTypeList = res.data.map((v) => ({
- value: v.id,
- label: v.taskName,
- }));
- this.pickerTitle = `您选择了<b class="green">${patient.patientName}</b>患者,请选择下方具体服务项`;
- this.openPicker();
- } else {
- this.$refs.seiminModel.show({
- skin: "toast",
- icon: "error",
- content: res.msg || "获取数据失败",
- });
- throw new Error(res.msg || "获取数据失败");
- }
- })
- },
- init(queryParams) {
- console.log(queryParams)
- this.queryParams = queryParams;
- this.changeTab(1);
- },
- // 跳转详情
- toDetail(id, associationType,scode) {
- if(scode){
- uni.navigateTo({
- url: `/pages/detail/detail?id=${id}&associationType=${associationType}&scode=${scode}`
- })
- }else{
- uni.navigateTo({
- url: `/pages/detail/detail?id=${id}&associationType=${associationType}`
- })
- }
- },
- // 切换tab
- changeTab(id) {
- this.selectedTab = id;
- switch (id) {
- case 1:
- this.getInfo(this.queryParams);
- break;
- case 2:
- break;
- case 3:
- break;
- }
- },
- //获取工单信息数据
- getInfo(queryParams) {
- uni.showLoading({
- mask: true,
- title: '加载中',
- })
- let postData = {
- "patientCode": queryParams.patientCode
- };
- console.log(queryParams.patientCode)
- reqGetPatientInspectInfo(postData).then(res => {
- uni.hideLoading();
- if (res.status == 200) {
- // 工单信息
- res.data.specimens = res.data.specimens || [];
- res.data.inspects = res.data.inspects || [];
- this.info = res.data;
- } else {
- this.$refs.seiminModel.show({
- skin: 'toast',
- icon: 'error',
- content: '请求失败',
- })
- }
- })
- },
- },
- onLoad(queryParams) {
- console.log(queryParams);
- this.init(queryParams);
- },
- created() {
- this.debouncedChangeTab = debounce(this.changeTab, 166);
- },
- beforeDestroy() {
- this.debouncedChangeTab.cancel()
- }
- }
- </script>
- <style lang="scss" scoped>
- .orderDetail {
- padding-bottom: 108rpx;
- // 头部
- .orderDetail_header {
- position: fixed;
- z-index: 98;
- width: 100%;
- height: 88rpx;
- background-color: #fff;
- color: #333;
- @include flex;
- .orderDetail_header_item {
- flex: 1;
- font-size: 32rpx;
- @include border(right);
- @include border(bottom);
- @include flex(center, center);
- &:last-of-type {
- border-right: none;
- }
- &.active {
- color: $defaultColor;
- border-bottom: 4rpx solid $defaultColor;
- }
- }
- }
- // tab
- // 工单详情
- .orderDetail_info {
- padding: 108rpx 24rpx;
- .orderDetail_infoItem {
- width: 702rpx;
- height: 80vh;
- background-color: #fff;
- margin-top: 8rpx;
- border-radius: 8rpx;
- position: relative;
- padding: 0 24rpx 24rpx;
- font-size: 32rpx;
- @include border;
- @include semicircle(#f9fafb, 82rpx);
- @include flex(flex-start, stretch, column);
- .ji,
- .jiaji {
- width: 60rpx;
- position: absolute;
- right: 0;
- top: 0;
- }
- .orderDetail_infoItem_header {
- height: 86rpx;
- @include border($directive:bottom, $style:dashed);
- @include flex(space-between, center);
- .orderDetail_infoItem_header_title {
- color: #333;
- flex: 1;
- @include flex(flex-start, center);
- .icon {
- width: 10rpx;
- height: 46rpx;
- border-radius: 2rpx;
- background-color: #F0F6ED;
- @include btn_background;
- }
- .taskNameAndWorkerName {
- flex: 1;
- @include flex;
- .taskName {
- max-width: 10em;
- margin-left: 8rpx;
- font-size: 38rpx;
- font-weight: bold;
- @include clamp;
- }
- }
- }
- .orderDetail_infoItem_header_more {
- color: $defaultColor;
- font-weight: bold;
- font-size: 38rpx;
- @include clamp;
- }
- }
- .orderDetail_infoItem_item {
- padding-top: 12rpx;
- padding-bottom: 12rpx;
- color: #333;
- font-size: 30rpx;
- flex: 1;
- @include border(bottom);
- @include flex(flex-start, stretch, column);
- &.process {
- padding-top: 90rpx;
- padding-bottom: 90rpx;
- }
- &:last-of-type {
- border-bottom: none;
- }
- // 工单信息
- .orderDetail_infoItem_item_content {
- margin-top: 20rpx;
- @include flex(space-between, stretch);
- .orderDetail_infoItem_item_name {
- font-size: 34rpx;
- color: #666;
- max-width: 4em;
- }
- .orderDetail_infoItem_item_value {
- font-size: 38rpx;
- color: #333;
- font-weight: bold;
- max-width: 420rpx;
- text-align: justify;
- word-break: break-all;
- }
- }
- // 流程信息
- .orderDetail_process_item {
- min-height: 120rpx;
- line-height: 50rpx;
- color: #333;
- @include flex(center);
- &:last-of-type {
- .step_icon {
- &::after {
- display: none;
- }
- }
- }
- .step_infoStart {
- font-size: 28rpx;
- flex: 1;
- @include flex(flex-end);
- .step_time {
- margin-left: 16rpx;
- }
- }
- .step_icon {
- font-size: 38rpx;
- margin-left: 30rpx;
- margin-right: 30rpx;
- position: relative;
- color: #E5E9ED;
- &.active {
- color: #07863C;
- }
- &::after {
- content: '';
- position: absolute;
- top: 60rpx;
- left: 18rpx;
- width: 1px;
- height: calc(100% - 70rpx);
- background-color: #DDE1E5;
- }
- }
- .step_infoEnd {
- font-size: 34rpx;
- flex: 1;
- padding-bottom: 16rpx;
- }
- }
- // 业务信息-检查
- &.business_inspect {
- .inspect_info {
- font-size: 34rpx;
- color: #333;
- padding-top: 20rpx;
- padding-bottom: 20rpx;
- @include border($directive:bottom, $style:dashed);
- .inspect_info_block {
- height: 60rpx;
- @include flex(space-between, center);
- .inspect_info_left {
- @include flex;
- .inspect_info_icon {
- width: 50rpx;
- height: 50rpx;
- line-height: 50rpx;
- border-radius: 50%;
- font-size: 28rpx;
- margin-right: 8rpx;
- @include flex(center, center);
- &.green {
- color: $defaultColor;
- border: 1px solid $defaultColor;
- background-color: rgba(73, 184, 86, 0.1);
- }
- &.red {
- color: #FF3B53;
- border: 1px solid #FF3B53;
- background-color: #FFE8EB;
- }
- }
- .inspect_info_name {
- font-weight: bold;
- }
- }
- .inspect_info_right {
- font-weight: bold;
- }
- }
- }
- .inspect_item {
- color: #333;
- font-size: 34rpx;
- line-height: 48rpx;
- padding-top: 26rpx;
- padding-bottom: 26rpx;
- @include border($directive:bottom, $style:dashed);
- .inspect_item_name {
- font-weight: bold;
- }
- .inspect_item_yytime {
- font-weight: bold;
- }
- .inspect_item_info {
- margin-top: 16rpx;
- margin-bottom: 16rpx;
- @include flex(space-between, center);
- .inspect_item_dept {
- flex: 1;
- word-break: break-all;
- @include clamp;
- }
- .inspect_item_number {
- flex: 1;
- text-align: right;
- word-break: break-all;
- @include clamp;
- }
- }
- }
- }
- // 业务信息-标本
- &.business_specimen {
- font-size: 34rpx;
- .th {
- background-color: red;
- @include btn_background;
- th {
- color: #fff;
- }
- }
- .td {
- position: relative;
- .urgent {
- width: 60rpx;
- position: absolute !important;
- right: 0;
- top: 0;
- }
- }
- .table--border {
- border: none;
- }
- ::v-deep .uni-table {
- min-width: 0;
- }
- ::v-deep .uni-table-td {
- word-break: break-all;
- }
- }
- // 业务信息-药品
- &.business_drugsBag {
- .drugsBag_item {
- color: #333;
- font-size: 34rpx;
- margin-top: 20rpx;
- @include flex(space-between, center);
- .drugsBag_item_name {}
- .drugsBag_item_value {
- font-weight: bold;
- }
- }
- }
- }
- }
- }
- }
- </style>
|