123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442 |
- <template>
- <view class="patientList">
- <view class="search-box">
- <seiminSearch class="mSearch-input-box" :mode="2" button="inside" placeholder="输入床号或姓名支持拼音检索" @input="debounceInp"
- v-model="keyword"></seiminSearch>
- </view>
- <view class="search-keyword">
- <view class="orderList_listItem" v-for="patient in patientList" :key="patient.id">
- <view class="orderList_listItem_header">
- <view class="orderList_listItem_header_title">
- <block v-if="patient.illnessState">
- <view class="associationType_icon red" v-if="patient.illnessState.value === '2'">危</view>
- <view class="associationType_icon red" v-else-if="patient.illnessState.value === '3'">重</view>
- </block>
- <block v-if="patient.careLevel">
- <view class="associationType_icon red" v-if="patient.careLevel.value === '0'">特</view>
- <view class="associationType_icon red" v-else-if="patient.careLevel.value === '1'">1</view>
- <view class="associationType_icon green" v-else-if="patient.careLevel.value === '2'">2</view>
- <view class="associationType_icon green" v-else-if="patient.careLevel.value === '3'">3</view>
- </block>
- <view class="taskNameAndWorkerName">
- <text class="workerName">{{patient.patientName || '暂无'}}</text>
- </view>
- </view>
- <text class="orderList_listItem_header_more">{{patient.bedNum }}床</text>
- </view>
- <view class="orderList_listItem_item">
- <view class="orderList_listItem_item_content">
- <text class="orderList_listItem_item_name">{{patient.residenceNo || '暂无'}}</text>
- <text class="orderList_listItem_item_time">待检{{patient.watingCount}}</text>
- </view>
- <view class="orderList_listItem_item_btns">
- <button type="primary" class="btn" @click.stop="toDetail(patient.patientCode)">患者详情</button>
- <button type="primary" class="btn" @click.stop="buildOrder(patient)">一键建单</button>
- </view>
- </view>
- </view>
- </view>
- <seiminFooterNav></seiminFooterNav>
- <seiminModel ref="seiminModel"></seiminModel>
- <seiminPicker ref="sPicker" :title="pickerTitle" titleColor="#808080" titleFontSize="28rpx" confirmColor="#333"
- confirmFontSize="38rpx" confirmFontWeight="500" itemFontSize="28rpx" @onClose="closePicker"
- @onConfirm="confirmPicker" :pickerList="taskTypeList">
- </seiminPicker>
- </view>
- </template>
- <script>
- import {
- debounce
- } from 'lodash/function';
- import {
- reqFetchDataList,
- reqDeptTSPTaskType,
- reqBuildTrip,
- } from "../../request/api.js";
- import {
- mapState,
- mapMutations,
- } from "vuex";
- export default {
- data() {
- return {
- checkedShowMsg: {}, //当前选中的任务类型的buildtrip信息
- selectedPatient: {}, //当前选中的患者
- taskTypeList: [], //任务类型列表
- pickerTitle: "", //一键建单picker的title
- debounceInp: null,
- keyword: "",
- patientList: [],
- totalNum: 0, //工单总数量
- idx: 0, //页码
- };
- },
- computed: {
- ...mapState("login", ["loginInfo"]),
- ...mapState('other', ["deptDisplay"]),
- },
- methods: {
- ...mapMutations('other', ['changeQucikCreateOrderType']),
- //关闭
- closePicker() {
- this.$refs.sPicker._close();
- },
- //打开
- openPicker() {
- this.$refs.sPicker._open();
- },
- //确定:接收子组件传来的参数
- confirmPicker(checkedObj) {
- console.log(checkedObj);
- // 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.taskTypeList.find(v => v.value == checkedObj.value);
- let patientTaskTypeName = taskType ? taskType.label : '';
- if (res.status == 100015) {
- this.checkedShowMsg = res.data;
- //需要选择起点科室和目标科室
- uni.navigateTo({
- url: "/pages/quickCreateOrder/quickCreateOrder",
- });
- this.changeQucikCreateOrderType({
- type: "patient",
- taskTypeId: checkedObj.value,
- patientTaskTypeName,
- patientBuildTrip: res,
- });
- } else if (res.status == 100013) {
- this.checkedShowMsg = res.data;
- //需要选择起点科室
- uni.navigateTo({
- url: "/pages/quickCreateOrder/quickCreateOrder",
- });
- this.changeQucikCreateOrderType({
- type: "patient",
- taskTypeId: checkedObj.value,
- patientTaskTypeName,
- patientBuildTrip: res,
- });
- } else if (res.status == 100014) {
- this.checkedShowMsg = res.data;
- //需要选择目标科室
- uni.navigateTo({
- url: "/pages/quickCreateOrder/quickCreateOrder",
- });
- this.changeQucikCreateOrderType({
- type: "patient",
- taskTypeId: checkedObj.value,
- patientTaskTypeName,
- patientBuildTrip: res,
- });
- } else {
- //无需选择科室
- this.checkedShowMsg = res.data;
- this.changeQucikCreateOrderType({
- type: "patient",
- taskTypeId: checkedObj.value,
- patientTaskTypeName,
- patientBuildTrip: res,
- });
- }
- })
- },
- // 一键建单
- 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.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 || "获取数据失败");
- }
- })
- },
- // 跳转患者详情
- toDetail(patientCode) {
- uni.navigateTo({
- url: `/pages/patientDetail/patientDetail?patientCode=${patientCode}`
- })
- },
- //监听输入
- inputChange(event = '', idxPlus = false) {
- let keyWord = event.detail ? event.detail.value : event;
- if (idxPlus) {
- //累加
- ++this.idx;
- } else {
- this.idx = 0;
- }
- let postData = {
- "idx": this.idx,
- "sum": 9999,
- "patient": {
- keyWord,
- "department": {
- "id": this.loginInfo.user.dept.id
- }
- }
- };
- uni.showLoading({
- title: "加载中",
- mask: true,
- });
- reqFetchDataList("nurse", "patient", postData).then((res) => {
- uni.hideLoading();
- if (res.status == 200) {
- res.list = res.list || [];
- if (idxPlus) {
- //累加
- this.patientList = this.patientList.concat(res.list);
- } else {
- this.patientList = res.list;
- }
- this.totalNum = res.totalNum || 0;
- } else {
- this.$refs.seiminModel.show({
- skin: "toast",
- icon: "error",
- content: res.msg || "获取数据失败",
- });
- throw new Error(res.msg || "获取数据失败");
- }
- });
- },
- // 查询最新列表(上拉)
- reachBottom() {
- //没有更多
- if (this.patientList.length == this.totalNum) {
- uni.showToast({
- icon: 'none',
- title: '没有更多数据了'
- })
- return;
- }
- this.inputChange(this.keyword, true);
- },
- },
- onReachBottom() {
- this.reachBottom();
- },
- created() {
- this.debounceInp = debounce(this.inputChange, 500);
- },
- beforeDestroy() {
- this.debounceInp.cancel()
- },
- onLoad() {
- this.inputChange('');
- },
- };
- </script>
- <style lang="scss" scoped>
- .patientList {
- padding-bottom: 108rpx;
- .search-box {
- background-color: rgb(242, 242, 242);
- padding: 15rpx 2.5%;
- position: fixed;
- z-index: 99;
- width: 100%;
- @include flex(space-between);
- .mSearch-input-box {
- width: 100%;
- }
- .input-box {
- width: 85%;
- flex-shrink: 1;
- @include flex(center, center);
- &>input {
- width: 100%;
- height: 60rpx;
- font-size: 32rpx;
- border: 0;
- border-radius: 60rpx;
- appearance: none;
- padding: 0 3%;
- margin: 0;
- background-color: #ffffff;
- }
- }
- .search-btn {
- width: 15%;
- margin: 0 0 0 2%;
- flex-shrink: 0;
- font-size: 28rpx;
- color: #fff;
- background: linear-gradient(to right, #ff9801, #ff570a);
- border-radius: 60rpx;
- @include flex(center, center);
- }
- }
- .search-keyword {
- padding: 88rpx 24rpx 0;
- // 列表项
- .orderList_listItem {
- width: 702rpx;
- min-height: 320rpx;
- background-color: #fff;
- position: relative;
- margin-top: 8rpx;
- border-radius: 8rpx;
- padding: 0 24rpx;
- font-size: 32rpx;
- @include border;
- @include semicircle(#F9FAFB, 82rpx);
- @include flex(flex-start, stretch, column);
- .orderList_listItem_header {
- height: 86rpx;
- @include border($directive:bottom, $style:dashed);
- @include flex(space-between, center);
- .orderList_listItem_header_title {
- color: #333;
- flex: 1;
- @include flex(flex-start, center);
- .associationType_icon {
- width: 48rpx;
- height: 48rpx;
- border-radius: 50%;
- font-size: 24rpx;
- margin-right: 8rpx;
- @include border($color:#39b199);
- @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;
- }
- }
- .taskNameAndWorkerName {
- flex: 1;
- @include flex;
- .taskName {
- max-width: 10em;
- @include clamp;
- }
- .workerName {
- flex: 1;
- @include clamp;
- }
- }
- }
- .orderList_listItem_header_more {
- color: #333;
- font-weight: bold;
- @include clamp;
- }
- }
- .orderList_listItem_item {
- height: 88rpx;
- color: #333;
- font-size: 30rpx;
- flex: 1;
- @include border(bottom);
- @include flex(flex-start, stretch, column);
- &:last-of-type {
- border-bottom: none;
- }
- .orderList_listItem_item_content {
- min-height: 143rpx;
- flex: 1;
- @include flex(space-between, center);
- .orderList_listItem_item_name {
- font-size: 34rpx;
- }
- .orderList_listItem_item_time {
- color: #333;
- font-size: 34rpx;
- font-weight: bold;
- }
- }
- .orderList_listItem_item_btns {
- position: relative;
- left: -24rpx;
- width: 698rpx;
- height: 88rpx;
- @include btn_background;
- @include flex;
- .btn {
- flex: 1;
- background-color: transparent;
- position: relative;
- @include flex(center, center);
- &::before {
- content: '';
- position: absolute;
- right: 0;
- top: 0;
- width: 1px;
- height: 100%;
- @include border(right, #fff);
- }
- &:last-of-type::before {
- border-right: none;
- }
- &::after {
- border: none;
- }
- }
- }
- }
- }
- }
- }
- </style>
|