|
@@ -3,32 +3,294 @@
|
3
|
3
|
<!-- 头部筛选 -->
|
4
|
4
|
<view class="orderList_header">
|
5
|
5
|
<view class="orderList_header_item">
|
6
|
|
-
|
|
6
|
+ <text class="orderList_header_itemText">全部</text>
|
|
7
|
+ <text class="pda pda-xiala"></text>
|
7
|
8
|
</view>
|
8
|
9
|
<view class="orderList_header_item">
|
9
|
|
-
|
|
10
|
+ <text class="orderList_header_itemText">全部</text>
|
|
11
|
+ <text class="pda pda-xiala"></text>
|
|
12
|
+ </view>
|
|
13
|
+ </view>
|
|
14
|
+ <!-- 列表 -->
|
|
15
|
+ <view class="orderList_list">
|
|
16
|
+ <view class="orderList_listItem" v-for="newOrder in newOrderList" :key="newOrder.id">
|
|
17
|
+ <view class="orderList_listItem_header">
|
|
18
|
+ <view class="orderList_listItem_header_title">
|
|
19
|
+ <view class="associationType_icon"> 标 </view>
|
|
20
|
+ 半程陪检-张三
|
|
21
|
+ </view>
|
|
22
|
+ <text class="orderList_listItem_header_more">待接单</text>
|
|
23
|
+ </view>
|
|
24
|
+ <view class="orderList_listItem_item">
|
|
25
|
+ <view class="orderList_listItem_item_content">
|
|
26
|
+ <text class="orderList_listItem_item_name">李四-6322285</text>
|
|
27
|
+ <text class="orderList_listItem_item_time">10:20</text>
|
|
28
|
+ </view>
|
|
29
|
+ <view class="orderList_listItem_item_btns">
|
|
30
|
+ <button type="primary" class="btn">撤销</button>
|
|
31
|
+ <button type="primary" class="btn">加急</button>
|
|
32
|
+ </view>
|
|
33
|
+ </view>
|
10
|
34
|
</view>
|
11
|
35
|
</view>
|
12
|
36
|
<seiminFooterNav></seiminFooterNav>
|
|
37
|
+ <seiminModel ref="seiminModel"></seiminModel>
|
13
|
38
|
</view>
|
14
|
39
|
</template>
|
15
|
40
|
|
16
|
41
|
<script>
|
|
42
|
+ import {
|
|
43
|
+ mapState
|
|
44
|
+ } from "vuex";
|
|
45
|
+ import {
|
|
46
|
+ reqFetchDataList
|
|
47
|
+ } from "../../request/api.js";
|
|
48
|
+ import {
|
|
49
|
+ GDSTATE
|
|
50
|
+ } from "../../utils/enum.gdstate.js";
|
17
|
51
|
export default {
|
18
|
52
|
name: 'orderList',
|
19
|
53
|
data() {
|
20
|
54
|
return {
|
21
|
|
-
|
|
55
|
+ newOrderList: [], //工单列表
|
|
56
|
+ idx: 0, //页码
|
22
|
57
|
};
|
|
58
|
+ },
|
|
59
|
+ computed: {
|
|
60
|
+ ...mapState("user", ["loginInfo"]),
|
|
61
|
+ },
|
|
62
|
+ methods: {
|
|
63
|
+ // 获取页面数据
|
|
64
|
+ init() {
|
|
65
|
+ uni.showLoading({
|
|
66
|
+ title: "加载中",
|
|
67
|
+ mask: true,
|
|
68
|
+ });
|
|
69
|
+ Promise.all([
|
|
70
|
+ this.queryWorkOrdersRequest(), //查询最新工单列表
|
|
71
|
+ ]).then((values) => {
|
|
72
|
+ uni.hideLoading();
|
|
73
|
+ uni.stopPullDownRefresh();
|
|
74
|
+ this.queryWorkOrdersResponse(values[0]);
|
|
75
|
+ });
|
|
76
|
+ },
|
|
77
|
+ // 查询最新工单列表(上拉)
|
|
78
|
+ reachBottom() {
|
|
79
|
+ uni.showLoading({
|
|
80
|
+ title: "加载中",
|
|
81
|
+ mask: true,
|
|
82
|
+ });
|
|
83
|
+ Promise.all([
|
|
84
|
+ this.queryWorkOrdersRequest(true), //查询最新工单列表
|
|
85
|
+ ]).then((values) => {
|
|
86
|
+ uni.hideLoading();
|
|
87
|
+ uni.stopPullDownRefresh();
|
|
88
|
+ this.queryWorkOrdersResponse(values[0], true);
|
|
89
|
+ });
|
|
90
|
+ },
|
|
91
|
+ // 查询最新工单列表
|
|
92
|
+ queryWorkOrdersRequest(idxPlus = false) {
|
|
93
|
+ if (idxPlus) {
|
|
94
|
+ //累加
|
|
95
|
+ ++this.idx;
|
|
96
|
+ } else {
|
|
97
|
+ this.idx = 0;
|
|
98
|
+ }
|
|
99
|
+ return reqFetchDataList("nurse", "workOrder", {
|
|
100
|
+ workOrder: {
|
|
101
|
+ createDept: this.loginInfo.user.dept.id,
|
|
102
|
+ platform: 2,
|
|
103
|
+ searchDays: 2,
|
|
104
|
+ },
|
|
105
|
+ idx: this.idx,
|
|
106
|
+ sum: 10,
|
|
107
|
+ });
|
|
108
|
+ },
|
|
109
|
+ // 查询最新工单列表
|
|
110
|
+ queryWorkOrdersResponse(res, idxPlus = false) {
|
|
111
|
+ if (res.status == 200) {
|
|
112
|
+ res.list = res.list || [];
|
|
113
|
+ let newOrderList = res.list.map((v) => {
|
|
114
|
+ if (v.gdState) {
|
|
115
|
+ if (
|
|
116
|
+ v.gdState.value == GDSTATE["待接单"] ||
|
|
117
|
+ v.gdState.value == GDSTATE["待抢单"]
|
|
118
|
+ ) {
|
|
119
|
+ v.stateTextClass = "red";
|
|
120
|
+ } else if (
|
|
121
|
+ v.gdState.value == GDSTATE["待评价"] ||
|
|
122
|
+ v.gdState.value == GDSTATE["已完成"]
|
|
123
|
+ ) {
|
|
124
|
+ v.stateTextClass = "green";
|
|
125
|
+ } else {
|
|
126
|
+ v.stateTextClass = "yellow";
|
|
127
|
+ }
|
|
128
|
+ }
|
|
129
|
+ return v;
|
|
130
|
+ });
|
|
131
|
+ if (idxPlus) {
|
|
132
|
+ //累加
|
|
133
|
+ this.newOrderList.push(newOrderList)
|
|
134
|
+ } else {
|
|
135
|
+ this.newOrderList = newOrderList;
|
|
136
|
+ }
|
|
137
|
+ } else {
|
|
138
|
+ this.$refs.seiminModel.showChangeDept({
|
|
139
|
+ skin: "toast",
|
|
140
|
+ icon: "error",
|
|
141
|
+ content: res.msg || "获取数据失败",
|
|
142
|
+ });
|
|
143
|
+ throw new Error(res.msg || '获取数据失败');
|
|
144
|
+ }
|
|
145
|
+ },
|
|
146
|
+ },
|
|
147
|
+ mounted() {
|
|
148
|
+ this.init();
|
|
149
|
+ },
|
|
150
|
+ onPullDownRefresh() {
|
|
151
|
+ this.init();
|
|
152
|
+ },
|
|
153
|
+ onReachBottom() {
|
|
154
|
+ this.reachBottom();
|
23
|
155
|
}
|
24
|
156
|
}
|
25
|
157
|
</script>
|
26
|
158
|
|
27
|
159
|
<style lang="scss" scoped>
|
28
|
160
|
.orderList {
|
|
161
|
+ padding-top: 88rpx;
|
|
162
|
+ padding-bottom: 108rpx;
|
|
163
|
+
|
|
164
|
+ // 头部筛选
|
29
|
165
|
.orderList_header {
|
30
|
166
|
height: 88rpx;
|
|
167
|
+ background-color: #fff;
|
|
168
|
+ border-bottom: 1px solid #E5E9ED;
|
|
169
|
+ position: fixed;
|
|
170
|
+ top: 88rpx;
|
|
171
|
+ left: 0;
|
|
172
|
+ z-index: 99;
|
|
173
|
+ width: 100%;
|
31
|
174
|
@include flex(center, center);
|
|
175
|
+
|
|
176
|
+ .orderList_header_item {
|
|
177
|
+ flex: 1;
|
|
178
|
+ height: 100%;
|
|
179
|
+ padding: 0 50rpx;
|
|
180
|
+ border-right: 1px solid #E5E9ED;
|
|
181
|
+ @include flex(space-between, center);
|
|
182
|
+
|
|
183
|
+ &:last-of-type {
|
|
184
|
+ border-right: none;
|
|
185
|
+ }
|
|
186
|
+
|
|
187
|
+ .orderList_header_itemText {
|
|
188
|
+ color: #333;
|
|
189
|
+ font-size: 38rpx;
|
|
190
|
+ }
|
|
191
|
+
|
|
192
|
+ .pda-xiala {
|
|
193
|
+ color: #DDE1E5;
|
|
194
|
+ }
|
|
195
|
+ }
|
|
196
|
+ }
|
|
197
|
+
|
|
198
|
+ // 列表
|
|
199
|
+ .orderList_list {
|
|
200
|
+ padding: 0 24rpx;
|
|
201
|
+
|
|
202
|
+ .orderList_listItem {
|
|
203
|
+ width: 702rpx;
|
|
204
|
+ min-height: 320rpx;
|
|
205
|
+ background-color: #fff;
|
|
206
|
+ margin-top: 8rpx;
|
|
207
|
+ border-radius: 8rpx;
|
|
208
|
+ border: 2rpx solid #e5e9ed;
|
|
209
|
+ position: relative;
|
|
210
|
+ padding: 0 15rpx;
|
|
211
|
+ font-size: 32rpx;
|
|
212
|
+ @include semicircle(#f9fafb, 82rpx);
|
|
213
|
+ @include flex(flex-start, stretch, column);
|
|
214
|
+
|
|
215
|
+ .orderList_listItem_header {
|
|
216
|
+ height: 86rpx;
|
|
217
|
+ border-bottom: 1px dashed #e5e9ed;
|
|
218
|
+ @include flex(space-between, center);
|
|
219
|
+
|
|
220
|
+ .orderList_listItem_header_title {
|
|
221
|
+ color: #333;
|
|
222
|
+ @include flex(flex-start, center);
|
|
223
|
+
|
|
224
|
+ .associationType_icon {
|
|
225
|
+ width: 48rpx;
|
|
226
|
+ height: 48rpx;
|
|
227
|
+ border-radius: 50%;
|
|
228
|
+ background-color: rgba(57, 177, 153, 0.3);
|
|
229
|
+ border: 1px solid #39b199;
|
|
230
|
+ font-size: 24rpx;
|
|
231
|
+ color: #39b199;
|
|
232
|
+ margin-right: 8rpx;
|
|
233
|
+ @include flex(center, center);
|
|
234
|
+ }
|
|
235
|
+ }
|
|
236
|
+
|
|
237
|
+ .orderList_listItem_header_more {
|
|
238
|
+ color: #666;
|
|
239
|
+ }
|
|
240
|
+ }
|
|
241
|
+
|
|
242
|
+ .orderList_listItem_item {
|
|
243
|
+ height: 88rpx;
|
|
244
|
+ border-bottom: 1px solid #e5e9ed;
|
|
245
|
+ color: #333;
|
|
246
|
+ font-size: 30rpx;
|
|
247
|
+ flex: 1;
|
|
248
|
+ @include flex(flex-start, stretch, column);
|
|
249
|
+
|
|
250
|
+ &:last-of-type {
|
|
251
|
+ border-bottom: none;
|
|
252
|
+ }
|
|
253
|
+
|
|
254
|
+ .orderList_listItem_item_content {
|
|
255
|
+ min-height: 143rpx;
|
|
256
|
+ flex: 1;
|
|
257
|
+ @include flex(space-between, center);
|
|
258
|
+
|
|
259
|
+ .orderList_listItem_item_name {
|
|
260
|
+ font-size: 38rpx;
|
|
261
|
+ font-weight: bold;
|
|
262
|
+ }
|
|
263
|
+
|
|
264
|
+ .orderList_listItem_item_time {
|
|
265
|
+ color: #666;
|
|
266
|
+ font-size: 28rpx;
|
|
267
|
+ }
|
|
268
|
+ }
|
|
269
|
+
|
|
270
|
+ .orderList_listItem_item_btns {
|
|
271
|
+ position: relative;
|
|
272
|
+ left: -14rpx;
|
|
273
|
+ width: 698rpx;
|
|
274
|
+ height: 88rpx;
|
|
275
|
+ @include btn_background;
|
|
276
|
+ @include flex;
|
|
277
|
+
|
|
278
|
+ .btn {
|
|
279
|
+ flex: 1;
|
|
280
|
+ background-color: transparent;
|
|
281
|
+ border-right: 2rpx solid #fff;
|
|
282
|
+
|
|
283
|
+ &:last-of-type {
|
|
284
|
+ border-right: none;
|
|
285
|
+ }
|
|
286
|
+
|
|
287
|
+ &::after {
|
|
288
|
+ border: none;
|
|
289
|
+ }
|
|
290
|
+ }
|
|
291
|
+ }
|
|
292
|
+ }
|
|
293
|
+ }
|
32
|
294
|
}
|
33
|
295
|
}
|
34
|
296
|
</style>
|