Browse Source

被服回收

seimin 1 year ago
parent
commit
31d3ad257d

+ 263 - 0
components/selectNum/selectNum.vue

@@ -0,0 +1,263 @@
1
+<template>
2
+  <view class="changeHospital" v-show="disjunctor">
3
+    <view class="changeHospital__wrap">
4
+      <view class="changeHospital__header">
5
+        提示
6
+      </view>
7
+      <view class="changeHospital__article">
8
+        <view class="uni-list-cell content" v-show="content">
9
+          {{content}}
10
+        </view>
11
+        <view class="uni-list-cell">
12
+          <view class="uni-list-cell-left">
13
+            {{dataName}}:
14
+          </view>
15
+          <view class="uni-list-cell-db">
16
+            <input class="uni-input" auto-focus="true" placeholder="请填写数量" type="number" v-model="num" @input="onKeyInput" />
17
+          </view>
18
+        </view>
19
+      </view>
20
+      <view class="changeHospital__footer">
21
+        <view v-if="operate.ok" class="changeHospital__ok" @click="ok" hover-class="seimin-btn-hover">
22
+          {{ operate.ok || "" }}
23
+        </view>
24
+        <view v-if="operate.cancel" class="changeHospital__cancel" @click="cancel" hover-class="seimin-btn-hover">
25
+          {{ operate.cancel || "" }}
26
+        </view>
27
+      </view>
28
+    </view>
29
+  </view>
30
+</template>
31
+
32
+<script>
33
+  import {
34
+    post
35
+  } from "../../http/http.js";
36
+  export default {
37
+    data() {
38
+      return {
39
+        hosId: null,
40
+        num: 0, //数量
41
+      };
42
+    },
43
+    props: {
44
+      // 显示隐藏
45
+      disjunctor: {
46
+        type: Boolean,
47
+        default: false,
48
+      },
49
+      // 提示内容
50
+      content: {
51
+        type: String,
52
+        default: "",
53
+      },
54
+      // 被服种类
55
+      dataName: {
56
+        type: String,
57
+        default: "",
58
+      },
59
+      // 操作按钮文字
60
+      operate: {
61
+        type: Object,
62
+        default: () => {
63
+          return {
64
+            ok: "确定",
65
+            cancel: "取消",
66
+          };
67
+        },
68
+      },
69
+    },
70
+    methods: {
71
+      onKeyInput: function(event) {
72
+        this.$nextTick(() => {
73
+        	this.num = parseInt(event.target.value, 10);
74
+        })
75
+      },
76
+      // 确定
77
+      ok() {
78
+        let e = {};
79
+        if (this.num) {
80
+          e.num = this.num;
81
+        }
82
+        this.$emit("ok", e);
83
+      },
84
+      // 取消
85
+      cancel() {
86
+        this.$emit("cancel");
87
+      },
88
+    },
89
+    created() {
90
+      this.hosId = uni.getStorageSync('userData').user.currentHospital.id;
91
+    }
92
+  };
93
+</script>
94
+
95
+<style lang="less" scoped>
96
+  .changeHospital {
97
+    position: fixed;
98
+    left: 0;
99
+    right: 0;
100
+    top: 0;
101
+    bottom: 0;
102
+    background-color: rgba(0, 0, 0, 0.2);
103
+    z-index: 999;
104
+
105
+    .uni-list-cell {
106
+      width: 90%;
107
+      display: flex;
108
+      flex-direction: row;
109
+      justify-content: space-evenly;
110
+      align-items: center;
111
+      text-align: center;
112
+      margin-top: 32rpx;
113
+      
114
+      &.content{
115
+        justify-content: center;
116
+        color: #000;
117
+        margin-top: 0;
118
+        font-weight: bold;
119
+      }
120
+
121
+      .uni-list-cell-left {
122
+        flex: 3;
123
+        font-size: 32rpx;
124
+        color: #666;
125
+      }
126
+
127
+      .uni-list-cell-db {
128
+        border: 1px solid #e5e9ed;
129
+        background-color: #fff;
130
+        padding: 16rpx 0;
131
+        flex: 5;
132
+      }
133
+
134
+      .uni-list-cell-db-text {
135
+        flex: 5;
136
+        text-align: left;
137
+      }
138
+    }
139
+
140
+    .changeHospital__wrap {
141
+      width: 90vw;
142
+      position: absolute;
143
+      left: 50%;
144
+      top: 50%;
145
+      transform: translate(-50%, -50%);
146
+      background-color: #fff;
147
+      border-radius: 12rpx;
148
+      color: #666;
149
+
150
+      .changeHospital__header {
151
+        font-size: 36rpx;
152
+        color: #000;
153
+        height: 84rpx;
154
+        display: flex;
155
+        justify-content: center;
156
+        align-items: center;
157
+      }
158
+
159
+      .changeHospital__article {
160
+        width: 90%;
161
+        margin: 0 auto 25rpx;
162
+        padding: 48rpx 0;
163
+        background-color: rgb(249, 250, 251);
164
+        border: 2rpx solid rgb(229, 233, 237);
165
+        border-radius: 12rpx;
166
+        box-sizing: border-box;
167
+        display: flex;
168
+        flex-direction: column;
169
+        justify-content: center;
170
+        align-items: center;
171
+
172
+        &.p0 {
173
+          padding: 0;
174
+        }
175
+
176
+        .changeHospital__icon {
177
+          font-size: 138rpx;
178
+          margin-bottom: 32rpx;
179
+
180
+          &.changeHospital__icon--success {
181
+            color: rgb(52, 179, 73);
182
+          }
183
+
184
+          &.changeHospital__icon--warn {
185
+            color: rgb(245, 165, 35);
186
+          }
187
+
188
+          &.changeHospital__icon--error {
189
+            color: rgb(255, 58, 82);
190
+          }
191
+        }
192
+
193
+        .changeHospital__content {
194
+          font-size: 36rpx;
195
+        }
196
+
197
+        .changeHospital__info {
198
+          font-size: 32rpx;
199
+          color: rgb(102, 102, 102);
200
+        }
201
+
202
+        .specialCloseFlag {
203
+          width: 90%;
204
+          height: 100%;
205
+          padding: 16rpx;
206
+        }
207
+
208
+        .radio-wrap {
209
+          .radio-item {
210
+            margin-top: 16rpx;
211
+
212
+            /deep/ .uni-radio-input-checked {
213
+              background-color: #49b856 !important;
214
+              border-color: #49b856 !important;
215
+            }
216
+          }
217
+        }
218
+      }
219
+
220
+      .changeHospital__footer {
221
+        box-sizing: border-box;
222
+        height: 100rpx;
223
+        border-top: 2rpx solid rgb(229, 233, 237);
224
+        display: flex;
225
+        align-items: center;
226
+
227
+        view {
228
+          height: 100%;
229
+          display: flex;
230
+          align-items: center;
231
+          justify-content: center;
232
+          font-size: 36rpx;
233
+          color: rgb(102, 102, 102);
234
+          position: relative;
235
+
236
+          &:nth-of-type(2)::before {
237
+            content: "";
238
+            position: absolute;
239
+            left: 0;
240
+            bottom: 0;
241
+            width: 2rpx;
242
+            height: 87rpx;
243
+            background-color: rgb(229, 233, 237);
244
+          }
245
+        }
246
+
247
+        .changeHospital__ok {
248
+          flex: 1;
249
+          color: rgb(73, 184, 86);
250
+        }
251
+
252
+        .changeHospital__cancel {
253
+          flex: 1;
254
+        }
255
+
256
+        .changeHospital__know {
257
+          flex: 1;
258
+          color: rgb(73, 184, 86);
259
+        }
260
+      }
261
+    }
262
+  }
263
+</style>

+ 15 - 0
pages.json

@@ -476,6 +476,21 @@
476 476
         }
477 477
       }
478 478
 
479
+    }, {
480
+      "path": "pages/quiltWashing/quiltWashingGetSignIn/quiltWashingGetSignIn",
481
+      "style": {
482
+        "h5": {
483
+          "titleNView": false
484
+        }
485
+      }
486
+    }, {
487
+      "path": "pages/quiltWashing/quiltWashingGetEndCheck/quiltWashingGetEndCheck",
488
+      "style": {
489
+        "h5": {
490
+          "titleNView": false
491
+        }
492
+      }
493
+
479 494
     }
480 495
   ],
481 496
   "globalStyle": {

+ 309 - 0
pages/quiltWashing/quiltWashingGetEndCheck/quiltWashingGetEndCheck.vue

@@ -0,0 +1,309 @@
1
+<template>
2
+  <view class="Scanning_Result">
3
+    <view class="Scanning_top">
4
+      <view class="Scanning_top_icon">
5
+        <text class="cubeic-ok icon_transport transport-duigou"></text>
6
+        <view class="text1"> 签到成功 </view>
7
+      </view>
8
+      <view class="Scanning_top_text">
9
+        您已到达{{queryObj.endDeptName}},请核对填写以下物品数量
10
+      </view>
11
+    </view>
12
+
13
+    <view class="Scanning_cont">
14
+      <view class="Scanning_cont_list">
15
+        <view class="Scanning_cont_list_item Scanning_cont_list_head">
16
+          <view class="name">
17
+            科室名称<text class="red">({{dataList.length}})</text>
18
+          </view>
19
+          <view class="value">
20
+            <view>
21
+              被服种类数量<text class="red">({{total}})</text>
22
+            </view>
23
+          </view>
24
+        </view>
25
+        <scroll-view scroll-y="true" class="Scanning_cont_list_scroll">
26
+          <view class="Scanning_cont_list_item" v-for="(item, j) in dataList" :key="item.id">
27
+            <view class="name">
28
+              {{item.dept}}
29
+            </view>
30
+            <view class="value">
31
+              <view>
32
+                {{item.count}}
33
+              </view>
34
+            </view>
35
+          </view>
36
+        </scroll-view>
37
+      </view>
38
+    </view>
39
+
40
+    <view class="foot_btn">
41
+      <view class="btn" @click="onClick()"> 核对完成 </view>
42
+      <view class="btn" @click="goBack()"> 取消 </view>
43
+    </view>
44
+    <!-- 弹窗 -->
45
+    <showModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content"
46
+      @ok="ok1" @cancel="cancel1" :operate="models1.operate"></showModel>
47
+  </view>
48
+</template>
49
+<script>
50
+  import {
51
+    get,
52
+    post,
53
+    SM,
54
+    webHandle
55
+  } from "../../../http/http.js";
56
+  export default {
57
+    data() {
58
+      return {
59
+        hosId: uni.getStorageSync('userData').user.currentHospital.id,
60
+        queryObj: {}, //路由传递过来的数据
61
+        dataList: [],
62
+        total: 0,
63
+        // 弹窗model
64
+        models1: {
65
+          disjunctor: false,
66
+        },
67
+      };
68
+    },
69
+    methods: {
70
+      goBack(){
71
+        uni.navigateBack();
72
+      },
73
+      //确定
74
+      ok1() {
75
+        this.models1.disjunctor = false;
76
+        uni.showLoading({
77
+          title: "加载中",
78
+          mask: true,
79
+        });
80
+        post("/transflow/complete", {
81
+          type: 'clothingGet',
82
+          orderId: 0,
83
+          orderIds: this.queryObj.orderIds,
84
+        }).then((res) => {
85
+          uni.hideLoading();
86
+          if (res.state == 200) {
87
+            uni.showModal({
88
+              title: "提示",
89
+              content: "操作成功",
90
+              showCancel: false,
91
+              success: (result) => {
92
+                if (result.confirm) {
93
+                  console.log("用户点击确定");
94
+                  uni.navigateTo({
95
+                    url: `../../receiptpage/receiptpage`,
96
+                  });
97
+                }
98
+              },
99
+            });
100
+          }else{
101
+            uni.showToast({
102
+              icon: "none",
103
+              title: result.msg || "接口获取数据失败!",
104
+            });
105
+          }
106
+        });
107
+      },
108
+      //取消
109
+      cancel1() {
110
+        this.models1.disjunctor = false;
111
+      },
112
+      // 被服回收弹窗
113
+      showModel1() {
114
+        this.models1 = {
115
+          disjunctor: true,
116
+          title: "提示",
117
+          content: `您确认核对完整吗?`,
118
+          icon: "warn",
119
+          operate: {
120
+            ok: "确定",
121
+            cancel: "取消",
122
+          },
123
+        };
124
+      },
125
+      onClick(){
126
+        this.showModel1();
127
+      },
128
+      getInfo(){
129
+        uni.showLoading({
130
+          title: "加载中",
131
+          mask: true,
132
+        });
133
+        post("/transflow/scanInfo", {
134
+          type: 'clothingGet',
135
+          hosId: this.hosId,
136
+          id: 0,
137
+          orderIds: this.queryObj.orderIds,
138
+        }).then((result) => {
139
+          uni.hideLoading();
140
+          if (result.state == 200) {
141
+            this.dataList = result.data.countList || [];
142
+            this.total = this.dataList.reduce((prev, current) => prev + current.count, 0);
143
+          } else {
144
+            uni.showToast({
145
+              icon: "none",
146
+              title: result.msg || "接口获取数据失败!",
147
+            });
148
+          }
149
+        });
150
+      },
151
+    },
152
+    onLoad(options) {
153
+      console.log(options, "result");
154
+      this.queryObj = options;
155
+      this.getInfo();
156
+      // #ifdef APP-PLUS
157
+      webHandle("no", "app");
158
+      // #endif
159
+      // #ifdef H5
160
+      webHandle("no", "wx");
161
+      // #endif
162
+    },
163
+  };
164
+</script>
165
+<style lang="less" scoped>
166
+  .Scanning_Result {
167
+    height: 100vh;
168
+    display: flex;
169
+    flex-direction: column;
170
+    background-color: #fafbfd;
171
+    .Scanning_top {
172
+      flex-shrink: 0;
173
+      .Scanning_top_icon {
174
+        padding-top: 26rpx;
175
+        display: flex;
176
+        flex-direction: column;
177
+        justify-content: center;
178
+        align-items: center;
179
+
180
+        .cubeic-ok {
181
+          font-size: 128rpx;
182
+          color: #35b34a;
183
+        }
184
+
185
+        .text1 {
186
+          margin-top: 30rpx;
187
+          font-size: 38rpx;
188
+          font-weight: bold;
189
+        }
190
+      }
191
+      .Scanning_top_text{
192
+        text-align: center;
193
+        font-size: 28rpx;
194
+        font-weight: bold;
195
+        padding: 8rpx 0 23rpx 0;
196
+      }
197
+    }
198
+
199
+    .Scanning_cont {
200
+      flex: 1;
201
+      min-height: 0;
202
+      display: flex;
203
+      flex-direction: column;
204
+      width: 710rpx;
205
+      margin: 0 20rpx;
206
+      background-color: #fff;
207
+      
208
+      .Scanning_cont_head{
209
+        flex-shrink: 0;
210
+        height: 78rpx;
211
+        display: flex;
212
+        border-top: 1rpx solid #EEEEEE;
213
+        border-bottom: 1rpx solid #EEEEEE;
214
+        .Scanning_cont_head_item{
215
+          flex: 1;
216
+          font-size: 24rpx;
217
+          font-weight: bold;
218
+          display: flex;
219
+          justify-content: center;
220
+          align-items: center;
221
+          position: relative;
222
+          &.active{
223
+            color: #49B856;
224
+            &::before{
225
+              content: '';
226
+              width: 70rpx;
227
+              height: 10rpx;
228
+              background-color: #49B856;
229
+              position: absolute;
230
+              left: 50%;
231
+              bottom: 0;
232
+              transform: translateX(-50%);
233
+              border-radius: 6rpx;
234
+            }
235
+          }
236
+          &::after{
237
+            content: '';
238
+            width: 2rpx;
239
+            height: 44rpx;
240
+            background-color: #D1D1D1;
241
+            position: absolute;
242
+            right: 0;
243
+            top: 50%;
244
+            transform: translateY(-50%);
245
+          }
246
+          &:last-of-type::after{
247
+            opacity: 0;
248
+          }
249
+        }
250
+      }
251
+      
252
+      .Scanning_cont_list{
253
+        flex: 1;
254
+        min-height: 0;
255
+        display: flex;
256
+        flex-direction: column;
257
+        .Scanning_cont_list_scroll{
258
+          flex: 1;
259
+          min-height: 0;
260
+        }
261
+        .Scanning_cont_list_item{
262
+          height: 70rpx;
263
+          display: flex;
264
+          align-items: center;
265
+          font-size: 23rpx;
266
+          border-bottom: 1rpx solid #CCCCCC;
267
+          &.Scanning_cont_list_head{
268
+            font-weight: bold;
269
+            font-size: 24rpx;
270
+            border-bottom: none;
271
+            flex-shrink: 0;
272
+          }
273
+          .name,
274
+          .value{
275
+            padding: 0 67rpx;
276
+            flex: 1;
277
+          }
278
+          .value {
279
+            view{
280
+              width: 10em;
281
+              text-align: center;
282
+            }
283
+          }
284
+        }
285
+      }
286
+    }
287
+
288
+    .foot_btn {
289
+      flex-shrink: 0;
290
+      line-height: 64rpx;
291
+      display: flex;
292
+      justify-content: center;
293
+
294
+      .btn {
295
+        height: 64rpx;
296
+        flex: 1;
297
+        margin-right: 1%;
298
+        background-image: linear-gradient(to right, #72c172, #3bb197);
299
+        color: #fff;
300
+        border-radius: 8rpx;
301
+        font-size: 24rpx;
302
+        text-align: center;
303
+        &:last-of-type{
304
+          margin-right: 0;
305
+        }
306
+      }
307
+    }
308
+  }
309
+</style>

+ 349 - 0
pages/quiltWashing/quiltWashingGetSignIn/quiltWashingGetSignIn.vue

@@ -0,0 +1,349 @@
1
+<template>
2
+  <view class="Scanning_Result">
3
+    <view class="Scanning_top">
4
+      <view class="Scanning_top_icon">
5
+        <text class="cubeic-ok icon_transport transport-duigou"></text>
6
+        <view class="text1"> 签到成功 </view>
7
+      </view>
8
+      <view class="Scanning_top_text">
9
+        您已到达{{queryObj.startDeptName}},请核对填写以下物品数量
10
+      </view>
11
+    </view>
12
+
13
+    <view class="Scanning_cont">
14
+      <view class="Scanning_cont_head">
15
+        <view class="Scanning_cont_head_item" :class="{active: parentIndex == i}" v-for="(item, i) in dataList" :key="item.id" @click="parentIndex = i">
16
+          {{item.name}}
17
+        </view>
18
+      </view>
19
+      
20
+      <view class="Scanning_cont_list">
21
+        <view class="Scanning_cont_list_item Scanning_cont_list_head">
22
+          <view class="name">
23
+            被服种类
24
+          </view>
25
+          <view class="value">
26
+            <view>
27
+              被服数量
28
+            </view>
29
+          </view>
30
+        </view>
31
+        <scroll-view scroll-y="true" class="Scanning_cont_list_scroll" v-if="dataList[parentIndex]">
32
+          <view class="Scanning_cont_list_item" @click="clickRow(item)" v-for="(item, j) in dataList[parentIndex].children" :key="item.id">
33
+            <view class="name">
34
+              {{item.name}}
35
+            </view>
36
+            <view class="value">
37
+              <view>
38
+                {{item.clothesWashingDTO ? item.clothesWashingDTO.recyclingNum : ''}}
39
+              </view>
40
+            </view>
41
+          </view>
42
+        </scroll-view>
43
+      </view>
44
+    </view>
45
+
46
+    <view class="foot_btn">
47
+      <view class="btn" @click="onClick()"> 汇总交接 </view>
48
+    </view>
49
+    <!-- 填写数字弹窗 -->
50
+    <selectNum v-if="numModels.disjunctor" :disjunctor="numModels.disjunctor" @ok="numOk" @cancel="numCancel" :content="numModels.content" :dataName="numModels.dataName">
51
+    </selectNum>
52
+    <!-- 弹窗 -->
53
+    <showModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content"
54
+      @ok="ok1" @cancel="cancel1" :operate="models1.operate"></showModel>
55
+  </view>
56
+</template>
57
+<script>
58
+  import {
59
+    get,
60
+    post,
61
+    SM,
62
+    webHandle
63
+  } from "../../../http/http.js";
64
+  export default {
65
+    data() {
66
+      return {
67
+        hosId: uni.getStorageSync('userData').user.currentHospital.id,
68
+        queryObj: {}, //路由传递过来的数据
69
+        // 填写数字弹窗model
70
+        numModels: {
71
+          disjunctor: false,
72
+        },
73
+        dataList: [],
74
+        parentIndex: 0,
75
+        coopData: {},
76
+        // 弹窗model
77
+        models1: {
78
+          disjunctor: false,
79
+        },
80
+      };
81
+    },
82
+    methods: {
83
+      //确定
84
+      ok1() {
85
+        this.models1.disjunctor = false;
86
+        let bussList = this.dataList.map(v => v.children).flat().map(v => v.clothesWashingDTO).map(v => ({...v, exception: 0}));
87
+        uni.showLoading({
88
+          title: "加载中",
89
+          mask: true,
90
+        });
91
+        post("/transflow/createOrTakeOrder", {
92
+          type: 'clothingGet',
93
+          id: 0,
94
+          startDeptId: this.queryObj.startDeptId,
95
+          hosId: this.hosId,
96
+          bussList,
97
+          orderId: this.queryObj.orderId,
98
+        }).then((res) => {
99
+          uni.hideLoading();
100
+          if (res.state == 200) {
101
+            uni.showModal({
102
+              title: "提示",
103
+              content: "交接成功",
104
+              showCancel: false,
105
+              success: (result) => {
106
+                if (result.confirm) {
107
+                  console.log("用户点击确定");
108
+                  uni.navigateTo({
109
+                    url: `../../receiptpage/receiptpage`,
110
+                  });
111
+                }
112
+              },
113
+            });
114
+          }else{
115
+            uni.showToast({
116
+              icon: "none",
117
+              title: result.msg || "接口获取数据失败!",
118
+            });
119
+          }
120
+        });
121
+      },
122
+      //取消
123
+      cancel1() {
124
+        this.models1.disjunctor = false;
125
+      },
126
+      // 被服回收弹窗
127
+      showModel1() {
128
+        let bussList = this.dataList.map(v => v.children).flat();
129
+        let num = bussList.reduce((prev, current) => prev + current.clothesWashingDTO.recyclingNum, 0);
130
+        this.models1 = {
131
+          disjunctor: true,
132
+          title: "提示",
133
+          content: `${this.queryObj.startDeptName}已与${this.queryObj.name}交接${num}件被服,交接人为${this.queryObj.name},您确认交接吗?`,
134
+          icon: "warn",
135
+          operate: {
136
+            ok: "确定",
137
+            cancel: "取消",
138
+          },
139
+        };
140
+      },
141
+      // 填写数量-确认
142
+      numOk(data) {
143
+        console.log(data);
144
+        this.numModels.disjunctor = false;
145
+        this.updateNum(data);
146
+      },
147
+      // 填写数量-取消
148
+      numCancel() {
149
+        this.numModels.disjunctor = false;
150
+      },
151
+      onClick(){
152
+        this.showModel1();
153
+      },
154
+      clickRow(data){
155
+        this.coopData = data;
156
+        this.numModels = {
157
+          disjunctor: true,
158
+          content: `请输入被服数量`,
159
+          dataName: data.name,
160
+        };
161
+      },
162
+      updateNum(data){
163
+        this.dataList[this.parentIndex].children.forEach(v => {
164
+          if(v.id == this.coopData.id){
165
+            v.clothesWashingDTO && (v.clothesWashingDTO.recyclingNum = data.num);
166
+          }
167
+        })
168
+      },
169
+      getInfo(){
170
+        uni.showLoading({
171
+          title: "加载中",
172
+          mask: true,
173
+        });
174
+        post("/transflow/scanInfo", {
175
+          type: 'clothingGet',
176
+          hosId: this.hosId,
177
+          startDeptId: this.queryObj.startDeptId,
178
+          code: this.queryObj.quiltCode,
179
+          orderId: this.queryObj.orderId,
180
+        }).then((result) => {
181
+          uni.hideLoading();
182
+          if (result.state == 200) {
183
+            let dataList = result.data.treeList || [];
184
+            this.dataList = dataList.slice(0, 3);
185
+          } else {
186
+            uni.showToast({
187
+              icon: "none",
188
+              title: result.msg || "接口获取数据失败!",
189
+            });
190
+          }
191
+        });
192
+      },
193
+    },
194
+    onLoad(options) {
195
+      console.log(options, "result");
196
+      this.queryObj = options;
197
+      this.getInfo();
198
+      // #ifdef APP-PLUS
199
+      webHandle("no", "app");
200
+      // #endif
201
+      // #ifdef H5
202
+      webHandle("no", "wx");
203
+      // #endif
204
+    },
205
+  };
206
+</script>
207
+<style lang="less" scoped>
208
+  .Scanning_Result {
209
+    height: 100vh;
210
+    display: flex;
211
+    flex-direction: column;
212
+    background-color: #fafbfd;
213
+    .Scanning_top {
214
+      flex-shrink: 0;
215
+      .Scanning_top_icon {
216
+        padding-top: 26rpx;
217
+        display: flex;
218
+        justify-content: center;
219
+        align-items: center;
220
+
221
+        .cubeic-ok {
222
+          font-size: 48rpx;
223
+          color: #35b34a;
224
+        }
225
+
226
+        .text1 {
227
+          font-size: 38rpx;
228
+          font-weight: bold;
229
+        }
230
+      }
231
+      .Scanning_top_text{
232
+        text-align: center;
233
+        font-size: 28rpx;
234
+        font-weight: bold;
235
+        padding: 8rpx 0 23rpx 0;
236
+      }
237
+    }
238
+
239
+    .Scanning_cont {
240
+      flex: 1;
241
+      min-height: 0;
242
+      display: flex;
243
+      flex-direction: column;
244
+      width: 710rpx;
245
+      margin: 0 20rpx;
246
+      background-color: #fff;
247
+      
248
+      .Scanning_cont_head{
249
+        flex-shrink: 0;
250
+        height: 78rpx;
251
+        display: flex;
252
+        border-top: 1rpx solid #EEEEEE;
253
+        border-bottom: 1rpx solid #EEEEEE;
254
+        .Scanning_cont_head_item{
255
+          flex: 1;
256
+          font-size: 24rpx;
257
+          font-weight: bold;
258
+          display: flex;
259
+          justify-content: center;
260
+          align-items: center;
261
+          position: relative;
262
+          &.active{
263
+            color: #49B856;
264
+            &::before{
265
+              content: '';
266
+              width: 70rpx;
267
+              height: 10rpx;
268
+              background-color: #49B856;
269
+              position: absolute;
270
+              left: 50%;
271
+              bottom: 0;
272
+              transform: translateX(-50%);
273
+              border-radius: 6rpx;
274
+            }
275
+          }
276
+          &::after{
277
+            content: '';
278
+            width: 2rpx;
279
+            height: 44rpx;
280
+            background-color: #D1D1D1;
281
+            position: absolute;
282
+            right: 0;
283
+            top: 50%;
284
+            transform: translateY(-50%);
285
+          }
286
+          &:last-of-type::after{
287
+            opacity: 0;
288
+          }
289
+        }
290
+      }
291
+      
292
+      .Scanning_cont_list{
293
+        flex: 1;
294
+        min-height: 0;
295
+        display: flex;
296
+        flex-direction: column;
297
+        .Scanning_cont_list_scroll{
298
+          flex: 1;
299
+          min-height: 0;
300
+        }
301
+        .Scanning_cont_list_item{
302
+          height: 70rpx;
303
+          display: flex;
304
+          align-items: center;
305
+          font-size: 23rpx;
306
+          border-bottom: 1rpx solid #CCCCCC;
307
+          &.Scanning_cont_list_head{
308
+            font-weight: bold;
309
+            font-size: 24rpx;
310
+            border-bottom: none;
311
+            flex-shrink: 0;
312
+          }
313
+          .name,
314
+          .value{
315
+            padding: 0 67rpx;
316
+            flex: 1;
317
+          }
318
+          .value {
319
+            view{
320
+              width: 4em;
321
+              text-align: center;
322
+            }
323
+          }
324
+        }
325
+      }
326
+    }
327
+
328
+    .foot_btn {
329
+      flex-shrink: 0;
330
+      line-height: 64rpx;
331
+      display: flex;
332
+      justify-content: center;
333
+
334
+      .btn {
335
+        height: 64rpx;
336
+        flex: 1;
337
+        margin-right: 1%;
338
+        background-image: linear-gradient(to right, #72c172, #3bb197);
339
+        color: #fff;
340
+        border-radius: 8rpx;
341
+        font-size: 24rpx;
342
+        text-align: center;
343
+        &:last-of-type{
344
+          margin-right: 0;
345
+        }
346
+      }
347
+    }
348
+  }
349
+</style>

+ 115 - 0
pages/receiptpage/receiptpage.vue

@@ -361,6 +361,9 @@
361 361
         </view>
362 362
       </view>
363 363
     </view>
364
+    <!-- 被服洗涤弹窗 -->
365
+    <showModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content"
366
+      @ok="ok1" @cancel="cancel1" :operate="models1.operate"></showModel>
364 367
   </view>
365 368
 </template>
366 369
 <script>
@@ -452,10 +455,15 @@
452 455
         pharmacistFlag: false,
453 456
         // 抢单的id
454 457
         qdId: "",
458
+        quiltData: {},
455 459
         // 弹窗model
456 460
         models: {
457 461
           disjunctor: false,
458 462
         },
463
+        // 弹窗model
464
+        models1: {
465
+          disjunctor: false,
466
+        },
459 467
         // 悬浮按钮样式
460 468
         pattern: {
461 469
           buttonColor: "#6cc076",
@@ -490,6 +498,7 @@
490 498
         freshing: false, //上拉加载开关
491 499
         scroll_top: 0, //距离顶部的距离
492 500
         scroll_refresher_enabled: true, //是否开启自定义下拉刷新
501
+        quiltCode: '',
493 502
       };
494 503
     },
495 504
     filters: {
@@ -1002,6 +1011,10 @@
1002 1011
             this.content.push({
1003 1012
               text: "快捷接单",
1004 1013
             });
1014
+          } else if (item.link === "wxQuiltRecovery") {
1015
+            this.content.push({
1016
+              text: "被服回收",
1017
+            });
1005 1018
           }
1006 1019
         });
1007 1020
       },
@@ -1444,7 +1457,109 @@
1444 1457
           uni.navigateTo({
1445 1458
             url: "../quickOrderAcceptanceWx/quickOrderAcceptanceWx",
1446 1459
           });
1460
+        } else if (e.item.text === "被服回收") {
1461
+          this.quiltScan();
1462
+        }
1463
+      },
1464
+      //确定
1465
+      ok1() {
1466
+        this.models1.disjunctor = false;
1467
+        uni.showLoading({
1468
+          title: "加载中",
1469
+          mask: true,
1470
+        });
1471
+        post("/transflow/createOrTakeOrder", {
1472
+          type: 'clothingGet',
1473
+          id: 0,
1474
+          startDeptId: this.quiltData.dept.id,
1475
+          hosId: this.hosId,
1476
+        }).then((res) => {
1477
+          uni.hideLoading();
1478
+          if (res.state == 200) {
1479
+            uni.showModal({
1480
+              title: "提示",
1481
+              content: "建单成功",
1482
+              showCancel: false,
1483
+              success: (result) => {
1484
+                if (result.confirm) {
1485
+                  console.log("用户点击确定");
1486
+                  uni.navigateTo({
1487
+                    url: `../quiltWashing/quiltWashingGetSignIn/quiltWashingGetSignIn?quiltCode=${this.quiltCode}&startDeptId=${this.quiltData.dept.id}&startDeptName=${this.quiltData.dept.dept}&orderId=${res.data.orderId}&name=${this.quiltData.name}`,
1488
+                  });
1489
+                }
1490
+              },
1491
+            });
1492
+          }else{
1493
+            uni.showToast({
1494
+              icon: "none",
1495
+              title: result.msg || "接口获取数据失败!",
1496
+            });
1497
+          }
1498
+        });
1499
+      },
1500
+      //取消
1501
+      cancel1() {
1502
+        this.models1.disjunctor = false;
1503
+      },
1504
+      // 被服回收弹窗
1505
+      showQuiltData(data) {
1506
+        this.quiltData = data;
1507
+        this.models1 = {
1508
+          disjunctor: true,
1509
+          title: "提示",
1510
+          content: `您扫描的是${data.name}的工号,是否建立${data.dept.dept}的被服回收工单吗?`,
1511
+          icon: "warn",
1512
+          operate: {
1513
+            ok: "建立工单",
1514
+            cancel: "取消",
1515
+          },
1516
+        };
1517
+      },
1518
+      // 扫描工牌-被服洗涤
1519
+      quiltScan() {
1520
+        if (!this.SMFlag) {
1521
+          return;
1447 1522
         }
1523
+        this.SMFlag = false;
1524
+        SM().then((content) => {
1525
+          uni.showLoading({
1526
+            title: "加载中",
1527
+            mask: true,
1528
+          });
1529
+          //检验二维码的有效性(扫码前必须验证)
1530
+          post("/dept/scanning", {
1531
+              content,
1532
+            })
1533
+            .then((result) => {
1534
+              this.quiltCode = result.code;
1535
+              this.SMFlag = true;
1536
+              // 200检测通过,201没有有效期也通过。
1537
+              if (result.state == 200 || result.state == 201) {
1538
+                let data = {
1539
+                  code: this.quiltCode, //二维码
1540
+                };
1541
+                post("/transflow/bigScan", { type: 'clothingGet', code: this.quiltCode })
1542
+                  .then((res) => {
1543
+                    uni.hideLoading();
1544
+                    if (res.state == 200) {
1545
+                      this.showQuiltData(res.data)
1546
+                    } else {
1547
+                      uni.navigateTo({
1548
+                        url: `../scanning_Result/scanning_Result?status=${res.state}&msg=${res.msg}&qrcode=${this.quiltCode}`,
1549
+                      });
1550
+                    }
1551
+                  });
1552
+              } else {
1553
+                uni.hideLoading();
1554
+                uni.showToast({
1555
+                  icon: "none",
1556
+                  title: result.info || "接口获取数据失败!",
1557
+                });
1558
+              }
1559
+            })
1560
+        }).catch(err => {
1561
+          this.SMFlag = true;
1562
+        });
1448 1563
       },
1449 1564
       // 我的二维码
1450 1565
       myQrcodeHandler(){

+ 15 - 1
pages/scanning_all/scanning_all.vue

@@ -45,6 +45,12 @@
45 45
           <view @click="act('blood')" v-if="infoDATA['blood']">
46 46
             <view id="40" :class="{ acts: tabType == 'blood' }">血制品({{ infoDATA.blood.length }})</view>
47 47
           </view>
48
+          <view @click="act('clothingGet')" v-if="infoDATA['clothingGet']">
49
+            <view id="40" :class="{ acts: tabType == 'clothingGet' }">被服洗涤回收({{ infoDATA.clothingGet.length }})</view>
50
+          </view>
51
+          <view @click="act('clothingSend')" v-if="infoDATA['clothingSend']">
52
+            <view id="40" :class="{ acts: tabType == 'clothingSend' }">被服洗涤送回({{ infoDATA.clothingSend.length }})</view>
53
+          </view>
48 54
         </view>
49 55
       </view>
50 56
       <view class="page_items" v-if="!workData" style="font-size: 18px; margin-top: 15%">
@@ -93,6 +99,8 @@
93 99
                 ">患者转运</text>
94 100
               <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'other'">其他</text>
95 101
               <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'ordinary' && infoDATA.taskType.ordinaryField.value == 'blood'">血制品</text>
102
+              <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'ordinary' && infoDATA.taskType.ordinaryField.value == 'clothingGet'">被服洗涤回收</text>
103
+              <text class="L_iocn" v-if="infoDATA.taskType.associationType.value == 'ordinary' && infoDATA.taskType.ordinaryField.value == 'clothingSend'">被服洗涤送回</text>
96 104
             </view>
97 105
             <view class="L"></view>
98 106
             <view class="R"></view>
@@ -481,6 +489,12 @@
481 489
                   });
482 490
                 }
483 491
               })
492
+            }else if (this.tabType == "clothingGet") {
493
+              uni.navigateTo({
494
+                url: `../quiltWashing/quiltWashingGetEndCheck/quiltWashingGetEndCheck?orderIds=${this.userId.ids.toString()}&endDeptName=${this.deptName}`
495
+              })
496
+            }else if (this.tabType == "clothingSend") {
497
+              // todo
484 498
             }else if (
485 499
               this.tabType == "drugsBag" ||
486 500
               this.tabType == "jPBag" ||
@@ -866,7 +880,7 @@
866 880
 
867 881
         view {
868 882
           display: inline-block;
869
-          width: 260rpx;
883
+          width: 300rpx;
870 884
           line-height: 48rpx;
871 885
           font-size: 32rpx;
872 886
           height: 100%;