|
@@ -0,0 +1,323 @@
|
|
1
|
+<template>
|
|
2
|
+ <view class="patientList">
|
|
3
|
+ <view class="search-box">
|
|
4
|
+ <seiminSearch class="mSearch-input-box" :mode="2" button="inside" placeholder="输入床号或姓名支持拼音检索" @input="debounceInp"
|
|
5
|
+ v-model="keyword"></seiminSearch>
|
|
6
|
+ </view>
|
|
7
|
+ <view class="search-keyword">
|
|
8
|
+ <view class="orderList_listItem" v-for="patient in patientList" :key="patient.id">
|
|
9
|
+ <view class="orderList_listItem_header">
|
|
10
|
+ <view class="orderList_listItem_header_title">
|
|
11
|
+ <block v-if="patient.illnessState">
|
|
12
|
+ <view class="associationType_icon red" v-if="patient.illnessState.value === '2'">危</view>
|
|
13
|
+ <view class="associationType_icon red" v-else-if="patient.illnessState.value === '3'">重</view>
|
|
14
|
+ </block>
|
|
15
|
+ <block v-if="patient.careLevel">
|
|
16
|
+ <view class="associationType_icon red" v-if="patient.careLevel.value === '0'">特</view>
|
|
17
|
+ <view class="associationType_icon red" v-else-if="patient.careLevel.value === '1'">1</view>
|
|
18
|
+ <view class="associationType_icon green" v-else-if="patient.careLevel.value === '2'">2</view>
|
|
19
|
+ <view class="associationType_icon green" v-else-if="patient.careLevel.value === '3'">3</view>
|
|
20
|
+ </block>
|
|
21
|
+ <view class="taskNameAndWorkerName">
|
|
22
|
+ <text class="workerName">{{patient.patientName || '暂无'}}</text>
|
|
23
|
+ </view>
|
|
24
|
+ </view>
|
|
25
|
+ <text class="orderList_listItem_header_more">{{patient.bedNum }}床</text>
|
|
26
|
+ </view>
|
|
27
|
+ <view class="orderList_listItem_item">
|
|
28
|
+ <view class="orderList_listItem_item_content">
|
|
29
|
+ <text class="orderList_listItem_item_name">{{patient.residenceNo || '暂无'}}</text>
|
|
30
|
+ <text class="orderList_listItem_item_time">待检{{patient.watingCount}}</text>
|
|
31
|
+ </view>
|
|
32
|
+ <view class="orderList_listItem_item_btns">
|
|
33
|
+ <button type="primary" class="btn" @click.stop="showAppraise(patient.id)">患者详情</button>
|
|
34
|
+ <button type="primary" class="btn" @click.stop="openRecallModal(patient.id)">一键建单</button>
|
|
35
|
+ </view>
|
|
36
|
+ </view>
|
|
37
|
+ </view>
|
|
38
|
+ </view>
|
|
39
|
+ <seiminFooterNav></seiminFooterNav>
|
|
40
|
+ <seiminModel ref="seiminModel"></seiminModel>
|
|
41
|
+ </view>
|
|
42
|
+</template>
|
|
43
|
+
|
|
44
|
+<script>
|
|
45
|
+ import {
|
|
46
|
+ debounce
|
|
47
|
+ } from 'lodash/function';
|
|
48
|
+ import {
|
|
49
|
+ reqFetchDataList,
|
|
50
|
+ } from "../../request/api.js";
|
|
51
|
+ import {
|
|
52
|
+ mapState,
|
|
53
|
+ } from "vuex";
|
|
54
|
+ export default {
|
|
55
|
+ data() {
|
|
56
|
+ return {
|
|
57
|
+ debounceInp: null,
|
|
58
|
+ keyword: "",
|
|
59
|
+ patientList: [],
|
|
60
|
+ totalNum: 0, //工单总数量
|
|
61
|
+ idx: 0, //页码
|
|
62
|
+ };
|
|
63
|
+ },
|
|
64
|
+ computed: {
|
|
65
|
+ ...mapState("login", ["loginInfo"]),
|
|
66
|
+ ...mapState('other', ["deptDisplay"]),
|
|
67
|
+ },
|
|
68
|
+ methods: {
|
|
69
|
+ //监听输入
|
|
70
|
+ inputChange(event = '', idxPlus = false) {
|
|
71
|
+ let keyWord = event.detail ? event.detail.value : event;
|
|
72
|
+ if (idxPlus) {
|
|
73
|
+ //累加
|
|
74
|
+ ++this.idx;
|
|
75
|
+ } else {
|
|
76
|
+ this.idx = 0;
|
|
77
|
+ }
|
|
78
|
+ let postData = {
|
|
79
|
+ "idx": this.idx,
|
|
80
|
+ "sum": 9999,
|
|
81
|
+ "patient": {
|
|
82
|
+ keyWord,
|
|
83
|
+ "department": {
|
|
84
|
+ "id": this.loginInfo.user.dept.id
|
|
85
|
+ }
|
|
86
|
+ }
|
|
87
|
+ };
|
|
88
|
+ uni.showLoading({
|
|
89
|
+ title: "加载中",
|
|
90
|
+ mask: true,
|
|
91
|
+ });
|
|
92
|
+ reqFetchDataList("nurse", "patient", postData).then((res) => {
|
|
93
|
+ uni.hideLoading();
|
|
94
|
+ if (res.status == 200) {
|
|
95
|
+ res.list = res.list || [];
|
|
96
|
+ if (idxPlus) {
|
|
97
|
+ //累加
|
|
98
|
+ this.patientList = this.patientList.concat(res.list);
|
|
99
|
+ } else {
|
|
100
|
+ this.patientList = res.list;
|
|
101
|
+ }
|
|
102
|
+ this.totalNum = res.totalNum || 0;
|
|
103
|
+ } else {
|
|
104
|
+ this.$refs.seiminModel.show({
|
|
105
|
+ skin: "toast",
|
|
106
|
+ icon: "error",
|
|
107
|
+ content: res.msg || "获取数据失败",
|
|
108
|
+ });
|
|
109
|
+ throw new Error(res.msg || "获取数据失败");
|
|
110
|
+ }
|
|
111
|
+ });
|
|
112
|
+ },
|
|
113
|
+ // 查询最新列表(上拉)
|
|
114
|
+ reachBottom() {
|
|
115
|
+ //没有更多
|
|
116
|
+ if (this.patientList.length == this.totalNum) {
|
|
117
|
+ uni.showToast({
|
|
118
|
+ icon: 'none',
|
|
119
|
+ title: '没有更多数据了'
|
|
120
|
+ })
|
|
121
|
+ return;
|
|
122
|
+ }
|
|
123
|
+ this.inputChange(this.keyword, true);
|
|
124
|
+ },
|
|
125
|
+ },
|
|
126
|
+ onReachBottom() {
|
|
127
|
+ this.reachBottom();
|
|
128
|
+ },
|
|
129
|
+ created() {
|
|
130
|
+ this.debounceInp = debounce(this.inputChange, 500);
|
|
131
|
+ },
|
|
132
|
+ beforeDestroy() {
|
|
133
|
+ this.debounceInp.cancel()
|
|
134
|
+ },
|
|
135
|
+ onLoad() {
|
|
136
|
+ this.inputChange('');
|
|
137
|
+ },
|
|
138
|
+ };
|
|
139
|
+</script>
|
|
140
|
+<style lang="scss" scoped>
|
|
141
|
+ .patientList {
|
|
142
|
+ padding-bottom: 108rpx;
|
|
143
|
+
|
|
144
|
+ .search-box {
|
|
145
|
+ background-color: rgb(242, 242, 242);
|
|
146
|
+ padding: 15rpx 2.5%;
|
|
147
|
+ position: fixed;
|
|
148
|
+ z-index: 99;
|
|
149
|
+ width: 100%;
|
|
150
|
+ @include flex(space-between);
|
|
151
|
+
|
|
152
|
+ .mSearch-input-box {
|
|
153
|
+ width: 100%;
|
|
154
|
+ }
|
|
155
|
+
|
|
156
|
+ .input-box {
|
|
157
|
+ width: 85%;
|
|
158
|
+ flex-shrink: 1;
|
|
159
|
+ @include flex(center, center);
|
|
160
|
+
|
|
161
|
+ &>input {
|
|
162
|
+ width: 100%;
|
|
163
|
+ height: 60rpx;
|
|
164
|
+ font-size: 32rpx;
|
|
165
|
+ border: 0;
|
|
166
|
+ border-radius: 60rpx;
|
|
167
|
+ appearance: none;
|
|
168
|
+ padding: 0 3%;
|
|
169
|
+ margin: 0;
|
|
170
|
+ background-color: #ffffff;
|
|
171
|
+ }
|
|
172
|
+ }
|
|
173
|
+
|
|
174
|
+ .search-btn {
|
|
175
|
+ width: 15%;
|
|
176
|
+ margin: 0 0 0 2%;
|
|
177
|
+ flex-shrink: 0;
|
|
178
|
+ font-size: 28rpx;
|
|
179
|
+ color: #fff;
|
|
180
|
+ background: linear-gradient(to right, #ff9801, #ff570a);
|
|
181
|
+ border-radius: 60rpx;
|
|
182
|
+ @include flex(center, center);
|
|
183
|
+ }
|
|
184
|
+ }
|
|
185
|
+
|
|
186
|
+ .search-keyword {
|
|
187
|
+ padding: 88rpx 24rpx 0;
|
|
188
|
+
|
|
189
|
+ // 列表项
|
|
190
|
+ .orderList_listItem {
|
|
191
|
+ width: 702rpx;
|
|
192
|
+ min-height: 320rpx;
|
|
193
|
+ background-color: #fff;
|
|
194
|
+ position: relative;
|
|
195
|
+ margin-top: 8rpx;
|
|
196
|
+ border-radius: 8rpx;
|
|
197
|
+ padding: 0 24rpx;
|
|
198
|
+ font-size: 32rpx;
|
|
199
|
+ @include border;
|
|
200
|
+ @include semicircle(#F9FAFB, 82rpx);
|
|
201
|
+ @include flex(flex-start, stretch, column);
|
|
202
|
+
|
|
203
|
+ .orderList_listItem_header {
|
|
204
|
+ height: 86rpx;
|
|
205
|
+ @include border($directive:bottom, $style:dashed);
|
|
206
|
+ @include flex(space-between, center);
|
|
207
|
+
|
|
208
|
+ .orderList_listItem_header_title {
|
|
209
|
+ color: #333;
|
|
210
|
+ flex: 1;
|
|
211
|
+ @include flex(flex-start, center);
|
|
212
|
+
|
|
213
|
+ .associationType_icon {
|
|
214
|
+ width: 48rpx;
|
|
215
|
+ height: 48rpx;
|
|
216
|
+ border-radius: 50%;
|
|
217
|
+ font-size: 24rpx;
|
|
218
|
+ margin-right: 8rpx;
|
|
219
|
+ @include border($color:#39b199);
|
|
220
|
+ @include flex(center, center);
|
|
221
|
+
|
|
222
|
+ &.green {
|
|
223
|
+ color: $defaultColor;
|
|
224
|
+ border: 1px solid $defaultColor;
|
|
225
|
+ background-color: rgba(73, 184, 86, 0.1);
|
|
226
|
+ }
|
|
227
|
+
|
|
228
|
+ &.red {
|
|
229
|
+ color: #FF3B53;
|
|
230
|
+ border: 1px solid #FF3B53;
|
|
231
|
+ background-color: #FFE8EB;
|
|
232
|
+ }
|
|
233
|
+ }
|
|
234
|
+
|
|
235
|
+ .taskNameAndWorkerName {
|
|
236
|
+ flex: 1;
|
|
237
|
+ @include flex;
|
|
238
|
+
|
|
239
|
+ .taskName {
|
|
240
|
+ max-width: 10em;
|
|
241
|
+ @include clamp;
|
|
242
|
+ }
|
|
243
|
+
|
|
244
|
+ .workerName {
|
|
245
|
+ flex: 1;
|
|
246
|
+ @include clamp;
|
|
247
|
+ }
|
|
248
|
+ }
|
|
249
|
+ }
|
|
250
|
+
|
|
251
|
+ .orderList_listItem_header_more {
|
|
252
|
+ color: #333;
|
|
253
|
+ font-weight: bold;
|
|
254
|
+ @include clamp;
|
|
255
|
+ }
|
|
256
|
+ }
|
|
257
|
+
|
|
258
|
+ .orderList_listItem_item {
|
|
259
|
+ height: 88rpx;
|
|
260
|
+ color: #333;
|
|
261
|
+ font-size: 30rpx;
|
|
262
|
+ flex: 1;
|
|
263
|
+ @include border(bottom);
|
|
264
|
+ @include flex(flex-start, stretch, column);
|
|
265
|
+
|
|
266
|
+ &:last-of-type {
|
|
267
|
+ border-bottom: none;
|
|
268
|
+ }
|
|
269
|
+
|
|
270
|
+ .orderList_listItem_item_content {
|
|
271
|
+ min-height: 143rpx;
|
|
272
|
+ flex: 1;
|
|
273
|
+ @include flex(space-between, center);
|
|
274
|
+
|
|
275
|
+ .orderList_listItem_item_name {
|
|
276
|
+ font-size: 34rpx;
|
|
277
|
+ }
|
|
278
|
+
|
|
279
|
+ .orderList_listItem_item_time {
|
|
280
|
+ color: #333;
|
|
281
|
+ font-size: 34rpx;
|
|
282
|
+ font-weight: bold;
|
|
283
|
+ }
|
|
284
|
+ }
|
|
285
|
+
|
|
286
|
+ .orderList_listItem_item_btns {
|
|
287
|
+ position: relative;
|
|
288
|
+ left: -24rpx;
|
|
289
|
+ width: 698rpx;
|
|
290
|
+ height: 88rpx;
|
|
291
|
+ @include btn_background;
|
|
292
|
+ @include flex;
|
|
293
|
+
|
|
294
|
+ .btn {
|
|
295
|
+ flex: 1;
|
|
296
|
+ background-color: transparent;
|
|
297
|
+ position: relative;
|
|
298
|
+ @include flex(center, center);
|
|
299
|
+
|
|
300
|
+ &::before {
|
|
301
|
+ content: '';
|
|
302
|
+ position: absolute;
|
|
303
|
+ right: 0;
|
|
304
|
+ top: 0;
|
|
305
|
+ width: 1px;
|
|
306
|
+ height: 100%;
|
|
307
|
+ @include border(right, #fff);
|
|
308
|
+ }
|
|
309
|
+
|
|
310
|
+ &:last-of-type::before {
|
|
311
|
+ border-right: none;
|
|
312
|
+ }
|
|
313
|
+
|
|
314
|
+ &::after {
|
|
315
|
+ border: none;
|
|
316
|
+ }
|
|
317
|
+ }
|
|
318
|
+ }
|
|
319
|
+ }
|
|
320
|
+ }
|
|
321
|
+ }
|
|
322
|
+ }
|
|
323
|
+</style>
|