seimin лет назад: 2
Родитель
Сommit
e42b31142a

+ 299 - 0
components/backModel/backModel.vue

@@ -0,0 +1,299 @@
1
+<template>
2
+  <view class="changeHospital" v-show="disjunctor">
3
+    <view class="changeHospital__wrap">
4
+      <view class="changeHospital__header" v-if="title">
5
+        {{ title }}
6
+      </view>
7
+      <view class="changeHospital__article">
8
+        <view class="uni-list-cell">
9
+          <view class="uni-list-cell-left">
10
+            退回原因:
11
+          </view>
12
+          <view class="uni-list-cell-db">
13
+            <picker @change="bindPickerChange" :value="index" :range="list" class="pickerBack" range-key="name">
14
+              <view class="uni-input">{{list[index]?list[index].name:''}}</view>
15
+            </picker>
16
+          </view>
17
+        </view>
18
+        <view class="uni-list-cell">
19
+          <view class="uni-list-cell-left">
20
+            备注:
21
+          </view>
22
+          <view class="uni-list-cell-db">
23
+            <textarea class="textarea" v-model="remarks" placeholder="请填写备注" />
24
+          </view>
25
+        </view>
26
+      </view>
27
+      <view class="changeHospital__footer">
28
+        <view v-if="operate.ok" class="changeHospital__ok" @click="ok" hover-class="seimin-btn-hover">
29
+          {{ operate.ok || "" }}
30
+        </view>
31
+        <view v-if="operate.cancel" class="changeHospital__cancel" @click="cancel" hover-class="seimin-btn-hover">
32
+          {{ operate.cancel || "" }}
33
+        </view>
34
+      </view>
35
+    </view>
36
+  </view>
37
+</template>
38
+
39
+<script>
40
+  import {
41
+    post
42
+  } from "../../http/http.js";
43
+  export default {
44
+    data() {
45
+      return {
46
+        index: -1,
47
+        list: [],
48
+        remarks: '',
49
+        loading: false,
50
+        timer: null,
51
+      };
52
+    },
53
+    watch: {
54
+      disjunctor(newValue) {
55
+        if (newValue && this.operate.know == "知道了") {
56
+          this.time = 5;
57
+          this.timer = setInterval(() => {
58
+            this.time--;
59
+            if (this.time <= 0) {
60
+              clearInterval(this.timer);
61
+              this.know();
62
+            }
63
+          }, 1000);
64
+        }
65
+      },
66
+    },
67
+    props: {
68
+      // 显示隐藏
69
+      disjunctor: {
70
+        type: Boolean,
71
+        default: false,
72
+      },
73
+      // 标题
74
+      title: {
75
+        type: String,
76
+        default: "提示",
77
+      },
78
+      // 操作按钮文字
79
+      operate: {
80
+        type: Object,
81
+        default: () => {
82
+          return {
83
+            ok: "确认",
84
+            cancel: "取消",
85
+          };
86
+        },
87
+      },
88
+    },
89
+    methods: {
90
+      // 获取退回原因
91
+      getReasonForReturn() {
92
+        post('/common/common/getDictionary', {
93
+          "type": "list",
94
+          "key": "reason_for_return"
95
+        }).then(res => {
96
+          this.list = res;
97
+        })
98
+      },
99
+      // 修改退回原因
100
+      bindPickerChange: function(e) {
101
+        this.index = e.detail.value;
102
+      },
103
+      // 确定
104
+      ok() {
105
+        if (!this.list[this.index]) {
106
+          uni.showToast({
107
+            icon: 'none',
108
+            title: '请选择退回原因!'
109
+          })
110
+          return;
111
+        }
112
+        this.$emit("ok", {
113
+          reasonForReturn: this.list[this.index].id,
114
+          remarks: this.remarks.trim()
115
+        });
116
+      },
117
+      // 取消
118
+      cancel() {
119
+        this.$emit("cancel");
120
+      },
121
+    },
122
+    created() {
123
+      this.getReasonForReturn();
124
+    }
125
+  };
126
+</script>
127
+
128
+<style lang="less" scoped>
129
+  .changeHospital {
130
+    position: fixed;
131
+    left: 0;
132
+    right: 0;
133
+    top: 0;
134
+    bottom: 0;
135
+    background-color: rgba(0, 0, 0, 0.2);
136
+    z-index: 999;
137
+
138
+    .uni-list-cell {
139
+      width: 90%;
140
+      display: flex;
141
+      flex-direction: row;
142
+      justify-content: space-evenly;
143
+      align-items: center;
144
+      text-align: center;
145
+      margin-top: 32rpx;
146
+
147
+      .uni-list-cell-left {
148
+        flex: 3;
149
+        font-size: 32rpx;
150
+        color: #666;
151
+      }
152
+
153
+      .uni-list-cell-db {
154
+        border: 1px solid #e5e9ed;
155
+        background-color: #fff;
156
+        padding: 16rpx 0;
157
+        flex: 5;
158
+
159
+        .textarea {
160
+          text-align: left;
161
+          width: 100%;
162
+          padding: 0 16rpx;
163
+        }
164
+
165
+        .pickerBack {
166
+          height: 36rpx;
167
+        }
168
+      }
169
+
170
+      .uni-list-cell-db-text {
171
+        flex: 5;
172
+        text-align: left;
173
+      }
174
+    }
175
+
176
+    .changeHospital__wrap {
177
+      width: 90vw;
178
+      position: absolute;
179
+      left: 50%;
180
+      top: 50%;
181
+      transform: translate(-50%, -50%);
182
+      background-color: #fff;
183
+      border-radius: 12rpx;
184
+      color: #666;
185
+
186
+      .changeHospital__header {
187
+        font-size: 36rpx;
188
+        color: #000;
189
+        height: 84rpx;
190
+        display: flex;
191
+        justify-content: center;
192
+        align-items: center;
193
+      }
194
+
195
+      .changeHospital__article {
196
+        width: 90%;
197
+        margin: 0 auto 25rpx;
198
+        padding: 48rpx 0;
199
+        background-color: rgb(249, 250, 251);
200
+        border: 2rpx solid rgb(229, 233, 237);
201
+        border-radius: 12rpx;
202
+        box-sizing: border-box;
203
+        display: flex;
204
+        flex-direction: column;
205
+        justify-content: center;
206
+        align-items: center;
207
+
208
+        &.p0 {
209
+          padding: 0;
210
+        }
211
+
212
+        .changeHospital__icon {
213
+          font-size: 138rpx;
214
+          margin-bottom: 32rpx;
215
+
216
+          &.changeHospital__icon--success {
217
+            color: rgb(52, 179, 73);
218
+          }
219
+
220
+          &.changeHospital__icon--warn {
221
+            color: rgb(245, 165, 35);
222
+          }
223
+
224
+          &.changeHospital__icon--error {
225
+            color: rgb(255, 58, 82);
226
+          }
227
+        }
228
+
229
+        .changeHospital__content {
230
+          font-size: 36rpx;
231
+        }
232
+
233
+        .changeHospital__info {
234
+          font-size: 32rpx;
235
+          color: rgb(102, 102, 102);
236
+        }
237
+
238
+        .specialCloseFlag {
239
+          width: 90%;
240
+          height: 100%;
241
+          padding: 16rpx;
242
+        }
243
+
244
+        .radio-wrap {
245
+          .radio-item {
246
+            margin-top: 16rpx;
247
+
248
+            /deep/ .uni-radio-input-checked {
249
+              background-color: #49b856 !important;
250
+              border-color: #49b856 !important;
251
+            }
252
+          }
253
+        }
254
+      }
255
+
256
+      .changeHospital__footer {
257
+        box-sizing: border-box;
258
+        height: 100rpx;
259
+        border-top: 2rpx solid rgb(229, 233, 237);
260
+        display: flex;
261
+        align-items: center;
262
+
263
+        view {
264
+          height: 100%;
265
+          display: flex;
266
+          align-items: center;
267
+          justify-content: center;
268
+          font-size: 36rpx;
269
+          color: rgb(102, 102, 102);
270
+          position: relative;
271
+
272
+          &:nth-of-type(2)::before {
273
+            content: "";
274
+            position: absolute;
275
+            left: 0;
276
+            bottom: 0;
277
+            width: 2rpx;
278
+            height: 87rpx;
279
+            background-color: rgb(229, 233, 237);
280
+          }
281
+        }
282
+
283
+        .changeHospital__ok {
284
+          flex: 1;
285
+          color: rgb(73, 184, 86);
286
+        }
287
+
288
+        .changeHospital__cancel {
289
+          flex: 1;
290
+        }
291
+
292
+        .changeHospital__know {
293
+          flex: 1;
294
+          color: rgb(73, 184, 86);
295
+        }
296
+      }
297
+    }
298
+  }
299
+</style>

+ 14 - 5
components/bigScreen/bigScreen.vue

@@ -82,11 +82,20 @@
82 82
                         });
83 83
                       } else if (res.type == "quickOrder") {
84 84
                         //快捷建单
85
-                        uni.navigateTo({
86
-                          url: `../shortcutbuildOrders/shortcutbuildOrders?infoDATA=${encodeURIComponent(
87
-                          JSON.stringify(res.data)
88
-                        )}`,
89
-                        });
85
+                        res.isDigitalHandover = 1;
86
+                        if(res.isDigitalHandover == 1){
87
+                          uni.navigateTo({
88
+                            url: `../specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
89
+                            JSON.stringify(res.data)
90
+                          )}`,
91
+                          });
92
+                        }else{
93
+                          uni.navigateTo({
94
+                            url: `../shortcutbuildOrders/shortcutbuildOrders?infoDATA=${encodeURIComponent(
95
+                            JSON.stringify(res.data)
96
+                          )}`,
97
+                          });
98
+                        }
90 99
                       } else if (res.type == "dept") {
91 100
                         // 扫描科室码
92 101
                         // code: data.code //二维码

+ 1 - 1
main.js

@@ -4,7 +4,7 @@ import App from './App'
4 4
 import wx from 'weixin-jsapi'
5 5
 // import VConsole from 'vconsole';
6 6
 // new VConsole();
7
-console.info('v2.4.6');
7
+console.info('v2.4.7');
8 8
 Vue.prototype.wx = wx //声明扫码
9 9
 Vue.prototype.audios = [] //待播放的语音集合
10 10
 // #endif

+ 7 - 0
pages.json

@@ -78,6 +78,13 @@
78 78
         }
79 79
       }
80 80
     }, {
81
+      "path": "pages/specimenChecking/specimenChecking",
82
+      "style": {
83
+        "h5": {
84
+          "titleNView": false
85
+        }
86
+      }
87
+    }, {
81 88
       "path": "pages/scanning_all/scanning_all", //大扫描->科室->正确
82 89
       "style": {
83 90
         "h5": {

+ 8 - 2
pages/patientInformationList/patientInformationList.vue

@@ -128,6 +128,7 @@
128 128
     },
129 129
     methods: {
130 130
       ok2() {
131
+        console.log(this.options)
131 132
         this.models2.disjunctor = false;
132 133
         let currentItem = JSON.parse(this.options.currentItem);
133 134
         uni.showLoading({
@@ -144,7 +145,7 @@
144 145
             },
145 146
             "createDept": this.options.did,
146 147
             "patient": {
147
-              "patientCode": currentItem.patientCode
148
+              "patientCode": this.currentItem.patientCode
148 149
             },
149 150
             "worker": {
150 151
               "id": userId
@@ -152,6 +153,7 @@
152 153
           }
153 154
         };
154 155
         console.log(postData)
156
+        // return;
155 157
         post("/workerOrder/returnSickRoom", postData).then((res) => {
156 158
           uni.hideLoading();
157 159
           if (res.status == 200) {
@@ -171,6 +173,7 @@
171 173
         this.models2.disjunctor = false;
172 174
       },
173 175
       ok3() {
176
+        console.log(this.currentItem)
174 177
         this.models3.disjunctor = false;
175 178
         uni.showLoading({
176 179
           mask: true,
@@ -193,7 +196,8 @@
193 196
             }
194 197
           }
195 198
         };
196
-        console.log(postData)
199
+        console.log(postData);
200
+        // return;
197 201
         post("/workerOrder/returnSickRoom", postData).then((res) => {
198 202
           uni.hideLoading();
199 203
           if (res.status == 200) {
@@ -228,6 +232,7 @@
228 232
       },
229 233
       // 送回病房-扫描科室
230 234
       scanDept(item) {
235
+        console.log(item)
231 236
         if (!this.SMFlag) {
232 237
           return;
233 238
         }
@@ -304,6 +309,7 @@
304 309
       },
305 310
       // 送回病房-选择起点科室
306 311
       sendBack(item) {
312
+        console.log(item)
307 313
         this.currentItem = item;
308 314
         this.models1 = {
309 315
           disjunctor: true,

+ 114 - 90
pages/scanning_B/scanning_B.vue

@@ -33,11 +33,11 @@
33 33
     </view>
34 34
     <view class="foot_btn">
35 35
       <view class="btn3" @click="showAlert()">知道了</view>
36
-      <block v-if="res.scanCodeSpecimenOrderSign == 1">
36
+      <block v-if="res.scanCodeSpecimenOrderSign == 1 && res.data.speState && res.data.speState.value != 8">
37 37
         <view class="btn3" @click="buildAndOrderSign(res.data.id,res.workOrder.id)"
38 38
           v-if="res.workOrder&&(res.workOrder.gdState.value == 2||res.workOrder.gdState.value == 4)">接单并签到</view>
39
-        <view class="btn3" @click="orderSign(res.workOrder)"
40
-          v-else-if="res.workOrder&&res.workOrder.gdState.value != 2&&res.workOrder.gdState.value != 4">执行工单</view>
39
+        <!-- <view class="btn3" @click="orderSign(res.workOrder)"
40
+          v-else-if="res.workOrder&&res.workOrder.gdState.value != 2&&res.workOrder.gdState.value != 4">执行工单</view> -->
41 41
         <view class="btn3" @click="buildAndOrderSign(res.data.id)" v-if="!res.workOrder && res.data">建单并签到</view>
42 42
       </block>
43 43
       <view class="btn3" @click="back(res.data,res.data.gdid)"
@@ -48,6 +48,10 @@
48 48
     <selectAccount v-if="hosModels.disjunctor" :title="hosModels.title" :disjunctor="hosModels.disjunctor" @ok="hosOk"
49 49
       @cancel="hosCancel">
50 50
     </selectAccount>
51
+    <!-- 退回弹窗 -->
52
+    <backModel v-if="backModels.disjunctor" :title="backModels.title" :disjunctor="backModels.disjunctor" @ok="backOk"
53
+      @cancel="backCancel">
54
+    </backModel>
51 55
     <!-- 弹窗 -->
52 56
     <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
53 57
       :operate="models.operate" @know="know"></showModel>
@@ -61,6 +65,8 @@
61 65
   export default {
62 66
     data() {
63 67
       return {
68
+        backParams: {},
69
+        workOrderId: 0,
64 70
         // 弹窗model
65 71
         models: {
66 72
           disjunctor: false,
@@ -73,6 +79,10 @@
73 79
         hosModels: {
74 80
           disjunctor: false,
75 81
         },
82
+        // 退回弹窗model
83
+        backModels: {
84
+          disjunctor: false,
85
+        },
76 86
         currentCode: "",
77 87
         type: "", //类型,orderSign|buildAndOrderSign
78 88
       };
@@ -113,7 +123,7 @@
113 123
                 res.dept
114 124
               }&accountObj=${encodeURIComponent(
115 125
                 JSON.stringify(accountObj)
116
-              )}&deptId=${res.deptId}`,
126
+              )}&deptId=${res.deptId}&specimenId=${res.specimenId}`,
117 127
               });
118 128
             } else {
119 129
               uni.navigateTo({
@@ -127,93 +137,57 @@
127 137
       back(specimen, workOrderId) {
128 138
         this.backSpecimen = specimen;
129 139
         this.backStatus = 'back';
130
-        uni.showModal({
131
-          title: '提示',
132
-          content: '是否退回?',
133
-          success: (res) => {
134
-            if (res.confirm) {
135
-              console.log('用户点击确定');
136
-              let postData = {
137
-                "idx": 0,
138
-                "sum": 1,
139
-                "hospitalConfig": {
140
-                  "hosId": uni.getStorageSync("userData").user.currentHospital.id,
141
-                  "key": "returnSpecimenWhetherHandover"
142
-                }
143
-              };
144
-              uni.showLoading({
145
-                title: "加载中",
146
-                mask: true,
147
-              });
148
-              post('/simple/data/fetchDataList/hospitalConfig', postData).then((result) => {
149
-                uni.hideLoading();
150
-                if (result.status == 200) {
151
-                  if (result.list[0].value == 1) {
152
-                    this.showSelectAccount();
153
-                  } else {
154
-                    this.backHandler(this.backSpecimen, workOrderId);
155
-                  }
156
-                } else {
157
-                  uni.showToast({
158
-                    icon: "none",
159
-                    title: "请求失败!",
160
-                  });
161
-                }
162
-              })
163
-            } else if (res.cancel) {
164
-              console.log('用户点击取消');
165
-            }
166
-          }
167
-        });
140
+        this.workOrderId = workOrderId;
141
+        this.showBack();
168 142
       },
169 143
       // 执行工单
170
-      orderSign(workOrder) {
171
-        this.type = 'orderSign';
172
-        uni.showModal({
173
-          title: '提示',
174
-          content: '是否执行工单?',
175
-          success: (res) => {
176
-            if (res.confirm) {
177
-              console.log('用户点击确定');
178
-              uni.showLoading({
179
-                title: "加载中",
180
-                mask: true,
181
-              });
182
-              let postData = {
183
-                content: workOrder.startDept.qrcode,
184
-                taskTypeId: workOrder.taskType.id,
185
-                gdState: workOrder.gdState.id,
186
-              };
187
-              //检验二维码的有效性
188
-              post("/dept/scanning", postData).then((result) => {
189
-                this.currentCode = result.code;
190
-                if (result.state == 200 || result.state == 201) {
191
-                  if (result.account) {
192
-                    this.nextDeptOrder_s(workOrder, {
193
-                      account: result.account,
194
-                      accountName: result.name,
195
-                      accountId: result.id,
196
-                    });
197
-                  } else {
198
-                    this.nextDeptOrder_s(workOrder);
199
-                  }
200
-                } else if (result.state == "0000") {
201
-                  uni.hideLoading();
202
-                  this.showSelectAccount();
203
-                } else {
204
-                  uni.hideLoading();
205
-                  uni.showToast({
206
-                    icon: "none",
207
-                    title: "请求失败!",
208
-                  });
209
-                }
210
-              });
211
-            } else if (res.cancel) {
212
-              console.log('用户点击取消');
213
-            }
214
-          }
215
-        });
216
-      },
144
+      // orderSign(workOrder) {
145
+      //   this.type = 'orderSign';
146
+      //   uni.showModal({
147
+      //     title: '提示',
148
+      //     content: '是否执行工单?',
149
+      //     success: (res) => {
150
+      //       if (res.confirm) {
151
+      //         console.log('用户点击确定');
152
+      //         uni.showLoading({
153
+      //           title: "加载中",
154
+      //           mask: true,
155
+      //         });
156
+      //         let postData = {
157
+      //           content: workOrder.startDept.qrcode,
158
+      //           taskTypeId: workOrder.taskType.id,
159
+      //           gdState: workOrder.gdState.id,
160
+      //         };
161
+      //         //检验二维码的有效性
162
+      //         post("/dept/scanning", postData).then((result) => {
163
+      //           this.currentCode = result.code;
164
+      //           if (result.state == 200 || result.state == 201) {
165
+      //             if (result.account) {
166
+      //               this.nextDeptOrder_s(workOrder, {
167
+      //                 account: result.account,
168
+      //                 accountName: result.name,
169
+      //                 accountId: result.id,
170
+      //               });
171
+      //             } else {
172
+      //               this.nextDeptOrder_s(workOrder);
173
+      //             }
174
+      //           } else if (result.state == "0000") {
175
+      //             uni.hideLoading();
176
+      //             this.showSelectAccount();
177
+      //           } else {
178
+      //             uni.hideLoading();
179
+      //             uni.showToast({
180
+      //               icon: "none",
181
+      //               title: "请求失败!",
182
+      //             });
183
+      //           }
184
+      //         });
185
+      //       } else if (res.cancel) {
186
+      //         console.log('用户点击取消');
187
+      //       }
188
+      //     }
189
+      //   });
190
+      // },
217 191
       // 接单并签到或建单并签到
218 192
       buildAndOrderSign(speId, orderId) {
219 193
         this.type = 'buildAndOrderSign';
@@ -257,7 +231,7 @@
257 231
                       this.currentCode
258 232
                     }&dept=${res.dept}&accountObj=${encodeURIComponent(
259 233
                       JSON.stringify(undefined)
260
-                    )}&deptId=${res.deptId}`,
234
+                    )}&deptId=${res.deptId}&specimenId=${speId}`,
261 235
                     });
262 236
                   } else {
263 237
                     uni.navigateTo({
@@ -294,11 +268,17 @@
294 268
       // 退回
295 269
       backHandler(specimen, workorderId, data) {
296 270
         console.log(specimen);
271
+        const {
272
+          reasonForReturn,
273
+          remarks,
274
+        } = this.backParams;
297 275
         uni.showLoading({
298 276
           title: '加载中',
299 277
           mask: true
300 278
         })
301 279
         let postData = {
280
+          reasonForReturn,
281
+          remarks,
302 282
           scode: specimen.scode,
303 283
           hosId: uni.getStorageSync("userData").user.currentHospital.id,
304 284
           speState: specimen.speState ? specimen.speState.id : undefined,
@@ -393,6 +373,50 @@
393 373
           url: "../receiptpage/receiptpage",
394 374
         });
395 375
       },
376
+      // 退回-确认
377
+      backOk(data) {
378
+        console.log(data);
379
+        this.backParams = data;
380
+        this.hosModels.disjunctor = false;
381
+        let postData = {
382
+          "idx": 0,
383
+          "sum": 1,
384
+          "hospitalConfig": {
385
+            "hosId": uni.getStorageSync("userData").user.currentHospital.id,
386
+            "key": "returnSpecimenWhetherHandover"
387
+          }
388
+        };
389
+        uni.showLoading({
390
+          title: "加载中",
391
+          mask: true,
392
+        });
393
+        post('/simple/data/fetchDataList/hospitalConfig', postData).then((result) => {
394
+          uni.hideLoading();
395
+          if (result.status == 200) {
396
+            if (result.list[0].value == 1) {
397
+              this.showSelectAccount();
398
+            } else {
399
+              this.backHandler(this.backSpecimen, this.workOrderId);
400
+            }
401
+          } else {
402
+            uni.showToast({
403
+              icon: "none",
404
+              title: "请求失败!",
405
+            });
406
+          }
407
+        })
408
+      },
409
+      // 退回-取消
410
+      backCancel() {
411
+        this.backModels.disjunctor = false;
412
+      },
413
+      // 退回弹窗
414
+      showBack() {
415
+        this.backModels = {
416
+          title: "退回",
417
+          disjunctor: true,
418
+        };
419
+      },
396 420
     },
397 421
     onLoad(options) {
398 422
       this.res = JSON.parse(options.res);

+ 34 - 0
pages/scanning_code/scanning_code.vue

@@ -312,6 +312,7 @@
312 312
       ">
313 313
       <view class="btn3" @click="Scanning_again(dataId)">继续扫描</view>
314 314
       <view class="btn3" @click="showHandViewSpecimen()">手动录入</view>
315
+      <view class="btn3" @click="next()">下一步</view>
315 316
     </view>
316 317
     <view class="foot_btn2 footerPadding" v-if="
317 318
         infoType == 'ins-dsd-1' ||
@@ -472,6 +473,37 @@
472 473
           disjunctor: true,
473 474
         }
474 475
       },
476
+      // 下一步 liaomingming
477
+      next(){
478
+        uni.showLoading({
479
+          title:'加载中',
480
+          mask:true,
481
+        })
482
+        post('/workerOrder/getSpecimenCount',{gdId:this.queryObj.id}).then(res=>{
483
+          get('/api/fetchData/specimen/' + this.queryObj.specimenId).then(ress => {
484
+            uni.hideLoading();
485
+            console.log(ress);
486
+            ress.msg='成功';
487
+            ress.specimenCount = res.specimenCount;
488
+            ress.type=this.queryObj.type1;
489
+            uni.navigateTo({
490
+              url: `../scanning_Result/scanning_Result?type=${
491
+              this.queryObj.type
492
+            }&type1=${
493
+              this.queryObj.type1
494
+            }&infoData=${encodeURIComponent(
495
+              JSON.stringify(ress.data)
496
+            )}&status=${ress.status}&msg=${ress.msg}&deptCode=${
497
+              this.queryObj.deptCode
498
+            }&dept=${
499
+              this.queryObj.dept
500
+            }&id=${this.dataId}&model=${encodeURIComponent(
501
+              JSON.stringify(ress)
502
+            )}&speNum=${res.specimenCount}`,
503
+            });
504
+          })
505
+        })
506
+      },
475 507
       // 拍照
476 508
       photograph(data, obj) {
477 509
         photographTool(data, obj);
@@ -1201,11 +1233,13 @@
1201 1233
       height: 100rpx;
1202 1234
       border-top: 2rpx solid #e5e9ed;
1203 1235
       background: #f9fafb;
1236
+      display: flex;
1204 1237
 
1205 1238
       .btn1,
1206 1239
       .btn2 {
1207 1240
         height: 66rpx;
1208 1241
         flex: 1;
1242
+        margin:0 1%;
1209 1243
         background-image: linear-gradient(to right, #72c172, #3bb197);
1210 1244
         color: #fff;
1211 1245
         border-radius: 8rpx;

+ 2 - 2
pages/scanning_ins/scanning_ins.vue

@@ -301,7 +301,7 @@
301 301
             },
302 302
             "createDept": this.options.id,
303 303
             "patient": {
304
-              "patientCode": this.options.code
304
+              "patientCode": this.infoDATA.patientCode
305 305
             },
306 306
             "worker": {
307 307
               "id": userId
@@ -343,7 +343,7 @@
343 343
             },
344 344
             "createDept": this.currentStartDept.id,
345 345
             "patient": {
346
-              "patientCode": this.options.code
346
+              "patientCode": this.infoDATA.patientCode
347 347
             },
348 348
             "worker": {
349 349
               "id": userId

+ 375 - 0
pages/specimenChecking/specimenChecking.vue

@@ -0,0 +1,375 @@
1
+<template>
2
+  <view class="Receipt_infopage">
3
+    <view class="title">请您确认一下科室标本数量!</view>
4
+    <view class="page_item_wrap" v-for="item in msg.deptDataList" :key="item[0]">
5
+      <view class="page_item">
6
+        <view class="page_item_top">
7
+          <view class="page_item_top-inner">
8
+            <view class="page_item_top_L">
9
+              <view class="L_text">{{item[1]}}</view>
10
+            </view>
11
+            <view class="page_item_top_R">
12
+              <view class="L_iocn"></view>
13
+            </view>
14
+          </view>
15
+        </view>
16
+        <view class="page_item_cont">
17
+          <view class="page_item_cont_T">
18
+            <view class="page_item_cont_title">
19
+              <view>
20
+                标本数量
21
+              </view>
22
+              <view class="text_big">{{item[2]}}</view>
23
+            </view>
24
+          </view>
25
+        </view>
26
+        <view class="L"></view>
27
+        <view class="R"></view>
28
+      </view>
29
+      <view class="L-l"></view>
30
+      <view class="R-l"></view>
31
+    </view>
32
+    <view class="foot_btn2">
33
+      <view class="btn2" @click="createOrder">确认数量并建单</view>
34
+      <view class="btn2" @click="goto()">知道了</view>
35
+    </view>
36
+  </view>
37
+</template>
38
+<script>
39
+  import {
40
+    get,
41
+    webHandle
42
+  } from "../../http/http.js";
43
+  export default {
44
+    data() {
45
+      return {
46
+        msg: {}, //页面展示信息
47
+        targetDeptShow: [], //目标科室
48
+      };
49
+    },
50
+    methods: {
51
+      // 知道了
52
+      goto() {
53
+        uni.navigateTo({
54
+          url: `../../pages/receiptpage/receiptpage`,
55
+        });
56
+      },
57
+      // 新建工单并签到
58
+      createOrder() {
59
+        get(`/workerOrder/createQuickOrder/${this.msg.id}`, {}).then((res) => {
60
+          console.log(res)
61
+          if (res.status == 200) {
62
+            if (res.type === 'plan-spe-ddd-2') {
63
+              //需要扫描标本
64
+              uni.navigateTo({
65
+                url: `../../pages/scanning_code/scanning_code?type=${res.associationTypeName}&type1=${res.type}&id=${res.id}&deptCode=${res.deptCode}&dept=${res.deptName}&accountObj=undefined`,
66
+              });
67
+            } else {
68
+              uni.navigateTo({
69
+                url: "../receiptpage/receiptpage",
70
+              });
71
+            }
72
+          } else {
73
+            uni.showToast({
74
+              icon: "none",
75
+              title: "请求失败!",
76
+            });
77
+          }
78
+        });
79
+      },
80
+    },
81
+    onLoad(options) {
82
+      console.log(options, "快捷建单");
83
+      this.msg = JSON.parse(options.infoDATA);
84
+      this.targetDeptShow = this.msg.targetDeptShow.split(",");
85
+      // #ifdef APP-PLUS
86
+      webHandle("no", "app");
87
+      // #endif
88
+      // #ifdef H5
89
+      webHandle("no", "wx");
90
+      // #endif
91
+    },
92
+  };
93
+</script>
94
+<style lang="less">
95
+  .Receipt_infopage {
96
+    padding-bottom: 100rpx;
97
+    .title {
98
+      font-size: 48rpx;
99
+      margin-top: 24rpx;
100
+      margin-bottom: 24rpx;
101
+      text-align: center;
102
+    }
103
+
104
+    .page_item_wrap {
105
+      width: 100%;
106
+      height: auto;
107
+      box-sizing: border-box;
108
+      position: relative;
109
+      margin-bottom: 16rpx;
110
+
111
+      .page_item {
112
+        margin-top: 16rpx;
113
+        margin-bottom: 124rpx;
114
+        background: #fff;
115
+        border-radius: 8rpx;
116
+        margin: 0 20rpx;
117
+        border: 2rpx solid #e5e9ed;
118
+        position: relative;
119
+        overflow: hidden;
120
+        padding: 0 16rpx;
121
+
122
+        .L {
123
+          width: 40rpx;
124
+          height: 40rpx;
125
+          border-radius: 50%;
126
+          background: #f9fafb;
127
+          position: absolute;
128
+          left: -20rpx;
129
+          top: 68rpx;
130
+          border: 2rpx solid #e5e9ed;
131
+        }
132
+
133
+        .R {
134
+          width: 40rpx;
135
+          height: 40rpx;
136
+          border-radius: 50%;
137
+          background: #f9fafb;
138
+          position: absolute;
139
+          float: right;
140
+          right: -20rpx;
141
+          top: 68rpx;
142
+          border: 2rpx solid #e5e9ed;
143
+        }
144
+
145
+        .starting {
146
+          width: 50rpx;
147
+          height: 50rpx;
148
+          color: #fff;
149
+          background: #49b856;
150
+          display: inline-block;
151
+          border-radius: 50%;
152
+          text-align: center;
153
+          line-height: 46rpx;
154
+          font-size: 32rpx;
155
+          margin-right: 6rpx;
156
+        }
157
+
158
+        .End {
159
+          width: 50rpx;
160
+          height: 50rpx;
161
+          color: #fff;
162
+          background: #39b199;
163
+          display: inline-block;
164
+          border-radius: 50%;
165
+          text-align: center;
166
+          line-height: 46rpx;
167
+          font-size: 32rpx;
168
+          margin-right: 6rpx;
169
+        }
170
+
171
+        .page_item_top {
172
+          height: 88rpx;
173
+          border-bottom: 2rpx dashed #e5e9ed;
174
+          padding: 0 16rpx;
175
+
176
+          .page_item_top-inner {
177
+            display: flex;
178
+            justify-content: space-between;
179
+            align-items: center;
180
+            height: 100%;
181
+
182
+            .page_item_top_L {
183
+              .emergencys {
184
+                background: #ff3b53 !important;
185
+                width: 124rpx !important;
186
+              }
187
+
188
+              .emergency {
189
+                background: #ff3b53 !important;
190
+              }
191
+
192
+              .emergency1 {
193
+                background: #49b856 !important;
194
+              }
195
+
196
+              .page_item_cont_start {
197
+                text-align: center;
198
+                height: 44rpx;
199
+                width: 104rpx;
200
+                line-height: 44rpx;
201
+                border-radius: 8rpx;
202
+                background: #49b856;
203
+                color: #fff;
204
+                display: inline-block;
205
+              }
206
+
207
+              .L_time {
208
+                color: #6cc076;
209
+                font-size: 32rpx;
210
+              }
211
+
212
+              .L_text {
213
+                font-size: 32rpx;
214
+                font-weight: 700;
215
+              }
216
+            }
217
+
218
+            .page_item_top_R {
219
+              font-size: 32rpx;
220
+
221
+              .L_iocn {
222
+                color: rgb(7, 134, 60);
223
+                font-size: 36rpx;
224
+                font-weight: 700;
225
+              }
226
+            }
227
+          }
228
+        }
229
+
230
+        .page_item_cont {
231
+          min-height: 90rpx;
232
+          padding: 0 16rpx;
233
+          text-align: left;
234
+          position: relative;
235
+
236
+          .text_big {
237
+            font-size: 32rpx;
238
+            font-weight: 700;
239
+            margin-top: 10rpx;
240
+
241
+            p {
242
+              font-weight: 700;
243
+              line-height: 1.5;
244
+            }
245
+          }
246
+
247
+          .page_item_cont_T {
248
+            padding-top: 28rpx;
249
+            font-size: 28rpx;
250
+
251
+            .page_item_cont_title {
252
+              height: 100%;
253
+              font-size: 32rpx;
254
+              display: flex;
255
+              justify-content: space-between;
256
+            }
257
+          }
258
+
259
+          .page_item_cont_B {
260
+            padding-top: 28rpx;
261
+            margin-bottom: 28rpx;
262
+
263
+            .page_item_cont_title {
264
+              font-size: 32rpx;
265
+              display: flex;
266
+              justify-content: space-between;
267
+            }
268
+
269
+            .page_item_cont_title1 {
270
+              height: 60rpx;
271
+              line-height: 60rpx;
272
+              font-size: 32rpx;
273
+              padding-left: 64rpx;
274
+            }
275
+          }
276
+        }
277
+
278
+        .page_item_foot {
279
+          border-top: 2rpx dashed #e5e9ed;
280
+          border-bottom: 2rpx dashed #e5e9ed;
281
+          padding: 28rpx 16rpx;
282
+          text-align: left;
283
+
284
+          .page_item_foot_text {
285
+            font-size: 32rpx;
286
+            margin-bottom: 20rpx;
287
+
288
+            .text1 {
289
+              color: rgb(102, 102, 102);
290
+            }
291
+
292
+            .text2 {
293
+              float: right;
294
+              font-weight: 700;
295
+            }
296
+          }
297
+        }
298
+
299
+        #infos {
300
+          display: none;
301
+        }
302
+
303
+        .page_item_infos {
304
+          padding-bottom: 20rpx;
305
+          border-bottom: 2rpx dashed #e5e9ed;
306
+
307
+          .page_item_info2 {
308
+            text-align: left;
309
+            line-height: 60rpx;
310
+            font-size: 32rpx;
311
+            padding-left: 16rpx;
312
+
313
+            .page_item_foot_text {
314
+              font-size: 32rpx;
315
+              margin-bottom: 20rpx;
316
+
317
+              .text1 {
318
+                color: rgb(102, 102, 102);
319
+              }
320
+
321
+              .text2 {
322
+                float: right;
323
+                font-weight: 700;
324
+              }
325
+            }
326
+          }
327
+        }
328
+      }
329
+
330
+      .L-l {
331
+        width: 2rpx;
332
+        height: 40rpx;
333
+        background: #f9fafb;
334
+        position: absolute;
335
+        left: 20rpx;
336
+        top: 72rpx;
337
+      }
338
+
339
+      .R-l {
340
+        width: 2rpx;
341
+        height: 40rpx;
342
+        background: #f9fafb;
343
+        position: absolute;
344
+        right: 20rpx;
345
+        top: 72rpx;
346
+      }
347
+    }
348
+
349
+    .foot_btn2 {
350
+      position: fixed;
351
+      bottom: 0;
352
+      width: 100vw;
353
+      padding: 0 20rpx;
354
+      box-sizing: border-box;
355
+      line-height: 66rpx;
356
+      height: 100rpx;
357
+      border-top: 2rpx solid #e5e9ed;
358
+      background: #f9fafb;
359
+      text-align: center;
360
+      display: flex;
361
+      justify-content: center;
362
+      align-items: center;
363
+
364
+      .btn2 {
365
+        height: 66rpx;
366
+        flex: 1;
367
+        margin: 16rpx 16rpx 0;
368
+        background-image: linear-gradient(to right, #72c172, #3bb197);
369
+        color: #fff;
370
+        border-radius: 8rpx;
371
+        font-size: 32rpx;
372
+      }
373
+    }
374
+  }
375
+</style>