seimin vor 2 Jahren
Ursprung
Commit
a5bf1227e9

+ 4 - 0
App.vue

@@ -134,6 +134,10 @@
134 134
     color: red !important;
135 135
   }
136 136
 
137
+  .fweight {
138
+    font-weight: bold !important;
139
+  }
140
+
137 141
   .f30 {
138 142
     font-size: 30rpx !important;
139 143
   }

+ 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.11');
7
+console.info('v2.4.12');
8 8
 Vue.prototype.wx = wx //声明扫码
9 9
 Vue.prototype.audios = [] //待播放的语音集合
10 10
 // #endif

+ 18 - 0
pages.json

@@ -228,6 +228,24 @@
228 228
         },
229 229
         "enablePullDownRefresh": true
230 230
       }
231
+    }, {
232
+      "path": "pages/checkAfterScanning/checkAfterScanning",
233
+      "style": {
234
+        "h5": {
235
+          "titleNView": false
236
+        },
237
+        "enablePullDownRefresh": false
238
+      }
239
+
240
+    }, {
241
+      "path": "pages/checkAfterBigScreen/checkAfterBigScreen",
242
+      "style": {
243
+        "h5": {
244
+          "titleNView": false
245
+        },
246
+        "enablePullDownRefresh": false
247
+      }
248
+
231 249
     }
232 250
   ],
233 251
   "globalStyle": {

+ 316 - 0
pages/checkAfterBigScreen/checkAfterBigScreen.vue

@@ -0,0 +1,316 @@
1
+<template>
2
+  <view class="checkAfterScanning">
3
+    <view class="checkAfterScanning_title">标本核对</view>
4
+    <view class="page_item_cont">
5
+      <view class="page_item_cont_T">
6
+        <view class="page_item_cont_title">
7
+          <view> 工单数量 </view>
8
+          <view class="text_big">{{info.gdNum}}</view>
9
+        </view>
10
+        <view class="page_item_cont_title">
11
+          <view> 标本总数 </view>
12
+          <view class="text_big" @click="goToSpeDetail()"><text class="underline">{{info.total}}</text>只</view>
13
+        </view>
14
+        <view class="page_item_cont_title">
15
+          <view> 临床科室 </view>
16
+          <view class="text_big">{{info.LCDept}}</view>
17
+        </view>
18
+        <view class="page_item_cont_title2">
19
+          检验科室标本数量:
20
+        </view>
21
+        <view class="page_item_cont_title" v-for="(item, i) in info.data" :key="i">
22
+          <view>{{item[1]}}</view>
23
+          <view class="text_big" @click="goToSpeDetail(item[1],item[2])"><text class="underline">{{item[3]}}</text>只
24
+          </view>
25
+        </view>
26
+      </view>
27
+    </view>
28
+    <view class="foot_btn_spe">
29
+      <view class="btn1" @click="allStart()">核对完成</view>
30
+      <view class="btn3" @click="goBack">取消</view>
31
+    </view>
32
+    <!-- 填写交接人账号弹窗 -->
33
+    <selectAccount v-if="hosModels.disjunctor" :title="hosModels.title" :disjunctor="hosModels.disjunctor" @ok="hosOk"
34
+      @cancel="hosCancel">
35
+    </selectAccount>
36
+  </view>
37
+</template>
38
+<script>
39
+  import {
40
+    get,
41
+    post,
42
+    SM,
43
+    webHandle
44
+  } from "../../http/http.js";
45
+  export default {
46
+    data() {
47
+      return {
48
+        // 填写交接人账号弹窗model
49
+        hosModels: {
50
+          disjunctor: false,
51
+        },
52
+        info: {},
53
+        queryObj: {}, //路由传递过来的数据
54
+      };
55
+    },
56
+    methods: {
57
+      // 填写交接人账号-确认
58
+      hosOk(data) {
59
+        console.log(data);
60
+        const {
61
+          accountName,
62
+          account,
63
+          accountId
64
+        } = data;
65
+        if (!accountName && !account) {
66
+          //没有填写交接人
67
+          uni.showModal({
68
+            title: "提示",
69
+            content: "请填写交接人账号!",
70
+            showCancel: false,
71
+            success: function(res) {
72
+              if (res.confirm) {
73
+                console.log("用户点击确定");
74
+              } else if (res.cancel) {
75
+                console.log("用户点击取消");
76
+              }
77
+            },
78
+          });
79
+          return;
80
+        } else if ((!accountName && account) || (accountName && !account)) {
81
+          //没有填写交接人
82
+          uni.showModal({
83
+            title: "提示",
84
+            content: "请填写正确的交接人账号!",
85
+            showCancel: false,
86
+            success: function(res) {
87
+              if (res.confirm) {
88
+                console.log("用户点击确定");
89
+              } else if (res.cancel) {
90
+                console.log("用户点击取消");
91
+              }
92
+            },
93
+          });
94
+          return;
95
+        }
96
+        this.hosModels.disjunctor = false;
97
+        this.orderDeptHandler(false, data);
98
+      },
99
+      // 填写交接人账号-取消
100
+      hosCancel() {
101
+        this.hosModels.disjunctor = false;
102
+      },
103
+      // 填写交接人账号弹窗
104
+      showSelectAccount() {
105
+        this.hosModels = {
106
+          title: "填写交接人账号",
107
+          disjunctor: true,
108
+        };
109
+      },
110
+      // 获取核对信息
111
+      getInfo(gdIds) {
112
+        gdIds = JSON.parse(gdIds).toString();
113
+        uni.showLoading({
114
+          title: '加载中',
115
+          mask: true
116
+        });
117
+        let postData = {
118
+          gdIds,
119
+          trueBigScanner:['666'],
120
+        };
121
+        post("/api/specimensCheck", postData).then((res) => {
122
+          uni.hideLoading();
123
+          if (res.status == 200) {
124
+            console.log(res)
125
+            res.LCDept = res.LCDept.join(',');
126
+            this.info = res;
127
+          } else {
128
+            uni.showToast({
129
+              icon: "none",
130
+              title: "请求失败!",
131
+            });
132
+          }
133
+        })
134
+      },
135
+      // 取消
136
+      goBack() {
137
+        uni.navigateTo({
138
+          url: "../receiptpage/receiptpage",
139
+        });
140
+      },
141
+      // 跳转到已扫描标本详情页
142
+      goToSpeDetail(deptName='', qrCode='') {
143
+        uni.navigateTo({
144
+          url: `../noScanSpecimen/noScanSpecimen?deptName=${deptName}&workOrderId=${this.queryObj.ids}&deptCode=${qrCode}&isScan=1&specimensCheck=1&noScan=1`,
145
+        });
146
+      },
147
+      //核对完成
148
+      allStart() {
149
+        this.orderDeptHandler(true);
150
+      },
151
+      //科室签到
152
+      //bigScanner----判断是否需要交接人
153
+      //accountObj----弹窗填写的交接人信息
154
+      orderDeptHandler(bigScanner, accountObj) {
155
+        let type = "orderSign/" + this.queryObj.code;
156
+        let list = {
157
+          ids: JSON.parse(this.queryObj.ids),
158
+        };
159
+        bigScanner && (list.bigScanner = ['666']);
160
+        if (accountObj) {
161
+          list.handover = [accountObj.accountId];
162
+        }
163
+        uni.showLoading({
164
+          title: "加载中",
165
+          mask: true,
166
+        });
167
+        post("/workerOrder/" + type, list).then((res) => {
168
+          uni.hideLoading();
169
+          if (res.status == 200) {
170
+            uni.navigateTo({
171
+              url: "../receiptpage/receiptpage",
172
+            });
173
+          } else if (res.status == "0000") {
174
+            this.showSelectAccount();
175
+          } else {
176
+            this.flag = true;
177
+            uni.navigateTo({
178
+              url: `../scanning_djEnd/scanning_djEnd?type=specimen&type1=${
179
+              res.type
180
+            }&code=${this.queryObj.code}&dept=${res.dept}&ids=${this.queryObj.ids}&model=${encodeURIComponent(JSON.stringify(res))}&deptId=${res.deptId}`,
181
+            });
182
+          }
183
+        });
184
+      },
185
+    },
186
+    onLoad(options) {
187
+      console.log(options);
188
+      this.queryObj = options;
189
+      this.getInfo(this.queryObj.ids);
190
+      // #ifdef APP-PLUS
191
+      webHandle("no", "app");
192
+      // #endif
193
+      // #ifdef H5
194
+      webHandle("no", "wx");
195
+      // #endif
196
+    },
197
+  };
198
+</script>
199
+<style lang="less" scoped>
200
+  .checkAfterScanning {
201
+    .checkAfterScanning_title {
202
+      padding: 50rpx 0;
203
+      font-size: 46rpx;
204
+      font-weight: 550;
205
+      text-align: center;
206
+      border-bottom: 1px solid #ccc;
207
+    }
208
+
209
+    .page_item_cont {
210
+      min-height: 90rpx;
211
+      padding: 0 20rpx;
212
+      text-align: left;
213
+      position: relative;
214
+
215
+      .text_big {
216
+        font-size: 32rpx;
217
+        font-weight: 700;
218
+        margin-top: 10rpx;
219
+
220
+        .underline {
221
+          text-decoration: underline;
222
+        }
223
+      }
224
+
225
+      .page_item_cont_T {
226
+        padding-top: 28rpx;
227
+        padding-bottom: 28rpx;
228
+        font-size: 28rpx;
229
+
230
+        .page_item_cont_title {
231
+          height: 100%;
232
+          font-size: 32rpx;
233
+          display: flex;
234
+          justify-content: space-between;
235
+          align-items: center;
236
+        }
237
+
238
+        .page_item_cont_title2 {
239
+          margin-top: 36rpx;
240
+          margin-bottom: 18rpx;
241
+          height: 100%;
242
+          font-size: 32rpx;
243
+          font-weight: bold;
244
+          display: flex;
245
+          align-items: center;
246
+        }
247
+      }
248
+
249
+      .page_item_cont_B {
250
+        padding-top: 28rpx;
251
+        margin-bottom: 28rpx;
252
+
253
+        .page_item_cont_title {
254
+          font-size: 32rpx;
255
+          display: flex;
256
+          justify-content: space-between;
257
+        }
258
+
259
+        .page_item_cont_title1 {
260
+          height: 60rpx;
261
+          line-height: 60rpx;
262
+          font-size: 32rpx;
263
+          padding-left: 64rpx;
264
+        }
265
+      }
266
+    }
267
+
268
+    .foot_btn {
269
+      line-height: 88rpx;
270
+      height: 100rpx;
271
+      margin-top: 40rpx;
272
+      display: flex;
273
+      justify-content: center;
274
+
275
+      .btn1,
276
+      .btn2,
277
+      .btn3 {
278
+        height: 88rpx;
279
+        flex: 1;
280
+        margin: 0 1%;
281
+        background-image: linear-gradient(to right, #72c172, #3bb197);
282
+        color: #fff;
283
+        border-radius: 8rpx;
284
+        font-size: 32rpx;
285
+        margin-top: 16rpx;
286
+        text-align: center;
287
+      }
288
+    }
289
+
290
+    .foot_btn_spe {
291
+      line-height: 88rpx;
292
+      height: 100rpx;
293
+      margin-top: 40rpx;
294
+      text-align: center;
295
+      display: flex;
296
+      justify-content: space-between;
297
+      flex-wrap: wrap;
298
+
299
+      &::after {
300
+        content: '';
301
+        flex: 1;
302
+      }
303
+
304
+      view {
305
+        height: 88rpx;
306
+        width: 48%;
307
+        margin: 0 1%;
308
+        background-image: linear-gradient(to right, #72c172, #3bb197);
309
+        color: #fff;
310
+        border-radius: 8rpx;
311
+        font-size: 32rpx;
312
+        margin-top: 16rpx;
313
+      }
314
+    }
315
+  }
316
+</style>

+ 412 - 0
pages/checkAfterScanning/checkAfterScanning.vue

@@ -0,0 +1,412 @@
1
+<template>
2
+  <view class="checkAfterScanning">
3
+    <view class="checkAfterScanning_title">标本核对</view>
4
+    <view class="page_item_cont">
5
+      <view class="page_item_cont_T">
6
+        <view class="page_item_cont_title">
7
+          <view> 工单单号 </view>
8
+          <view class="text_big">{{info.gdCode}}</view>
9
+        </view>
10
+        <view class="page_item_cont_title">
11
+          <view> 科室名称 </view>
12
+          <view class="text_big">{{info.startDept}}</view>
13
+        </view>
14
+        <view class="page_item_cont_title">
15
+          <view> 扫描标本数量 </view>
16
+          <view class="text_big" @click="goToSpeDetail()"><text class="underline">{{info.total}}</text>只</view>
17
+        </view>
18
+        <view class="page_item_cont_title2">
19
+          检验科室标本数量:
20
+        </view>
21
+        <view class="page_item_cont_title" v-for="(item, i) in info.data" :key="i">
22
+          <view>{{item[1]}}</view>
23
+          <view class="text_big" @click="goToSpeDetail(item[1],item[2])"><text class="underline">{{item[3]}}</text>只</view>
24
+        </view>
25
+      </view>
26
+    </view>
27
+    <view class="foot_btn_spe">
28
+      <view class="btn1" @click="Scanning_complete()">核对完成</view>
29
+      <view class="btn3" @click="goBack">返回</view>
30
+    </view>
31
+    <!-- 弹窗 -->
32
+    <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
33
+      @ok="ok" @cancel="cancel" :operate="models.operate"></showModel>
34
+    <!-- 弹窗 -->
35
+    <showModel :title="models2.title" :icon="models2.icon" :disjunctor="models2.disjunctor" :content="models2.content"
36
+      @ok="ok2" @know="know2" @cancel="cancel2" :operate="models2.operate"></showModel>
37
+  </view>
38
+</template>
39
+<script>
40
+  import {
41
+    get,
42
+    post,
43
+    SM,
44
+    webHandle
45
+  } from "../../http/http.js";
46
+  export default {
47
+    data() {
48
+      return {
49
+        info: {},
50
+        wcFlag: false,
51
+        queryObj: {}, //路由传递过来的数据
52
+        // 弹窗model
53
+        models: {
54
+          disjunctor: false,
55
+        },
56
+        // 完成扫描弹窗model1
57
+        models2: {
58
+          disjunctor: false,
59
+        },
60
+      };
61
+    },
62
+    methods: {
63
+      // 获取核对信息
64
+      getInfo(gdId){
65
+        uni.showLoading({
66
+          title: '加载中',
67
+          mask: true
68
+        });
69
+        post("/api/specimensCheck", {gdIds:gdId}).then((res) => {
70
+          uni.hideLoading();
71
+          if (res.status == 200) {
72
+            console.log(res)
73
+            this.info = res;
74
+          } else {
75
+            uni.showToast({
76
+              icon: "none",
77
+              title: "请求失败!",
78
+            });
79
+          }
80
+        })
81
+      },
82
+      // 返回
83
+      goBack() {
84
+        uni.navigateBack();
85
+      },
86
+      // 完成核对
87
+      Scanning_complete() {
88
+        if (
89
+          this.queryObj.type1 == "plan-spe-ddd-2" ||
90
+          this.queryObj.type1 == "spe-ddd-2"
91
+        ) {
92
+          this.wcFlag = true;
93
+          this.models = {
94
+            disjunctor: true,
95
+            title: "提示",
96
+            content: "是否确定标本已核对完成?",
97
+            icon: "warn",
98
+            operate: {
99
+              ok: "确定",
100
+              cancel: "取消",
101
+            },
102
+          };
103
+        } else if (
104
+          this.queryObj.type1 == "plan-spe-dsd-2" ||
105
+          this.queryObj.type1 == "plan-spe-dsd-3" ||
106
+          this.queryObj.type1 == "spe-dsd-2" ||
107
+          this.queryObj.type1 == "spe-dsd-3"
108
+        ) {
109
+          this.wcFlag = false;
110
+          this.models = {
111
+            disjunctor: true,
112
+            title: "提示",
113
+            content: "是否确定标本已核对完成?",
114
+            icon: "warn",
115
+            operate: {
116
+              ok: "确定",
117
+              cancel: "取消",
118
+            },
119
+          };
120
+        } else {
121
+          this.gotoOver();
122
+        }
123
+      },
124
+      // 跳转完成工单页面
125
+      gotoOver() {
126
+        uni.navigateTo({
127
+          url: `../scanning/scanning?type=${this.queryObj.type}&type1=${
128
+            this.queryObj.type1
129
+          }&id=${encodeURIComponent(JSON.stringify([this.queryObj.id]))}&deptCode=${
130
+            this.queryObj.deptCode
131
+          }&dept=${this.queryObj.dept}&speNum=${this.queryObj.speNum}&content=${this.queryObj.content}`,
132
+        });
133
+      },
134
+      // 确定
135
+      ok() {
136
+        this.models.disjunctor = false;
137
+        let postData = {
138
+          ids: [this.queryObj.id],
139
+          sign: true,
140
+          deptQrCode: this.queryObj.deptCode
141
+        };
142
+        uni.showLoading({
143
+          title: '加载中',
144
+          mask: true
145
+        });
146
+        post("/workerOrder/expectedAndActual", postData).then((ress) => {
147
+          uni.hideLoading();
148
+          if (ress.status == 200) {
149
+            if (this.wcFlag) {
150
+              //正常完成扫描
151
+              this.overFinish()
152
+            } else {
153
+              this.gotoOver();
154
+            }
155
+          } else if (ress.status == 1000035) {
156
+            let content = '';
157
+            if (this.queryObj.type1 === 'spe-ddd-2' || this.queryObj.type1 === 'plan-spe-ddd-2') {
158
+              //待到达
159
+              content =
160
+                `系统内预计标本<strong class="red">${ress.expectReceiveNum}</strong>只,您扫描收取标本<strong class="red">${ress.actualReceiveNum}</strong>只,其中<strong class="red">${ress.notReceiveNum}</strong>只未扫描;`;
161
+            } else {
162
+              //待送达
163
+              this.content =
164
+                `本工单已签到<strong class="red">${ress.scanSet?ress.scanSet.join('、'):''}</strong>,剩余需签到科室<strong class="red">${ress.notScanSet?ress.notScanSet.join('、'):''}</strong>,总签收<strong class="red">${ress.totalAcceptance}</strong>只,剩余<strong class="red">${ress.notAcceptance}</strong>只未签收,您确定完成工单吗?`;
165
+              content =
166
+                `您在<strong class="red">${ress.deptName}</strong>检验科扫描了<strong class="red">${ress.deptScanNum}</strong>个标本,还需扫描<strong class="red">${ress.deptNotScanNum}</strong>标本。`;
167
+            }
168
+            this.models2 = {
169
+              disjunctor: true,
170
+              title: "提示",
171
+              content,
172
+              icon: "warn",
173
+              operate: {
174
+                ok: "确定",
175
+                cancel: "取消",
176
+              },
177
+            };
178
+          } else {
179
+            uni.showToast({
180
+              icon: "none",
181
+              title: "请求失败!",
182
+            });
183
+          }
184
+        })
185
+      },
186
+      // 取消
187
+      cancel() {
188
+        this.models.disjunctor = false;
189
+      },
190
+      // 确定
191
+      ok2() {
192
+        this.models2.disjunctor = false;
193
+        let postData = {
194
+          ids: [this.queryObj.id],
195
+          deptQrCode: this.queryObj.deptCode
196
+        };
197
+        uni.showLoading({
198
+          title: '加载中',
199
+          mask: true
200
+        });
201
+        post("/workerOrder/expectedAndActual", postData).then((ress) => {
202
+          uni.hideLoading();
203
+          if (ress.status == 200) {
204
+            if (this.wcFlag) {
205
+              this.overFinish()
206
+            } else {
207
+              this.gotoOver();
208
+            }
209
+          } else {
210
+            uni.showToast({
211
+              icon: "none",
212
+              title: "请求失败!",
213
+            });
214
+          }
215
+        })
216
+      },
217
+      // 取消
218
+      cancel2() {
219
+        this.models2.disjunctor = false;
220
+      },
221
+      know2() {
222
+        this.models2.disjunctor = false;
223
+        uni.navigateTo({
224
+          url: "../receiptpage/receiptpage",
225
+        });
226
+      },
227
+      // 正常完成扫描
228
+      overFinish() {
229
+        let data = {
230
+          type: this.queryObj.type1,
231
+          ids: [this.queryObj.id],
232
+        };
233
+        //只要是标本轮巡1对多或者多对多
234
+        // plan-spe-dsd-2  1对多
235
+        // plan-spe-dsd-3  多对多
236
+        if (
237
+          this.queryObj.type1 === "plan-spe-ddd-2" ||
238
+          this.queryObj.type1 === "plan-spe-dsd-2" ||
239
+          this.queryObj.type1 === "plan-spe-dsd-3"
240
+        ) {
241
+          post("/workerOrder/finishPlanSpes", data).then((res) => {
242
+            // uni.hideLoading()
243
+            if (res.status == 200) {
244
+              this.models2 = {
245
+                disjunctor: true,
246
+                title: "提示",
247
+                content: `完成扫描成功`,
248
+                icon: "success",
249
+                operate: {
250
+                  know: "知道了",
251
+                },
252
+              };
253
+            } else {
254
+              uni.showToast({
255
+                icon: "none",
256
+                title: "请求失败!",
257
+              });
258
+            }
259
+          });
260
+        } else {
261
+          post("/workerOrder/finishSpes", data).then((res) => {
262
+            // uni.hideLoading()
263
+            if (res.status == 200) {
264
+              uni.navigateTo({
265
+                url: "../receiptpage/receiptpage",
266
+              });
267
+            } else {
268
+              uni.showToast({
269
+                icon: "none",
270
+                title: "请求失败!",
271
+              });
272
+            }
273
+          });
274
+        }
275
+      },
276
+      // 跳转到已扫描标本详情页
277
+      goToSpeDetail(deptName='', qrCode=''){
278
+        uni.navigateTo({
279
+          url: `../noScanSpecimen/noScanSpecimen?deptName=${deptName}&workOrderId=${encodeURIComponent(JSON.stringify([this.queryObj.id]))}&deptCode=${qrCode}&isScan=1&specimensCheck=1`,
280
+        });
281
+      }
282
+    },
283
+    onLoad(options) {
284
+      console.log(options);
285
+      this.queryObj = options;
286
+      this.getInfo(this.queryObj.id);
287
+      // #ifdef APP-PLUS
288
+      webHandle("no", "app");
289
+      // #endif
290
+      // #ifdef H5
291
+      webHandle("no", "wx");
292
+      // #endif
293
+    },
294
+  };
295
+</script>
296
+<style lang="less" scoped>
297
+  .checkAfterScanning {
298
+    .checkAfterScanning_title {
299
+      padding: 50rpx 0;
300
+      font-size: 46rpx;
301
+      font-weight: 550;
302
+      text-align: center;
303
+      border-bottom: 1px solid #ccc;
304
+    }
305
+
306
+    .page_item_cont {
307
+      min-height: 90rpx;
308
+      padding: 0 20rpx;
309
+      text-align: left;
310
+      position: relative;
311
+
312
+      .text_big {
313
+        font-size: 32rpx;
314
+        font-weight: 700;
315
+        margin-top: 10rpx;
316
+        
317
+        .underline{
318
+          text-decoration: underline;
319
+        }
320
+      }
321
+
322
+      .page_item_cont_T {
323
+        padding-top: 28rpx;
324
+        padding-bottom: 28rpx;
325
+        font-size: 28rpx;
326
+
327
+        .page_item_cont_title {
328
+          height: 100%;
329
+          font-size: 32rpx;
330
+          display: flex;
331
+          justify-content: space-between;
332
+          align-items: center;
333
+        }
334
+        .page_item_cont_title2{
335
+          margin-top: 36rpx;
336
+          margin-bottom: 18rpx;
337
+          height: 100%;
338
+          font-size: 32rpx;
339
+          font-weight: bold;
340
+          display: flex;
341
+          align-items: center;
342
+        }
343
+      }
344
+
345
+      .page_item_cont_B {
346
+        padding-top: 28rpx;
347
+        margin-bottom: 28rpx;
348
+
349
+        .page_item_cont_title {
350
+          font-size: 32rpx;
351
+          display: flex;
352
+          justify-content: space-between;
353
+        }
354
+
355
+        .page_item_cont_title1 {
356
+          height: 60rpx;
357
+          line-height: 60rpx;
358
+          font-size: 32rpx;
359
+          padding-left: 64rpx;
360
+        }
361
+      }
362
+    }
363
+
364
+    .foot_btn {
365
+      line-height: 88rpx;
366
+      height: 100rpx;
367
+      margin-top: 40rpx;
368
+      display: flex;
369
+      justify-content: center;
370
+
371
+      .btn1,
372
+      .btn2,
373
+      .btn3 {
374
+        height: 88rpx;
375
+        flex: 1;
376
+        margin: 0 1%;
377
+        background-image: linear-gradient(to right, #72c172, #3bb197);
378
+        color: #fff;
379
+        border-radius: 8rpx;
380
+        font-size: 32rpx;
381
+        margin-top: 16rpx;
382
+        text-align: center;
383
+      }
384
+    }
385
+
386
+    .foot_btn_spe {
387
+      line-height: 88rpx;
388
+      height: 100rpx;
389
+      margin-top: 40rpx;
390
+      text-align: center;
391
+      display: flex;
392
+      justify-content: space-between;
393
+      flex-wrap: wrap;
394
+
395
+      &::after {
396
+        content: '';
397
+        flex: 1;
398
+      }
399
+
400
+      view {
401
+        height: 88rpx;
402
+        width: 48%;
403
+        margin: 0 1%;
404
+        background-image: linear-gradient(to right, #72c172, #3bb197);
405
+        color: #fff;
406
+        border-radius: 8rpx;
407
+        font-size: 32rpx;
408
+        margin-top: 16rpx;
409
+      }
410
+    }
411
+  }
412
+</style>

+ 6 - 1
pages/my_list/my_list.vue

@@ -112,7 +112,7 @@
112 112
               <text class="text1">完成时间</text>&nbsp;&nbsp;
113 113
               <text class="text1">{{ infoDATA.completeTime || '' }}</text>
114 114
             </view>
115
-            <view class="page_item_foot_text">
115
+            <view class="page_item_foot_text" @click.stop="goToDetail(infoDATA.id)">
116 116
               <text class="text1">扫描接收数量</text>&nbsp;&nbsp;
117 117
               <text class="text1 b">{{ infoDATA.actualReceiveNum || 0 }}</text>
118 118
             </view>
@@ -173,6 +173,11 @@
173 173
       showModel,
174 174
     },
175 175
     methods: {
176
+      goToDetail(id){
177
+        uni.navigateTo({
178
+          url: `../noScanSpecimen/noScanSpecimen?workOrderId=${encodeURIComponent(JSON.stringify([id]))}&isScan=1&specimensCheck=1&noScan=1`,
179
+        });
180
+      },
176 181
       //滚动距离
177 182
       scrollList(e) {
178 183
         this.scroll_t_old = e.detail.scrollTop;

+ 47 - 31
pages/noScanSpecimen/noScanSpecimen.vue

@@ -1,42 +1,41 @@
1 1
 <template>
2 2
   <view class="pharmacyDetails">
3
-    <view class="pharmacyDetails_title">{{isScan?'已':'未'}}扫描标本信息</view>
3
+    <view class="pharmacyDetails_title"><text v-if="queryObj.deptName">{{queryObj.deptName}}-</text>{{isScan?'已':'未'}}扫描标本信息</view>
4 4
     <view class="page_item footerOtherMargin">
5 5
       <view class="page_item_wrap" v-for="spe in specimens" :key="spe.id">
6 6
         <view class="page_item">
7 7
           <view class="page_item_top">
8 8
             <view class="page_item_top-inner">
9 9
               <view class="page_item_top_L">
10
-                <text class="L_text">标本类型:{{ spe.stype ? spe.stype.name : "" }}({{
11
-                  spe.urgent == 1 ? "急" : "普"
12
-                }})</text>
10
+                <view class="L_text">{{ spe.scode }}<text v-if="spe.stype">({{spe.stype.name}})</text></view>
11
+              </view>
12
+              <view class="page_item_top_R">
13
+                <text :style="{color:spe.urgent == 1?'red':'green'}">{{spe.urgent == 1 ? "急" : "普"}}</text>
13 14
               </view>
14
-              <view class="page_item_top_R"></view>
15 15
             </view>
16 16
           </view>
17 17
           <view class="page_item_cont">
18
-            <view class="page_item_cont_B">
18
+            <view class="page_item_cont_T">
19 19
               <view class="page_item_cont_title">
20
-                <text>标本编码</text>
21
-                <text class="text_big">
22
-                  <text>{{ spe.scode }}</text>
23
-                </text>
20
+                <view> 检验项目 </view>
21
+                <view class="text_big">{{ spe.specimenDesc || "无" }}</view>
24 22
               </view>
25
-            </view>
26
-            <view class="page_item_cont_C">
27
-              <view class="page_item_cont_title_C">
28
-                <text>患者姓名</text>
29
-                <text class="text_big">
30
-                  <text>{{ spe.patientName }}<text v-if="spe.bedNum">({{spe.bedNum}})</text></text>
31
-                </text>
23
+              <view class="page_item_cont_title">
24
+                <view> 患者姓名 </view>
25
+                <view class="text_big">{{ spe.patientName }}<text v-if="spe.bedNum">({{spe.bedNum}})</text></view>
32 26
               </view>
33
-            </view>
34
-            <view class="page_item_cont_C">
35
-              <view class="page_item_cont_title_C">
36
-                <text>目标科室</text>
37
-                <text class="text_big">
38
-                  <text>{{ spe.checkDept ? spe.checkDept.dept : "-" }}</text>
39
-                </text>
27
+              <view class="page_item_cont_title">
28
+                <view> 住院号 </view>
29
+                <view class="text_big">{{spe.residenceNo||'无'}}</text></view>
30
+              </view>
31
+              <view class="page_item_cont_title">
32
+                <view class="text_big">{{
33
+                  spe.sickRoom ? spe.sickRoom.dept : "无"
34
+                }}</view>
35
+                <text style="width: 4em;text-align: center;" class="icon_transport transport-arrow-right-full"></text>
36
+                <view class="text_big">{{
37
+                  spe.checkDept ? spe.checkDept.dept : "无"
38
+                }}</view>
40 39
               </view>
41 40
             </view>
42 41
           </view>
@@ -60,6 +59,7 @@
60 59
   export default {
61 60
     data() {
62 61
       return {
62
+        queryObj: {}, //路由传递过来的数据
63 63
         isScan: false,//true是已扫描标本,false是未扫描标本
64 64
         workOrderId: -1,
65 65
         deptCode: '',
@@ -71,15 +71,27 @@
71 71
       goBack() {
72 72
         uni.navigateBack();
73 73
       },
74
-      // 获取未扫描标本信息
74
+      // 获取已扫描或未扫描标本信息
75 75
       getNoScanSpecimen(isScan) {
76 76
         let postData = {
77 77
           gdIds: this.workOrderId,
78 78
           currentPage: 0,
79 79
           pageSize: 999,
80
-          deptQrCode: this.deptCode
81 80
         };
82
-        if(isScan){
81
+        
82
+        if(this.queryObj.specimensCheck){
83
+          //标本核对页面过来的
84
+          if(this.queryObj.deptName){
85
+            // 标本核对,已扫描总数
86
+            postData.deptQrCode = this.deptCode||undefined;
87
+            postData.specimensCheck = 1;
88
+          }
89
+        }else{
90
+          postData.deptQrCode = this.deptCode||undefined;
91
+        }
92
+        // 是否是已扫描
93
+        if(isScan && !this.queryObj.noScan){
94
+          // 显示已扫描,但添加scanned参数
83 95
           postData.scanned = 1;
84 96
         }
85 97
         uni.showLoading({
@@ -95,6 +107,8 @@
95 107
       },
96 108
     },
97 109
     onLoad(options) {
110
+      console.log(options);
111
+      this.queryObj = options;
98 112
       this.workOrderId = JSON.parse(options.workOrderId);
99 113
       this.deptCode = options.deptCode;
100 114
       this.isScan = Boolean(options.isScan);
@@ -190,8 +204,7 @@
190 204
         }
191 205
 
192 206
         .page_item_cont {
193
-          min-height: 180rpx;
194
-          max-height: 424rpx;
207
+          min-height: 90rpx;
195 208
           padding: 0 16rpx;
196 209
           text-align: left;
197 210
           position: relative;
@@ -199,8 +212,9 @@
199 212
           .text_big {
200 213
             font-size: 32rpx;
201 214
             font-weight: 700;
202
-
203
-            text {
215
+            margin-top: 10rpx;
216
+          
217
+            p {
204 218
               font-weight: 700;
205 219
               line-height: 1.5;
206 220
             }
@@ -217,6 +231,7 @@
217 231
 
218 232
           .page_item_cont_T {
219 233
             padding-top: 28rpx;
234
+            padding-bottom: 28rpx;
220 235
             font-size: 28rpx;
221 236
 
222 237
             .page_item_cont_title {
@@ -224,6 +239,7 @@
224 239
               font-size: 32rpx;
225 240
               display: flex;
226 241
               justify-content: space-between;
242
+              align-items: center;
227 243
             }
228 244
           }
229 245
 

+ 17 - 2
pages/receipt_infopage/receipt_infopage.vue

@@ -202,11 +202,20 @@
202 202
         <view>
203 203
           <text class="page_item_info_title">标本信息</text>
204 204
           <text class="text">
205
-            预计标本总数
205
+            预计接收
206 206
             <text class="page_item_info_txt">{{
207 207
               infoDATA.expectReceiveNum || 0
208 208
             }}</text>
209 209
           </text>
210
+          <text class="text"
211
+            v-if="infoDATA.gdState.value == 5 || infoDATA.gdState.value == 6 || infoDATA.gdState.value == 7">
212
+            扫描接收
213
+            <text class="page_item_info_txt">{{scanReception}}</text>
214
+          </text>
215
+          <text class="text" v-if="infoDATA.gdState.value == 6 || infoDATA.gdState.value == 7">
216
+            实际送达
217
+            <text class="page_item_info_txt">{{actualDelivery}}</text>
218
+          </text>
210 219
         </view>
211 220
         <view v-for="spe in infoDATA.specimenSet" :key="spe.id" class="spe_list">
212 221
           <view>
@@ -354,6 +363,8 @@
354 363
   export default {
355 364
     data() {
356 365
       return {
366
+        scanReception: 0,
367
+        actualDelivery: 0,
357 368
         currentUserId: 0,
358 369
         // 弹窗model
359 370
         models: {
@@ -623,6 +634,8 @@
623 634
         }).then((res) => {
624 635
           uni.hideLoading();
625 636
           if (res.state == 200) {
637
+            this.actualDelivery = res.actualDelivery;
638
+            this.scanReception = res.scanReception;
626 639
             this.infoDATA = res.data;
627 640
             // 计算高度
628 641
             setTimeout(() => {
@@ -941,6 +954,7 @@
941 954
           .page_item_info_txt {
942 955
             color: #49b856;
943 956
             margin-left: 8rpx;
957
+            margin-right: 8rpx;
944 958
           }
945 959
         }
946 960
       }
@@ -1032,7 +1046,8 @@
1032 1046
       display: flex;
1033 1047
       justify-content: space-between;
1034 1048
 
1035
-      .btn2,.btn3 {
1049
+      .btn2,
1050
+      .btn3 {
1036 1051
         height: 66rpx;
1037 1052
         flex: 1;
1038 1053
         margin: 0 1%;

+ 26 - 10
pages/scanning_Result/scanning_Result.vue

@@ -2,7 +2,10 @@
2 2
   <view class="Scanning_Result">
3 3
     <view class="Scanning_top" v-if="res.status == 200">
4 4
       <view class="Scanning_top_icon">
5
-        <text class="cubeic-ok icon_transport transport-duigou"></text>
5
+        <view v-if="type == 'specimenPlan' || type == 'specimen'">
6
+          <view class="red fweight speNum"> {{ speNum }} </view>
7
+        </view>
8
+        <text v-else class="cubeic-ok icon_transport transport-duigou"></text>
6 9
       </view>
7 10
       <view class="Scanning_top_text">
8 11
         <view class="text1"> 操作成功 </view>
@@ -26,13 +29,15 @@
26 29
         (res.status == 200 && type == 'specimenPlan') ||
27 30
         (res.status == 200 && type == 'specimen')
28 31
       ">
29
-      <view> 标本类型 : {{ infoDATA.stype.name || "-" }} </view>
30
-      <view> 标本编号 : {{ infoDATA.scode || "-" }} </view>
31
-      <view>检验科室 : {{ infoDATA.checkDept ? infoDATA.checkDept.dept : "-" }}</view>
32
+      <view>{{ infoDATA.stype.name }}({{infoDATA.scode}})</view>
32 33
       <view>检验项目 : {{ infoDATA.specimenDesc || "-" }}</view>
33
-      <view>患者姓名 : {{ infoDATA.patientName}}<text v-if="infoDATA.bedNum">({{infoDATA.bedNum}})</text></view>
34
-      <view>住院号 : {{infoDATA.residenceNo || "-"}}</view>
35
-      <view> 已扫描 : {{ speNum }} </view>
34
+      <view>
35
+        {{ infoDATA.sickRoom ? infoDATA.sickRoom.dept : "" }}
36
+        <text style="width: 4em;text-align: center;margin-left: 1em;margin-right: 1em;" class="icon_transport transport-arrow-right-full"></text>
37
+        {{ infoDATA.checkDept ? infoDATA.checkDept.dept : "" }}
38
+      </view>
39
+      <view>患者姓名 : {{ infoDATA.patientName}}({{infoDATA.bedNum}})</view>
40
+      <view>住院号 : {{ infoDATA.residenceNo || '-' }}</view>
36 41
     </view>
37 42
 
38 43
     <view class="Scanning_cont" v-if="
@@ -469,11 +474,11 @@
469 474
         this.gotoFlag = false;
470 475
         if(isScan){
471 476
           uni.navigateTo({
472
-            url: `../noScanSpecimen/noScanSpecimen?workOrderId=${encodeURIComponent(JSON.stringify([this.queryObj.id]))}&deptCode=${this.queryObj.deptCode}&isScan=1`,
477
+            url: `../noScanSpecimen/noScanSpecimen?deptName=${this.queryObj.dept}&workOrderId=${encodeURIComponent(JSON.stringify([this.queryObj.id]))}&deptCode=${this.queryObj.deptCode}&isScan=1`,
473 478
           });
474 479
         }else{
475 480
           uni.navigateTo({
476
-            url: `../noScanSpecimen/noScanSpecimen?workOrderId=${encodeURIComponent(JSON.stringify([this.queryObj.id]))}&deptCode=${this.queryObj.deptCode}`,
481
+            url: `../noScanSpecimen/noScanSpecimen?deptName=${this.queryObj.dept}&workOrderId=${encodeURIComponent(JSON.stringify([this.queryObj.id]))}&deptCode=${this.queryObj.deptCode}`,
477 482
           });
478 483
         }
479 484
       },
@@ -637,6 +642,13 @@
637 642
       },
638 643
       // 完成扫描
639 644
       Scanning_complete(id) {
645
+        // 如果是标本配送和标本轮巡,则进入标本核对页面
646
+        if((this.type === 'specimen' || this.type === 'specimenPlan') && this.queryObj.type1.includes('ddd')){
647
+          uni.navigateTo({
648
+            url: `../checkAfterScanning/checkAfterScanning?id=${id}&type=${this.queryObj.type}&type1=${this.queryObj.type1}&dept=${this.queryObj.dept}&deptId=${this.queryObj.deptId}&deptCode=${this.queryObj.deptCode}&speNum=${this.speNum}&content=${this.content}`,
649
+          });
650
+          return;
651
+        }
640 652
         this.wcId = id;
641 653
         if (
642 654
           this.queryObj.type1 == "plan-spe-ddd-2" ||
@@ -834,6 +846,11 @@
834 846
         margin-top: 116rpx;
835 847
         border-radius: 50%;
836 848
         line-height: 140rpx;
849
+        
850
+        .speNum{
851
+          text-align: center;
852
+          font-size: 140rpx;
853
+        }
837 854
 
838 855
         .cubeic-ok {
839 856
           font-size: 140rpx;
@@ -848,7 +865,6 @@
848 865
 
849 866
       .Scanning_top_text {
850 867
         .text1 {
851
-          margin-top: 40rpx;
852 868
           font-size: 48rpx;
853 869
           text-align: center;
854 870
         }

+ 47 - 17
pages/scanning_all/scanning_all.vue

@@ -267,12 +267,14 @@
267 267
         });
268 268
       },
269 269
       //科室签到
270
+      //trueBigScanner----判断是否大扫描
270 271
       //bigScanner----判断是否需要交接人
271 272
       //accountObj----弹窗填写的交接人信息
272 273
       orderDeptHandler(bigScanner, accountObj) {
273 274
         let type = "orderSign/" + this.code;
274 275
         let list = {
275
-          ids: this.userId.ids
276
+          ids: this.userId.ids,
277
+          trueBigScanner: ['666']
276 278
         };
277 279
         bigScanner && (list.bigScanner = ['666']);
278 280
         if (accountObj) {
@@ -283,6 +285,7 @@
283 285
           mask: true,
284 286
         });
285 287
         post("/workerOrder/" + type, list).then((res) => {
288
+          console.log(this.tabType)
286 289
           uni.hideLoading();
287 290
           if (res.status == 200) {
288 291
             if (this.tabType == "inspect" || this.tabType == "patientTransport") {
@@ -305,9 +308,10 @@
305 308
               )}&model=${encodeURIComponent(JSON.stringify(res))}`,
306 309
               });
307 310
             } else if (this.tabType == 'specimenPlan') {
311
+              // -----------------------------
308 312
               console.log(this.selectArr, '选中工单')
309 313
               let gd = this.infoDATA.specimenPlan.find(v => v.id == this.selectArr[0]);
310
-              let startDeptId = gd.startDept.id; //起点科室id liaomingming
314
+              let startDeptId = gd.startDept.id; //起点科室id
311 315
               let isDigitalHandover = gd.taskType.isDigitalHandover; //是否数字交接开关
312 316
               let signDeptId = res.deptId; //签到的科室id
313 317
               let gdId = gd.id;
@@ -315,13 +319,36 @@
315 319
               let endDepts = gd.endDepts.map(v => v.id).toString();
316 320
               uni.navigateTo({
317 321
                 url: `../scanning_djEnd/scanning_djEnd?type=${
318
-                this.tabType
319
-              }&type1=${res.type}&code=${this.code}&dept=${
320
-                res.dept
321
-              }&ids=${encodeURIComponent(
322
-                JSON.stringify(this.userId.ids)
323
-              )}&model=${encodeURIComponent(JSON.stringify(res))}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}&deptId=${res.deptId}&startDeptId=${startDeptId}&isDigitalHandover=${isDigitalHandover}&signDeptId=${signDeptId}&gdId=${gdId}&gdState=${gdState}&endDepts=${endDepts}`,
322
+                  this.tabType
323
+                }&type1=${res.type}&code=${this.code}&dept=${
324
+                  res.dept
325
+                }&ids=${encodeURIComponent(
326
+                  JSON.stringify(this.userId.ids)
327
+                )}&model=${encodeURIComponent(JSON.stringify(res))}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}&deptId=${res.deptId}&startDeptId=${startDeptId}&isDigitalHandover=${isDigitalHandover}&signDeptId=${signDeptId}&gdId=${gdId}&gdState=${gdState}&endDepts=${endDepts}`,
324 328
               });
329
+            } else if (this.tabType == 'specimen') {
330
+              if (res.deptType && res.deptType.value === 'middleRoom') {
331
+                // 如果是中转科室
332
+                uni.navigateTo({
333
+                  url: `../checkAfterBigScreen/checkAfterBigScreen?type=${
334
+                  this.tabType
335
+                }&type1=${res.type}&code=${this.code}&dept=${
336
+                  res.dept
337
+                }&ids=${encodeURIComponent(
338
+                  JSON.stringify(this.userId.ids)
339
+                )}&model=${encodeURIComponent(JSON.stringify(res))}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}&deptId=${res.deptId}`,
340
+                });
341
+              } else {
342
+                uni.navigateTo({
343
+                  url: `../scanning_djEnd/scanning_djEnd?type=${
344
+                  this.tabType
345
+                }&type1=${res.type}&code=${this.code}&dept=${
346
+                  res.dept
347
+                }&ids=${encodeURIComponent(
348
+                  JSON.stringify(this.userId.ids)
349
+                )}&model=${encodeURIComponent(JSON.stringify(res))}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}&deptId=${res.deptId}`,
350
+                });
351
+              }
325 352
             } else {
326 353
               uni.navigateTo({
327 354
                 url: `../scanning_djEnd/scanning_djEnd?type=${
@@ -334,7 +361,7 @@
334 361
               });
335 362
             }
336 363
           } else if (res.status == "0000") {
337
-            this.showSelectAccount(); //yeye
364
+            this.showSelectAccount();
338 365
           } else {
339 366
             this.flag = true;
340 367
             uni.navigateTo({
@@ -349,6 +376,7 @@
349 376
       },
350 377
       //一键操作
351 378
       allStart() {
379
+        console.log(this.tabType)
352 380
         clearTimeout(this.flagTimer);
353 381
         this.flagTimer = setTimeout(() => {
354 382
           this.flag = false;
@@ -432,14 +460,14 @@
432 460
                             } else {
433 461
                               uni.navigateTo({
434 462
                                 url: `../scanning_djEnd/scanning_djEnd?type=${
435
-                                this.tabType
436
-                              }&type1=${res.type}&dept=${
437
-                                res.dept
438
-                              }&ids=${encodeURIComponent(
439
-                                JSON.stringify(this.userId.ids)
440
-                              )}&model=${encodeURIComponent(
441
-                                JSON.stringify(res)
442
-                              )}&code=${this.code}`,
463
+                                  this.tabType
464
+                                }&type1=${res.type}&dept=${
465
+                                  res.dept
466
+                                }&ids=${encodeURIComponent(
467
+                                  JSON.stringify(this.userId.ids)
468
+                                )}&model=${encodeURIComponent(
469
+                                  JSON.stringify(res)
470
+                                )}&code=${this.code}`,
443 471
                               });
444 472
                             }
445 473
                           } else {
@@ -606,7 +634,9 @@
606 634
       },
607 635
     },
608 636
     onLoad(options) {
637
+      console.log(options, 'options');
609 638
       this.infoDATA = JSON.parse(options.infoDATA); //扫描科室码返回的信息
639
+      console.log(this.infoDATA);
610 640
       this.code = options.code; //扫描科室码返回的二维码信息
611 641
       let arr = [];
612 642
       for (var key in this.infoDATA) {

+ 5 - 7
pages/scanning_code/scanning_code.vue

@@ -192,10 +192,8 @@
192 192
           infoDATA.taskType.associationType.value == 'specimen' ||
193 193
           infoDATA.taskType.associationType.value == 'specimenPlan'
194 194
         ">
195
-        <text class="page_item_info_title">标本信息</text>
196
-        <!-- <text class="text" v-if="infoType=='plan-spe-ddd-1'||infoType=='plan-spe-dsd-2'||infoType=='plan-spe-dsd-3'&&infoDATA.gdState.value=='5'||infoType=='spe-ddd-1'||infoType=='spe-dsd-2'||infoType=='spe-dsd-3'&&infoDATA.gdState.value=='5'"> -->
197
-        <!-- <text class="text" v-if="infoType=='plan-spe-ddd-1'||infoType=='plan-spe-dsd-2'||infoType=='plan-spe-dsd-3'&&infoDATA.gdState.value=='5'||infoType=='spe-ddd-1'||infoType=='spe-dsd-2'"> -->
198
-        <text class="text" v-if="
195
+        <!-- <text class="page_item_info_title">标本信息</text> -->
196
+        <!-- <text class="text" v-if="
199 197
             infoType == 'plan-spe-ddd-1' ||
200 198
             infoType == 'plan-spe-dsd-2' ||
201 199
             infoType == 'spe-ddd-1' ||
@@ -224,7 +222,7 @@
224 222
           ">
225 223
           已收取标本总数
226 224
           <text>{{ infoDATA.actualReceiveNum || 0 }}</text>
227
-        </text>
225
+        </text> -->
228 226
       </view>
229 227
       <!-- 静配 -->
230 228
       <view class="page_item_info" v-if="infoDATA.taskType.associationType.value == 'jPBag'">
@@ -829,7 +827,7 @@
829 827
               this.queryObj.deptCode
830 828
             }&dept=${
831 829
               this.queryObj.dept
832
-            }&id=${this.dataId}&model=${encodeURIComponent(
830
+            }&deptId=${this.deptId}&id=${this.dataId}&model=${encodeURIComponent(
833 831
               JSON.stringify(ress)
834 832
             )}&speNum=${res.specimenCount}`,
835 833
             });
@@ -975,7 +973,7 @@
975 973
                         this.queryObj.deptCode
976 974
                       }&dept=${
977 975
                         this.queryObj.dept
978
-                      }&id=${this.dataId}&model=${encodeURIComponent(
976
+                      }&deptId=${this.deptId}&id=${this.dataId}&model=${encodeURIComponent(
979 977
                         JSON.stringify(ress)
980 978
                       )}&speNum=${ress.specimenCount}&scanOrHand=${type}`,
981 979
                       });

+ 9 - 2
pages/scanning_djEnd/scanning_djEnd.vue

@@ -741,13 +741,13 @@
741 741
         let ids = JSON.parse(this.queryObj.ids);
742 742
         if (isScan) {
743 743
           uni.navigateTo({
744
-            url: `../noScanSpecimen/noScanSpecimen?workOrderId=${encodeURIComponent(
744
+            url: `../noScanSpecimen/noScanSpecimen?deptName=${this.queryObj.dept}&workOrderId=${encodeURIComponent(
745 745
             JSON.stringify(ids)
746 746
           )}&deptCode=${this.queryObj.code}&isScan=1`,
747 747
           });
748 748
         } else {
749 749
           uni.navigateTo({
750
-            url: `../noScanSpecimen/noScanSpecimen?workOrderId=${encodeURIComponent(
750
+            url: `../noScanSpecimen/noScanSpecimen?deptName=${this.queryObj.dept}&workOrderId=${encodeURIComponent(
751 751
             JSON.stringify(ids)
752 752
           )}&deptCode=${this.queryObj.code}`,
753 753
           });
@@ -923,6 +923,13 @@
923 923
       },
924 924
       //完成扫描
925 925
       Scanning_complete(id) {
926
+        // 如果是标本配送和标本轮巡,则进入标本核对页面
927
+        if((this.type === 'specimen' || this.type === 'specimenPlan') && this.queryObj.type1.includes('ddd')){
928
+          uni.navigateTo({
929
+            url: `../checkAfterScanning/checkAfterScanning?id=${id}&type=${this.queryObj.type}&type1=${this.queryObj.type1}&dept=${this.queryObj.dept}&deptId=${this.queryObj.deptId}&deptCode=${this.queryObj.deptCode}&speNum=${this.speNum}&content=${this.content}`,
930
+          });
931
+          return;
932
+        }
926 933
         this.modelFlag = "complete";
927 934
         this.wcId = id;
928 935
         if (

+ 9 - 2
pages/scanning_djInfo/scanning_djInfo.vue

@@ -412,11 +412,11 @@
412 412
         this.gotoFlag = false;
413 413
         if(isScan){
414 414
           uni.navigateTo({
415
-            url: `../noScanSpecimen/noScanSpecimen?workOrderId=${encodeURIComponent(JSON.stringify(this.queryObj.ids))}&deptCode=${this.queryObj.deptCode}&isScan=1`,
415
+            url: `../noScanSpecimen/noScanSpecimen?deptName=${this.queryObj.dept}workOrderId=${encodeURIComponent(JSON.stringify(this.queryObj.ids))}&deptCode=${this.queryObj.deptCode}&isScan=1`,
416 416
           });
417 417
         }else{
418 418
           uni.navigateTo({
419
-            url: `../noScanSpecimen/noScanSpecimen?workOrderId=${encodeURIComponent(JSON.stringify(this.queryObj.ids))}&deptCode=${this.queryObj.deptCode}`,
419
+            url: `../noScanSpecimen/noScanSpecimen?deptName=${this.queryObj.dept}workOrderId=${encodeURIComponent(JSON.stringify(this.queryObj.ids))}&deptCode=${this.queryObj.deptCode}`,
420 420
           });
421 421
         }
422 422
       },
@@ -559,6 +559,13 @@
559 559
       },
560 560
       //完成扫描
561 561
       Scanning_complete(id) {
562
+        // 如果是标本配送和标本轮巡,则进入标本核对页面
563
+        if((this.type === 'specimen' || this.type === 'specimenPlan') && this.queryObj.type1.includes('ddd')){
564
+          uni.navigateTo({
565
+            url: `../checkAfterScanning/checkAfterScanning?id=${id}&type=${this.queryObj.type}&type1=${this.queryObj.type1}&dept=${this.queryObj.dept}&deptId=${this.queryObj.deptId}&deptCode=${this.queryObj.deptCode}&speNum=${this.speNum}&content=${this.content}`,
566
+          });
567
+          return;
568
+        }
562 569
         this.wcId = id;
563 570
         if (
564 571
           this.queryObj.type1 == "plan-spe-ddd-2" ||

+ 2 - 2
pages/scanning_orderSign/scanning_orderSign.vue

@@ -105,11 +105,11 @@
105 105
           infoDATA.taskType.associationType.value == 'specimen' && ((infoType == 'plan-spe-dsd-3' && infoDATA.gdState.value == '7') ||
106 106
             (infoType == 'spe-dsd-3' && infoDATA.gdState.value == '7'))
107 107
         ">
108
-        <text class="page_item_info_title">标本信息</text>
108
+        <!-- <text class="page_item_info_title">标本信息</text>
109 109
         <text class="text">
110 110
           已扫描标本总数
111 111
           <text>{{ infoDATA.expectReceiveNum || 0 }}</text>
112
-        </text>
112
+        </text> -->
113 113
         <!-- <view class="page_item_list">
114 114
           <view class="page_item_list_head">
115 115
             <view>标本类型</view>