Browse Source

合并提交

seimin 2 years ago
parent
commit
5c4d3de24d

+ 3 - 0
App.vue

@@ -83,12 +83,15 @@
83 83
 
84 84
 <style>
85 85
   @import url("./static/font/iconfont.css");
86
+  @import url("/node_modules/spinkit/spinkit.css");
86 87
 
87 88
   /*每个页面公共css */
88 89
   html {
89 90
     width: 100%;
90 91
     height: 100%;
91 92
     background: #f9fafb;
93
+    --sk-size: 20rpx!important;
94
+    --sk-color: #49b856!important;
92 95
   }
93 96
 
94 97
   body {

+ 369 - 0
components/handViewSpecimen/handViewSpecimen.vue

@@ -0,0 +1,369 @@
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
+            {{name}}:
11
+          </view>
12
+          <view class="uni-list-cell-db">
13
+            <input class="uni-input" auto-focus="true" :placeholder="'请填写'+name" v-model="account"
14
+              @input="bindPickerChange($event)" />
15
+          </view>
16
+        </view>
17
+        <view class="uni-list-cell">
18
+          <view class="uni-list-cell-left">
19
+            检验项目:
20
+          </view>
21
+          <view class="uni-list-cell-db-text">
22
+            <text v-show="!loading">{{spe.specimenDesc||'无'}}</text>
23
+            <view class="sk-circle" v-show="loading">
24
+              <view class="sk-circle-dot"></view>
25
+              <view class="sk-circle-dot"></view>
26
+              <view class="sk-circle-dot"></view>
27
+              <view class="sk-circle-dot"></view>
28
+              <view class="sk-circle-dot"></view>
29
+              <view class="sk-circle-dot"></view>
30
+              <view class="sk-circle-dot"></view>
31
+              <view class="sk-circle-dot"></view>
32
+              <view class="sk-circle-dot"></view>
33
+              <view class="sk-circle-dot"></view>
34
+              <view class="sk-circle-dot"></view>
35
+              <view class="sk-circle-dot"></view>
36
+            </view>
37
+          </view>
38
+        </view>
39
+        <view class="uni-list-cell">
40
+          <view class="uni-list-cell-left">
41
+            标本类型:
42
+          </view>
43
+          <view class="uni-list-cell-db-text">
44
+            <text v-show="!loading">{{ spe.stype ? spe.stype.name : "无" }}</text>
45
+            <view class="sk-circle" v-show="loading">
46
+              <view class="sk-circle-dot"></view>
47
+              <view class="sk-circle-dot"></view>
48
+              <view class="sk-circle-dot"></view>
49
+              <view class="sk-circle-dot"></view>
50
+              <view class="sk-circle-dot"></view>
51
+              <view class="sk-circle-dot"></view>
52
+              <view class="sk-circle-dot"></view>
53
+              <view class="sk-circle-dot"></view>
54
+              <view class="sk-circle-dot"></view>
55
+              <view class="sk-circle-dot"></view>
56
+              <view class="sk-circle-dot"></view>
57
+              <view class="sk-circle-dot"></view>
58
+            </view>
59
+          </view>
60
+        </view>
61
+        <view class="uni-list-cell">
62
+          <view class="uni-list-cell-left">
63
+            患者姓名:
64
+          </view>
65
+          <view class="uni-list-cell-db-text">
66
+            <text v-show="!loading">{{spe.patientName || '无'}}</text>
67
+            <view class="sk-circle" v-show="loading">
68
+              <view class="sk-circle-dot"></view>
69
+              <view class="sk-circle-dot"></view>
70
+              <view class="sk-circle-dot"></view>
71
+              <view class="sk-circle-dot"></view>
72
+              <view class="sk-circle-dot"></view>
73
+              <view class="sk-circle-dot"></view>
74
+              <view class="sk-circle-dot"></view>
75
+              <view class="sk-circle-dot"></view>
76
+              <view class="sk-circle-dot"></view>
77
+              <view class="sk-circle-dot"></view>
78
+              <view class="sk-circle-dot"></view>
79
+              <view class="sk-circle-dot"></view>
80
+            </view>
81
+          </view>
82
+        </view>
83
+      </view>
84
+      <view class="changeHospital__footer">
85
+        <view v-if="operate.ok" class="changeHospital__ok" @click="ok" hover-class="seimin-btn-hover">
86
+          {{ operate.ok || "" }}
87
+        </view>
88
+        <view v-if="operate.cancel" class="changeHospital__cancel" @click="cancel" hover-class="seimin-btn-hover">
89
+          {{ operate.cancel || "" }}
90
+        </view>
91
+      </view>
92
+    </view>
93
+  </view>
94
+</template>
95
+
96
+<script>
97
+  import {
98
+    post
99
+  } from "../../http/http.js";
100
+  export default {
101
+    data() {
102
+      return {
103
+        cValue: '', //当前输入的标本编码
104
+        loading: false,
105
+        userData: null,
106
+        hosId: null,
107
+        timer: null,
108
+        spe: {}, //标本对象
109
+        account: '', //交接人账号
110
+        accountName: '', //交接人姓名
111
+        accountId: '' //交接人ID
112
+      };
113
+    },
114
+    watch: {
115
+      disjunctor(newValue) {
116
+        if (newValue && this.operate.know == "知道了") {
117
+          this.time = 5;
118
+          this.timer = setInterval(() => {
119
+            this.time--;
120
+            if (this.time <= 0) {
121
+              clearInterval(this.timer);
122
+              this.know();
123
+            }
124
+          }, 1000);
125
+        }
126
+      },
127
+    },
128
+    props: {
129
+      // 显示隐藏
130
+      disjunctor: {
131
+        type: Boolean,
132
+        default: false,
133
+      },
134
+      // 标题
135
+      title: {
136
+        type: String,
137
+        default: "提示",
138
+      },
139
+      // 操作按钮文字
140
+      operate: {
141
+        type: Object,
142
+        default: () => {
143
+          return {
144
+            ok: "确认",
145
+            cancel: "取消",
146
+          };
147
+        },
148
+      },
149
+      name: {
150
+        type: String,
151
+        default: '标本编码'
152
+      }
153
+    },
154
+    methods: {
155
+      //修改picker的值
156
+      bindPickerChange(e) {
157
+        this.spe = {};
158
+        this.loading = true;
159
+        this.cValue = e.target.value;
160
+        clearTimeout(this.timer);
161
+        if (this.cValue.length <= 4) {
162
+          this.spe = {};
163
+          this.loading = false;
164
+          return;
165
+        }
166
+        this.timer = setTimeout(() => {
167
+          let nAccount = e.target.value;
168
+          post("/simple/data/fetchDataList/specimen", {
169
+            "idx": 0,
170
+            "sum": 1,
171
+            "specimen": {
172
+              "hosId": this.hosId,
173
+              "scode": e.target.value,
174
+            }
175
+          }).then(result => {
176
+            if (result.status == 200) {
177
+              if (this.cValue === nAccount) {
178
+                if (result.list && result.list.length) {
179
+                  //有值
180
+                  this.spe = result.list[0];
181
+                } else {
182
+                  // 没值
183
+                  this.spe = {};
184
+                }
185
+                this.loading = false;
186
+              }
187
+            } else {
188
+              this.loading = false;
189
+            }
190
+          })
191
+        }, 500)
192
+      },
193
+      // 确定
194
+      ok() {
195
+        this.$emit("ok", this.spe);
196
+      },
197
+      // 取消
198
+      cancel() {
199
+        this.$emit("cancel");
200
+      },
201
+    },
202
+    created() {
203
+      this.hosId = uni.getStorageSync('userData').user.currentHospital.id;
204
+    }
205
+  };
206
+</script>
207
+
208
+<style lang="less" scoped>
209
+  .changeHospital {
210
+    position: fixed;
211
+    left: 0;
212
+    right: 0;
213
+    top: 0;
214
+    bottom: 0;
215
+    background-color: rgba(0, 0, 0, 0.2);
216
+    z-index: 999;
217
+
218
+    .uni-list-cell {
219
+      width: 90%;
220
+      display: flex;
221
+      flex-direction: row;
222
+      justify-content: space-evenly;
223
+      align-items: center;
224
+      text-align: center;
225
+      margin-top: 32rpx;
226
+
227
+      .uni-list-cell-left {
228
+        flex: 3;
229
+        font-size: 32rpx;
230
+        color: #666;
231
+      }
232
+
233
+      .uni-list-cell-db {
234
+        border: 1px solid #e5e9ed;
235
+        background-color: #fff;
236
+        padding: 16rpx 0;
237
+        flex: 5;
238
+      }
239
+
240
+      .uni-list-cell-db-text {
241
+        flex: 5;
242
+        text-align: left;
243
+      }
244
+    }
245
+
246
+    .changeHospital__wrap {
247
+      width: 90vw;
248
+      position: absolute;
249
+      left: 50%;
250
+      top: 50%;
251
+      transform: translate(-50%, -50%);
252
+      background-color: #fff;
253
+      border-radius: 12rpx;
254
+      color: #666;
255
+
256
+      .changeHospital__header {
257
+        font-size: 36rpx;
258
+        color: #000;
259
+        height: 84rpx;
260
+        display: flex;
261
+        justify-content: center;
262
+        align-items: center;
263
+      }
264
+
265
+      .changeHospital__article {
266
+        width: 90%;
267
+        margin: 0 auto 25rpx;
268
+        padding: 48rpx 0;
269
+        background-color: rgb(249, 250, 251);
270
+        border: 2rpx solid rgb(229, 233, 237);
271
+        border-radius: 12rpx;
272
+        box-sizing: border-box;
273
+        display: flex;
274
+        flex-direction: column;
275
+        justify-content: center;
276
+        align-items: center;
277
+
278
+        &.p0 {
279
+          padding: 0;
280
+        }
281
+
282
+        .changeHospital__icon {
283
+          font-size: 138rpx;
284
+          margin-bottom: 32rpx;
285
+
286
+          &.changeHospital__icon--success {
287
+            color: rgb(52, 179, 73);
288
+          }
289
+
290
+          &.changeHospital__icon--warn {
291
+            color: rgb(245, 165, 35);
292
+          }
293
+
294
+          &.changeHospital__icon--error {
295
+            color: rgb(255, 58, 82);
296
+          }
297
+        }
298
+
299
+        .changeHospital__content {
300
+          font-size: 36rpx;
301
+        }
302
+
303
+        .changeHospital__info {
304
+          font-size: 32rpx;
305
+          color: rgb(102, 102, 102);
306
+        }
307
+
308
+        .specialCloseFlag {
309
+          width: 90%;
310
+          height: 100%;
311
+          padding: 16rpx;
312
+        }
313
+
314
+        .radio-wrap {
315
+          .radio-item {
316
+            margin-top: 16rpx;
317
+
318
+            /deep/ .uni-radio-input-checked {
319
+              background-color: #49b856 !important;
320
+              border-color: #49b856 !important;
321
+            }
322
+          }
323
+        }
324
+      }
325
+
326
+      .changeHospital__footer {
327
+        box-sizing: border-box;
328
+        height: 100rpx;
329
+        border-top: 2rpx solid rgb(229, 233, 237);
330
+        display: flex;
331
+        align-items: center;
332
+
333
+        view {
334
+          height: 100%;
335
+          display: flex;
336
+          align-items: center;
337
+          justify-content: center;
338
+          font-size: 36rpx;
339
+          color: rgb(102, 102, 102);
340
+          position: relative;
341
+
342
+          &:nth-of-type(2)::before {
343
+            content: "";
344
+            position: absolute;
345
+            left: 0;
346
+            bottom: 0;
347
+            width: 2rpx;
348
+            height: 87rpx;
349
+            background-color: rgb(229, 233, 237);
350
+          }
351
+        }
352
+
353
+        .changeHospital__ok {
354
+          flex: 1;
355
+          color: rgb(73, 184, 86);
356
+        }
357
+
358
+        .changeHospital__cancel {
359
+          flex: 1;
360
+        }
361
+
362
+        .changeHospital__know {
363
+          flex: 1;
364
+          color: rgb(73, 184, 86);
365
+        }
366
+      }
367
+    }
368
+  }
369
+</style>

+ 51 - 22
components/selectAccount/selectAccount.vue

@@ -10,7 +10,8 @@
10 10
             {{name}}账号:
11 11
           </view>
12 12
           <view class="uni-list-cell-db">
13
-            <input class="uni-input" auto-focus="true" :placeholder="'请填写'+name+'账号'" v-model="account" @input="bindPickerChange($event)" />
13
+            <input class="uni-input" auto-focus="true" :placeholder="'请填写'+name+'账号'" v-model="account"
14
+              @input="bindPickerChange($event)" />
14 15
           </view>
15 16
         </view>
16 17
         <view class="uni-list-cell">
@@ -18,7 +19,21 @@
18 19
             {{name}}姓名:
19 20
           </view>
20 21
           <view class="uni-list-cell-db-text">
21
-            <text>{{accountName}}</text>
22
+            <text v-show="!loading">{{ accountName || "无" }}</text>
23
+            <view class="sk-circle" v-show="loading">
24
+              <view class="sk-circle-dot"></view>
25
+              <view class="sk-circle-dot"></view>
26
+              <view class="sk-circle-dot"></view>
27
+              <view class="sk-circle-dot"></view>
28
+              <view class="sk-circle-dot"></view>
29
+              <view class="sk-circle-dot"></view>
30
+              <view class="sk-circle-dot"></view>
31
+              <view class="sk-circle-dot"></view>
32
+              <view class="sk-circle-dot"></view>
33
+              <view class="sk-circle-dot"></view>
34
+              <view class="sk-circle-dot"></view>
35
+              <view class="sk-circle-dot"></view>
36
+            </view>
22 37
           </view>
23 38
         </view>
24 39
       </view>
@@ -41,12 +56,14 @@
41 56
   export default {
42 57
     data() {
43 58
       return {
59
+        cValue: '', //当前输入的标本编码
60
+        loading: false,
44 61
         userData: null,
45
-        hosId:null,
46
-        timer:null,
47
-        account:'',//交接人账号
48
-        accountName:'',//交接人姓名
49
-        accountId:''//交接人ID
62
+        hosId: null,
63
+        timer: null,
64
+        account: '', //交接人账号
65
+        accountName: '', //交接人姓名
66
+        accountId: '' //交接人ID
50 67
       };
51 68
     },
52 69
     watch: {
@@ -84,41 +101,52 @@
84 101
           };
85 102
         },
86 103
       },
87
-      name:{
88
-        type:String,
89
-        default:'交接人'
104
+      name: {
105
+        type: String,
106
+        default: '交接人'
90 107
       }
91 108
     },
92 109
     methods: {
93 110
       //修改picker的值
94 111
       bindPickerChange(e) {
95
-        console.log(e.target.value);
112
+        this.accountName = '';
113
+        this.accountId = '';
114
+        this.loading = true;
115
+        this.cValue = e.target.value;
96 116
         clearTimeout(this.timer);
97
-        let cValue = e.target.value;
98
-        this.timer = setTimeout(()=>{
117
+        this.timer = setTimeout(() => {
99 118
           let account = e.target.value;
100 119
           post("/data/isRepeat", {
101
-            hospital: {id: this.hosId},
120
+            hospital: {
121
+              id: this.hosId
122
+            },
102 123
             account
103 124
           }).then(result => {
104
-            if(cValue === account && result.status == 200){
105
-              this.accountName = result.userName;
106
-              this.account = account;
107
-              this.accountId = result.userId;
125
+            if (result.status == 200) {
126
+              if (this.cValue === account) {
127
+                this.accountName = result.userName;
128
+                this.account = account;
129
+                this.accountId = result.userId;
130
+                this.loading = false;
131
+              }
132
+            } else {
133
+              this.accountName = '';
134
+              this.accountId = '';
135
+              this.loading = false;
108 136
             }
109 137
           })
110
-        },500)
138
+        }, 500)
111 139
       },
112 140
       // 确定
113 141
       ok() {
114 142
         let e = {};
115
-        if(this.accountName){
143
+        if (this.accountName) {
116 144
           e.accountName = this.accountName;
117 145
         }
118
-        if(this.account){
146
+        if (this.account) {
119 147
           e.account = this.account;
120 148
         }
121
-        if(this.accountId){
149
+        if (this.accountId) {
122 150
           e.accountId = this.accountId;
123 151
         }
124 152
         this.$emit("ok", e);
@@ -165,6 +193,7 @@
165 193
         padding: 16rpx 0;
166 194
         flex: 5;
167 195
       }
196
+
168 197
       .uni-list-cell-db-text {
169 198
         flex: 5;
170 199
         text-align: left;

+ 11 - 0
package-lock.json

@@ -10,6 +10,7 @@
10 10
       "license": "ISC",
11 11
       "dependencies": {
12 12
         "crypto-js": "^4.1.1",
13
+        "spinkit": "^2.0.1",
13 14
         "vconsole": "^3.12.1",
14 15
         "weixin-jsapi": "^1.1.0"
15 16
       },
@@ -333,6 +334,11 @@
333 334
         "node": ">=4"
334 335
       }
335 336
     },
337
+    "node_modules/spinkit": {
338
+      "version": "2.0.1",
339
+      "resolved": "https://registry.npmmirror.com/spinkit/-/spinkit-2.0.1.tgz",
340
+      "integrity": "sha512-oYBGY0GV1H1dX+ZdKnB6JVsYC1w/Xl20H111eb+WSS8nUYmlHgGb4y5buFSkzzceEeYYh5kMhXoAmoTpiQauiA=="
341
+    },
336 342
     "node_modules/ssh2": {
337 343
       "version": "1.5.0",
338 344
       "resolved": "https://registry.npmmirror.com/ssh2/download/ssh2-1.5.0.tgz",
@@ -691,6 +697,11 @@
691 697
         "rechoir": "^0.6.2"
692 698
       }
693 699
     },
700
+    "spinkit": {
701
+      "version": "2.0.1",
702
+      "resolved": "https://registry.npmmirror.com/spinkit/-/spinkit-2.0.1.tgz",
703
+      "integrity": "sha512-oYBGY0GV1H1dX+ZdKnB6JVsYC1w/Xl20H111eb+WSS8nUYmlHgGb4y5buFSkzzceEeYYh5kMhXoAmoTpiQauiA=="
704
+    },
694 705
     "ssh2": {
695 706
       "version": "1.5.0",
696 707
       "resolved": "https://registry.npmmirror.com/ssh2/download/ssh2-1.5.0.tgz",

+ 1 - 0
package.json

@@ -15,6 +15,7 @@
15 15
   "license": "ISC",
16 16
   "dependencies": {
17 17
     "crypto-js": "^4.1.1",
18
+    "spinkit": "^2.0.1",
18 19
     "vconsole": "^3.12.1",
19 20
     "weixin-jsapi": "^1.1.0"
20 21
   },

+ 205 - 86
pages/pharmacyDetails/pharmacyDetails.vue

@@ -1,10 +1,17 @@
1 1
 <template>
2 2
   <view class="pharmacyDetails">
3
-    <view class="pharmacyDetails_title">请领信息</view>
3
+    <view class="pharmacyDetails_title">
4
+      <view class="pharmacyDetails_tab" :class="{ 'active': selectedLabelSlots === item.id }" v-for="item in tabs"
5
+        :key="item.id" @click="clickHandler(item.id)">
6
+        <view class="pharmacyDetails_label">
7
+          {{ item.label }}
8
+        </view>
9
+      </view>
10
+    </view>
4 11
     <view class="page_item_wrap">
5 12
       <view class="page_item">
6 13
         <view class="page_item_top">
7
-          <view class="page_item_top-inner">
14
+          <view class="page_item_top-inner" v-show="selectedLabelSlots == 1">
8 15
             <view class="page_item_top_L">
9 16
               <text class="L_text">请领单:{{ infoDATA.packid }}</text>
10 17
             </view>
@@ -15,13 +22,7 @@
15 22
             </view>
16 23
           </view>
17 24
         </view>
18
-        <view class="page_item_cont">
19
-          <!-- <view class="page_item_cont_T">
20
-            <view class="page_item_cont_title">
21
-              <text>批次号</text>
22
-              <text class="text_big">{{ infoDATA.batchNo }}</text>
23
-            </view>
24
-          </view> -->
25
+        <view class="page_item_cont" v-show="selectedLabelSlots == 1">
25 26
           <view class="page_item_cont_B">
26 27
             <view class="page_item_cont_title">
27 28
               <text>记账时间</text>
@@ -39,6 +40,16 @@
39 40
             </view>
40 41
           </view>
41 42
         </view>
43
+        <view class="page_item_cont" v-show="selectedLabelSlots == 2">
44
+          <view class="page_item_cont_C" v-for="(item,i) in queryProcessList" :key="i">
45
+            <view class="page_item_cont_title_C">
46
+              <text>{{item.operationType?item.operationType.name:''}}</text>
47
+              <text class="text_big">
48
+                <text>{{ item.username || '暂无' }}</text>
49
+              </text>
50
+            </view>
51
+          </view>
52
+        </view>
42 53
         <view class="L"></view>
43 54
         <view class="R"></view>
44 55
       </view>
@@ -89,6 +100,16 @@
89 100
   export default {
90 101
     data() {
91 102
       return {
103
+        selectedLabelSlots: 1,
104
+        tabs: [{
105
+            id: 1,
106
+            label: "基础信息",
107
+          },
108
+          {
109
+            id: 2,
110
+            label: "流程信息",
111
+          }
112
+        ],
92 113
         infoDATA: [],
93 114
         isLoading: false,
94 115
         isTLoading: false,
@@ -98,12 +119,22 @@
98 119
         hosModels: {
99 120
           disjunctor: false,
100 121
         },
122
+        queryProcessList: [],
101 123
       };
102 124
     },
103 125
     components: {
104 126
       selectAccount
105 127
     },
106 128
     methods: {
129
+      // tab切换
130
+      clickHandler(id) {
131
+        this.selectedLabelSlots = id;
132
+        if (id == 1) {
133
+          this.queryBase(this.queryObj);
134
+        } else if (id == 2) {
135
+          this.queryProcess(this.queryObj);
136
+        }
137
+      },
107 138
       // 确认
108 139
       hosOk(data) {
109 140
         console.log(data);
@@ -153,7 +184,7 @@
153 184
           id: this.infoDATA.id,
154 185
           packId: this.infoDATA.packid,
155 186
           recipient: accountId,
156
-          recipientName:accountName
187
+          recipientName: accountName
157 188
         };
158 189
         if (this.infoDATA.gdId) {
159 190
           postData.gdId = this.infoDATA.gdId;
@@ -413,6 +444,136 @@
413 444
           }
414 445
         });
415 446
       },
447
+      //基础信息查询
448
+      queryBase(options) {
449
+        //扫码进入详情
450
+        let qrcode = options.qrcode;
451
+        if (qrcode) {
452
+          uni.showLoading({
453
+            title: "加载中",
454
+            mask: true,
455
+          });
456
+          post("/drugsBag/getDrugsBagByQr", {
457
+            qrcode,
458
+          }).then((result) => {
459
+            uni.hideLoading();
460
+            if (result.state == 200) {
461
+              this.infoDATA = result.result;
462
+              if (this.loginUser.dept.id != this.infoDATA.launch.id) {
463
+                uni.showModal({
464
+                  title: '提示',
465
+                  content: "您现在所在的科室是【" + this.loginUser.dept.dept + "】,药包所在的科室是【" + this.infoDATA.launch.dept +
466
+                    "】,您不能进行操作",
467
+                  showCancel: false,
468
+                  success: function(res) {
469
+                    if (res.confirm) {
470
+                      console.log('用户点击确定');
471
+                    } else if (res.cancel) {
472
+                      console.log('用户点击取消');
473
+                    }
474
+                  }
475
+                });
476
+              }
477
+            } else {
478
+              uni.showToast({
479
+                icon: "none",
480
+                title: "请求失败!",
481
+              });
482
+            }
483
+          });
484
+        }
485
+        // 点击列表进入详情
486
+        let id = options.id;
487
+        if (id) {
488
+          uni.showLoading({
489
+            title: "加载中",
490
+            mask: true,
491
+          });
492
+          get("/api/fetchData/drugsBag/" + id).then((res) => {
493
+            uni.hideLoading();
494
+            if (res.status == 200) {
495
+              this.infoDATA = res.data;
496
+              if (this.loginUser.dept.id != this.infoDATA.launch.id) {
497
+                uni.showModal({
498
+                  title: '提示',
499
+                  content: "您现在所在的科室是【" + this.loginUser.dept.dept + "】,药包所在的科室是【" + this.infoDATA.launch.dept +
500
+                    "】,您不能进行操作",
501
+                  showCancel: false,
502
+                  success: function(res) {
503
+                    if (res.confirm) {
504
+                      console.log('用户点击确定');
505
+                    } else if (res.cancel) {
506
+                      console.log('用户点击取消');
507
+                    }
508
+                  }
509
+                });
510
+              }
511
+            } else {
512
+              uni.showToast({
513
+                icon: "none",
514
+                title: "请求失败!",
515
+              });
516
+            }
517
+          });
518
+        }
519
+      },
520
+      // 流程信息查询
521
+      queryProcess(options) {
522
+        //扫码进入详情
523
+        let qrcode = options.qrcode;
524
+        if (qrcode) {
525
+          uni.showLoading({
526
+            title: "加载中",
527
+            mask: true,
528
+          });
529
+          let postData = {
530
+            idx: 0,
531
+            sum: 9999,
532
+            drugsBagOperationLog: {
533
+              qrcode,
534
+              hosId: this.loginUser.currentHospital.id
535
+            }
536
+          }
537
+          post("/simple/data/fetchDataList/drugsBagOperationLog", postData).then((result) => {
538
+            uni.hideLoading();
539
+            if (result.status == 200) {
540
+              this.queryProcessList = res.list;
541
+            } else {
542
+              uni.showToast({
543
+                icon: "none",
544
+                title: "请求失败!",
545
+              });
546
+            }
547
+          });
548
+        }
549
+        // 点击列表进入详情
550
+        let id = options.id;
551
+        if (id) {
552
+          uni.showLoading({
553
+            title: "加载中",
554
+            mask: true,
555
+          });
556
+          let postData = {
557
+            idx: 0,
558
+            sum: 9999,
559
+            drugsBagOperationLog: {
560
+              packid: options.packid,
561
+              hosId: this.loginUser.currentHospital.id
562
+            }
563
+          }
564
+          post("/simple/data/fetchDataList/drugsBagOperationLog", postData).then((res) => {
565
+            uni.hideLoading();
566
+            if (res.status == 200) {
567
+              this.queryProcessList = res.list;
568
+            } else {
569
+              uni.showToast({
570
+                icon: "none",
571
+                title: "请求失败!",
572
+              });
573
+            }
574
+          });
575
+        }
576
+      }
416 577
     },
417 578
     onLoad(options) {
418 579
       this.loginUser = uni.getStorageSync("userData").user;
@@ -423,88 +584,45 @@
423 584
       // #ifdef H5
424 585
       webHandle("no", "wx");
425 586
       // #endif
426
-      //扫码进入详情
427
-      let qrcode = options.qrcode;
428
-      if (qrcode) {
429
-        uni.showLoading({
430
-          title: "加载中",
431
-          mask: true,
432
-        });
433
-        post("/drugsBag/getDrugsBagByQr", {
434
-          qrcode,
435
-        }).then((result) => {
436
-          uni.hideLoading();
437
-          if (result.state == 200) {
438
-            this.infoDATA = result.result;
439
-            if (this.loginUser.dept.id != this.infoDATA.launch.id) {
440
-              uni.showModal({
441
-                title: '提示',
442
-                content: "您现在所在的科室是【" + this.loginUser.dept.dept + "】,药包所在的科室是【" + this.infoDATA.launch.dept +
443
-                  "】,您不能进行操作",
444
-                showCancel: false,
445
-                success: function(res) {
446
-                  if (res.confirm) {
447
-                    console.log('用户点击确定');
448
-                  } else if (res.cancel) {
449
-                    console.log('用户点击取消');
450
-                  }
451
-                }
452
-              });
453
-            }
454
-          } else {
455
-            uni.showToast({
456
-              icon: "none",
457
-              title: "请求失败!",
458
-            });
459
-          }
460
-        });
461
-      }
462
-      // 点击列表进入详情
463
-      let id = options.id;
464
-      if (id) {
465
-        uni.showLoading({
466
-          title: "加载中",
467
-          mask: true,
468
-        });
469
-        get("/api/fetchData/drugsBag/" + id).then((res) => {
470
-          uni.hideLoading();
471
-          if (res.status == 200) {
472
-            this.infoDATA = res.data;
473
-            if (this.loginUser.dept.id != this.infoDATA.launch.id) {
474
-              uni.showModal({
475
-                title: '提示',
476
-                content: "您现在所在的科室是【" + this.loginUser.dept.dept + "】,药包所在的科室是【" + this.infoDATA.launch.dept +
477
-                  "】,您不能进行操作",
478
-                showCancel: false,
479
-                success: function(res) {
480
-                  if (res.confirm) {
481
-                    console.log('用户点击确定');
482
-                  } else if (res.cancel) {
483
-                    console.log('用户点击取消');
484
-                  }
485
-                }
486
-              });
487
-            }
488
-          } else {
489
-            uni.showToast({
490
-              icon: "none",
491
-              title: "请求失败!",
492
-            });
493
-          }
494
-        });
495
-      }
587
+      this.queryObj = options;
588
+      this.queryBase(this.queryObj);
496 589
     },
497 590
   };
498 591
 </script>
499 592
 <style lang="less">
500 593
   .pharmacyDetails {
501 594
     background-color: rgb(249, 250, 251);
502
-    padding-top: 10%;
595
+    padding-top: 32rpx;
503 596
 
504 597
     .pharmacyDetails_title {
505
-      font-size: 46rpx;
506
-      font-weight: 550;
507
-      text-align: center;
598
+      height: 100rpx;
599
+      display: flex;
600
+      align-items: center;
601
+      background-color: #fff;
602
+
603
+      .pharmacyDetails_tab {
604
+        flex: 1;
605
+        display: flex;
606
+        align-items: center;
607
+
608
+        .pharmacyDetails_label {
609
+          display: flex;
610
+          justify-content: center;
611
+          align-items: center;
612
+          font-size: 40rpx;
613
+          width: 100%;
614
+          height: 66rpx;
615
+          border-radius: 32rpx;
616
+          color: #666;
617
+        }
618
+
619
+        &.active {
620
+          .pharmacyDetails_label {
621
+            color: #333;
622
+            background-color: #e5e9ed;
623
+          }
624
+        }
625
+      }
508 626
     }
509 627
 
510 628
     .page_item_wrap {
@@ -577,7 +695,8 @@
577 695
 
578 696
         .page_item_cont {
579 697
           min-height: 180rpx;
580
-          max-height: 424rpx;
698
+          max-height: calc(100vh - 534rpx);
699
+          overflow-y: auto;
581 700
           padding: 0 16rpx;
582 701
           text-align: left;
583 702
           position: relative;
@@ -626,7 +745,7 @@
626 745
           }
627 746
 
628 747
           .page_item_cont_C {
629
-            margin-bottom: 28rpx;
748
+            margin-top: 28rpx;
630 749
 
631 750
             .page_item_cont_title_C {
632 751
               font-size: 32rpx;

+ 63 - 0
pages/receiptpage/receiptpage.vue

@@ -236,6 +236,10 @@
236 236
     <!-- 弹窗 -->
237 237
     <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
238 238
       @ok="ok" @cancel="cancel" @know="know" :operate="models.operate"></showModel>
239
+    <!-- 手动查询标本弹窗 -->
240
+    <handViewSpecimen v-if="speModels.disjunctor" :title="speModels.title" :disjunctor="speModels.disjunctor"
241
+      @ok="speOk" @cancel="speCancel">
242
+    </handViewSpecimen>
239 243
   </view>
240 244
 </template>
241 245
 <script>
@@ -257,6 +261,10 @@
257 261
   export default {
258 262
     data() {
259 263
       return {
264
+        // 手动查询标本弹窗model
265
+        speModels: {
266
+          disjunctor: false,
267
+        },
260 268
         // 筛选条件
261 269
         array: [{
262 270
             id: 0,
@@ -350,6 +358,55 @@
350 358
       bigScreen,
351 359
     },
352 360
     methods: {
361
+      // 手动查询标本-确认
362
+      speOk(data) {
363
+        console.log(data);
364
+        if (!data.id) {
365
+          //没有查询到标本
366
+          uni.showModal({
367
+            title: '提示',
368
+            content: "没有查询到标本!",
369
+            showCancel: false,
370
+            success: function(res) {
371
+              if (res.confirm) {
372
+                console.log('用户点击确定');
373
+              } else if (res.cancel) {
374
+                console.log('用户点击取消');
375
+              }
376
+            }
377
+          });
378
+          return;
379
+        }
380
+        this.speModels.disjunctor = false;
381
+        let infoDATA = {
382
+          stype: data.stype,
383
+          scode: data.scode,
384
+          patientName: data.patientName,
385
+          sickRoom: data.sickRoom ?
386
+            data.sickRoom.dept : "-",
387
+          checkDept: data.checkDept ?
388
+            data.checkDept.dept : "-",
389
+          bedNum: data.bedNum,
390
+        };
391
+        uni.navigateTo({
392
+          url: `../scanning_B/scanning_B?res=${encodeURIComponent(
393
+          JSON.stringify({data,status:666})
394
+        )}&infoDATA=${encodeURIComponent(
395
+          JSON.stringify(infoDATA)
396
+        )}`,
397
+        });
398
+      },
399
+      // 手动查询标本-取消
400
+      speCancel() {
401
+        this.speModels.disjunctor = false;
402
+      },
403
+      // 手动查询标本弹窗
404
+      showHandViewSpecimen() {
405
+        this.speModels = {
406
+          title: '填写标本编码',
407
+          disjunctor: true,
408
+        }
409
+      },
353 410
       // 执行中筛选
354 411
       execFilter({
355 412
         detail: {
@@ -394,6 +451,10 @@
394 451
             this.content.push({
395 452
               text: "二维码设置",
396 453
             });
454
+          } else if (item.link === "wxSpecimenEntry") {
455
+            this.content.push({
456
+              text: "标本录入",
457
+            });
397 458
           }
398 459
         });
399 460
       },
@@ -477,6 +538,8 @@
477 538
           uni.navigateTo({
478 539
             url: "../settingCode/settingCode",
479 540
           });
541
+        } else if (e.item.text === "标本录入") {
542
+          this.showHandViewSpecimen();
480 543
         }
481 544
       },
482 545
       // 点击tab页切换

+ 18 - 6
pages/scanning_B/scanning_B.vue

@@ -1,14 +1,15 @@
1 1
 <template>
2 2
   <view class="Scanning_B">
3
-    <view class="Scanning_top" v-if="res.status == 200">
3
+    <view class="Scanning_top" v-if="res.status == 200 || res.status == 666">
4 4
       <view class="Scanning_top_icon">
5 5
         <text class="cubeic-ok icon_transport transport-duigou"></text>
6 6
       </view>
7 7
       <view class="Scanning_top_text">
8
-        <view class="text1">扫描成功</view>
8
+        <view class="text1" v-if="res.status == 200">扫描成功</view>
9
+        <view class="text1" v-else-if="res.status == 666">查询成功</view>
9 10
       </view>
10 11
     </view>
11
-    <view class="Scanning_top" v-if="res.status != 200">
12
+    <view class="Scanning_top" v-if="res.status != 200 && res.status != 666">
12 13
       <view class="Scanning_top_icon">
13 14
         <text class="cubeic-close icon_transport transport-shibai"></text>
14 15
       </view>
@@ -17,17 +18,19 @@
17 18
       </view>
18 19
     </view>
19 20
 
20
-    <view class="Scanning_cont" v-if="res.status == 200">
21
+    <view class="Scanning_cont" v-if="res.status == 200 || res.status == 666">
21 22
       <view>标本类型 : {{ infoDATA.stype.name || "-" }}</view>
22 23
       <view>标本编码 : {{ infoDATA.scode || "-" }}</view>
24
+      <view>标本状态 : {{ res.data.speState ? res.data.speState.name : "-" }}</view>
23 25
       <view>患者床号 : {{ infoDATA.bedNum || "-" }}</view>
24 26
       <view>申请科室 : {{ infoDATA.sickRoom || "-" }}</view>
25 27
       <view>检查科室 : {{ infoDATA.checkDept || "-" }}</view>
28
+      <view>检验项目 : {{ res.data.specimenDesc || "-" }}</view>
26 29
     </view>
27
-    <view class="Scanning_cont" v-if="res.status != 200">
30
+    <view class="Scanning_cont" v-else>
28 31
       <view>{{ res.msg }}</view>
29 32
     </view>
30
-    <view class="foot_btn">
33
+    <view class="foot_btn" v-if="res.status != 666">
31 34
       <view class="btn3" @click="showAlert()">知道了</view>
32 35
       <block v-if="res.scanCodeSpecimenOrderSign == 1">
33 36
         <view class="btn3" @click="orderSign(res.workOrder)" v-if="res.workOrder">执行工单</view>
@@ -55,6 +58,7 @@
55 58
           disjunctor: false,
56 59
         },
57 60
         currentCode: "",
61
+        type: "", //类型,orderSign|buildAndOrderSign
58 62
       };
59 63
     },
60 64
     methods: {
@@ -69,6 +73,9 @@
69 73
         let postData = {
70 74
           ids,
71 75
         };
76
+        if (this.type === 'orderSign') {
77
+          postData.specimenOrderSign = data.specimenSet.map(v=>v.id); //破坏性,必须扫标本
78
+        }
72 79
         if (accountObj) {
73 80
           postData.handover = [accountObj.accountId];
74 81
         }
@@ -102,6 +109,7 @@
102 109
       },
103 110
       // 执行工单
104 111
       orderSign(workOrder) {
112
+        this.type = 'orderSign';
105 113
         uni.showLoading({
106 114
           title: "加载中",
107 115
           mask: true,
@@ -138,6 +146,7 @@
138 146
       },
139 147
       // 建单并签到
140 148
       buildAndOrderSign(speId) {
149
+        this.type = 'buildAndOrderSign';
141 150
         uni.showLoading({
142 151
           title: "加载中",
143 152
           mask: true,
@@ -261,6 +270,9 @@
261 270
 <style lang="less">
262 271
   .Scanning_B {
263 272
     padding: 0px 74rpx;
273
+    .uni-modal__btn_primary{
274
+      color: #49b856!important;
275
+    }
264 276
 
265 277
     .Scanning_top {
266 278
       height: 270rpx;

+ 188 - 130
pages/scanning_Result/scanning_Result.vue

@@ -98,7 +98,8 @@
98 98
         (type == 'specimenPlan' && isKs != '1')
99 99
       ">
100 100
       <view class="btn1" @click="Scanning_again()"> 继续扫描 </view>
101
-      <view class="btn3" @click="getNoScanSpecimen()">查看未扫描标本</view>
101
+      <view class="btn3" @click="hand_again()">手动录入</view>
102
+      <view class="btn3" @click="getNoScanSpecimen()">未扫描标本</view>
102 103
       <view class="btn2" @click="Scanning_complete(dataId)"> 完成扫描 </view>
103 104
     </view>
104 105
     <view class="foot_btn" v-if="
@@ -218,6 +219,10 @@
218 219
     <showModel :title="models2.title" :icon="models2.icon" :disjunctor="models2.disjunctor" :content="models2.content"
219 220
       @ok="ok2" @know="know2" @cancel="cancel2" :operate="models2.operate">
220 221
     </showModel>
222
+    <!-- 手动查询标本弹窗 -->
223
+    <handViewSpecimen v-if="speModels.disjunctor" :title="speModels.title" :disjunctor="speModels.disjunctor"
224
+      @ok="speOk" @cancel="speCancel">
225
+    </handViewSpecimen>
221 226
   </view>
222 227
 </template>
223 228
 <script>
@@ -234,9 +239,13 @@
234 239
   export default {
235 240
     data() {
236 241
       return {
237
-        deptId:undefined,
238
-        handover:undefined,
239
-        // SMFlag: true,
242
+        // 手动查询标本弹窗model
243
+        speModels: {
244
+          disjunctor: false,
245
+        },
246
+        deptId: undefined,
247
+        handover: undefined,
248
+        SMFlag: true,
240 249
         // 交接人信息
241 250
         accountObj: undefined,
242 251
         // 完成扫描的id
@@ -268,10 +277,177 @@
268 277
         queryObj: {}, //路由传递过来的数据
269 278
         selectRadio: [], //单选框选中的数据,第一项是qrcode,第二项是名称
270 279
         gotoFlag: true,
271
-        content:"",
280
+        content: "",
272 281
       };
273 282
     },
274 283
     methods: {
284
+      // 手动查询标本-确认
285
+      speOk(data) {
286
+        console.log(data);
287
+        if (!data.id) {
288
+          //没有查询到标本
289
+          uni.showModal({
290
+            title: '提示',
291
+            content: "没有查询到标本!",
292
+            showCancel: false,
293
+            success: function(res) {
294
+              if (res.confirm) {
295
+                console.log('用户点击确定');
296
+              } else if (res.cancel) {
297
+                console.log('用户点击取消');
298
+              }
299
+            }
300
+          });
301
+          return;
302
+        }
303
+        this.speModels.disjunctor = false;
304
+        this.hand_scanning_common(data.scode, 'hand');
305
+      },
306
+      // 手动查询标本-取消
307
+      speCancel() {
308
+        this.speModels.disjunctor = false;
309
+      },
310
+      // 手动查询标本弹窗
311
+      showHandViewSpecimen() {
312
+        this.speModels = {
313
+          title: '填写标本编码',
314
+          disjunctor: true,
315
+        }
316
+      },
317
+      // 手动录入标本
318
+      hand_again() {
319
+        this.showHandViewSpecimen();
320
+      },
321
+      // 手动输入标本和扫码公共方法
322
+      hand_scanning_common(ress1, type) {
323
+        // ----------------
324
+        uni.showLoading({
325
+          title: "加载中",
326
+          mask: true,
327
+        });
328
+        //检验二维码的有效性
329
+        post("/dept/scanning", {
330
+          content: ress1,
331
+        }).then((result) => {
332
+          this.SMFlag = true;
333
+          if (result.state == 200 || result.state == 201) {
334
+            let codes = result.code;
335
+            if (codes) {
336
+              let speCode = codes;
337
+              let data = {
338
+                code: speCode,
339
+                type: this.queryObj.type1,
340
+                deptCode: this.DEPTCode,
341
+                ids: [],
342
+              };
343
+              data.ids.push(this.dataId);
344
+              let postType = "";
345
+              if (this.type == "jPBag" || this.type == "drugsBag") {
346
+                postType = "handleDrugsAndJp";
347
+                delete data.ids;
348
+                data.deptId = this.deptId;
349
+                data.handover = this.handover;
350
+              }
351
+              if (this.type == "specimen") {
352
+                data["speCode"] = data.code;
353
+                delete data.code;
354
+                postType = "handleSpes";
355
+              }
356
+              if (this.type == "specimenPlan") {
357
+                data["speCode"] = data.code;
358
+                delete data.code;
359
+                postType = "handlePlanSpes";
360
+              }
361
+              if (this.type == "inspect") {
362
+                postType = "handleIns";
363
+              }
364
+              if (this.type == "patientTransport") {
365
+                postType = "handleTrans";
366
+              }
367
+              post("/workerOrder/" + postType, data).then((ress) => {
368
+                uni.hideLoading();
369
+                if (ress.status == 200) {
370
+                  //标本和标本轮巡工单,扫描标本后会自动调用摄像头,继续扫描,直到status不是200
371
+                  if (this.type == "specimenPlan" || this.type == "specimen") {
372
+                    if (type === 'scan') {
373
+                      this.Scanning_again();
374
+                    } else if (type === 'hand') {
375
+                      // this.hand_again();
376
+                    }
377
+                  }
378
+                  if (this.type == "specimenPlan" || this.type == "specimen") {
379
+                    this.infoDATA = ress.data;
380
+                    this.speNum = ress.specimenCount;
381
+                    uni.redirectTo({
382
+                      url: `../scanning_Result/scanning_Result?type=${
383
+                      this.queryObj.type
384
+                    }&type1=${
385
+                      this.queryObj.type1
386
+                    }&infoData=${encodeURIComponent(
387
+                      JSON.stringify(ress.data)
388
+                    )}&status=${ress.status}&msg=${ress.msg}&deptCode=${
389
+                      this.queryObj.deptCode
390
+                    }&dept=${this.queryObj.dept}&id=${this.dataId}&model=${encodeURIComponent(JSON.stringify(ress))}&speNum=${this.speNum}&scanOrHand=${type}`,
391
+                    });
392
+                  } else if (
393
+                    this.type == "inspect" ||
394
+                    this.type == "patientTransport"
395
+                  ) {
396
+                    uni.redirectTo({
397
+                      url: `../scanning_Result/scanning_Result?type=${
398
+                      this.queryObj.type //baba
399
+                    }&type1=${
400
+                      this.queryObj.type1
401
+                    }&infoData=${encodeURIComponent(
402
+                      JSON.stringify(ress.data)
403
+                    )}&status=${ress.status}&msg=${ress.msg}&deptCode=${
404
+                      this.queryObj.deptCode
405
+                    }&dept=${this.queryObj.dept}&id=${this.dataId}&model=${encodeURIComponent(
406
+                      JSON.stringify(ress)
407
+                    )}&patient=${ress.patient}&patientCode=${
408
+                      ress.patientCode
409
+                    }&deptName=${ress.deptName}&bedNum=${ress.bedNum}`,
410
+                    });
411
+                  } else {
412
+                    uni.redirectTo({
413
+                      url: `../scanning_Result/scanning_Result?type=${
414
+                      this.queryObj.type
415
+                    }&type1=${
416
+                      this.queryObj.type1
417
+                    }&infoData=${encodeURIComponent(
418
+                      JSON.stringify(ress.data)
419
+                    )}&status=${ress.status}&msg=${ress.msg}&deptCode=${
420
+                      this.queryObj.deptCode
421
+                    }&dept=${this.queryObj.dept}&id=${this.dataId}&model=${encodeURIComponent(JSON.stringify(ress))}&accountObj=${encodeURIComponent(JSON.stringify(this.accountObj))}&deptId=${this.deptId}&handover=${this.handover}`,
422
+                    });
423
+                  }
424
+                } else {
425
+                  uni.redirectTo({
426
+                    url: `../scanning_Result/scanning_Result?type=${
427
+                    this.queryObj.type
428
+                  }&type1=${this.queryObj.type1}&status=${ress.status}&msg=${
429
+                    ress.msg
430
+                  }&deptCode=${this.queryObj.deptCode}&dept=${
431
+                    this.queryObj.dept
432
+                  }&id=${this.dataId}&model=${encodeURIComponent(
433
+                    JSON.stringify(this.infoDATA)
434
+                  )}&accountObj=${encodeURIComponent(JSON.stringify(this.accountObj))}&deptId=${this.deptId}&handover=${this.handover}&scanOrHand=${type}`,
435
+                  });
436
+                }
437
+              });
438
+            } else {
439
+              uni.hideLoading();
440
+            }
441
+          } else {
442
+            uni.hideLoading();
443
+            uni.showToast({
444
+              icon: "none",
445
+              title: "请求失败!",
446
+            });
447
+          }
448
+        });
449
+        // ------------------------------
450
+      },
275 451
       // 查看未扫描标本
276 452
       getNoScanSpecimen() {
277 453
         if (!this.gotoFlag) {
@@ -293,129 +469,7 @@
293 469
         // }
294 470
         // this.SMFlag = false;
295 471
         SM().then((ress1) => {
296
-          // ----------------
297
-          uni.showLoading({
298
-            title: "加载中",
299
-            mask: true,
300
-          });
301
-          //检验二维码的有效性
302
-          post("/dept/scanning", {
303
-            content: ress1,
304
-          }).then((result) => {
305
-            // this.SMFlag = true;
306
-            if (result.state == 200 || result.state == 201) {
307
-              let codes = result.code;
308
-              if (codes) {
309
-                let speCode = codes;
310
-                let data = {
311
-                  code: speCode,
312
-                  type: this.queryObj.type1,
313
-                  deptCode: this.DEPTCode,
314
-                  ids: [],
315
-                };
316
-                data.ids.push(this.dataId);
317
-                let postType = "";
318
-                if (this.type == "jPBag" || this.type == "drugsBag") {
319
-                  postType = "handleDrugsAndJp";
320
-                  delete data.ids;
321
-                  data.deptId = this.deptId;
322
-                  data.handover = this.handover;
323
-                }
324
-                if (this.type == "specimen") {
325
-                  data["speCode"] = data.code;
326
-                  delete data.code;
327
-                  postType = "handleSpes";
328
-                }
329
-                if (this.type == "specimenPlan") {
330
-                  data["speCode"] = data.code;
331
-                  delete data.code;
332
-                  postType = "handlePlanSpes";
333
-                }
334
-                if (this.type == "inspect") {
335
-                  postType = "handleIns";
336
-                }
337
-                if (this.type == "patientTransport") {
338
-                  postType = "handleTrans";
339
-                }
340
-                post("/workerOrder/" + postType, data).then((ress) => {
341
-                  uni.hideLoading();
342
-                  if (ress.status == 200) {
343
-                    //标本和标本轮巡工单,扫描标本后会自动调用摄像头,继续扫描,直到status不是200
344
-                    if (this.type == "specimenPlan" || this.type == "specimen") {
345
-                      this.Scanning_again();
346
-                    }
347
-                    if (this.type == "specimenPlan" || this.type == "specimen") {
348
-                      this.infoDATA = ress.data;
349
-                      this.speNum = ress.specimenCount;
350
-                      uni.redirectTo({
351
-                        url: `../scanning_Result/scanning_Result?type=${
352
-                        this.queryObj.type
353
-                      }&type1=${
354
-                        this.queryObj.type1
355
-                      }&infoData=${encodeURIComponent(
356
-                        JSON.stringify(ress.data)
357
-                      )}&status=${ress.status}&msg=${ress.msg}&deptCode=${
358
-                        this.queryObj.deptCode
359
-                      }&dept=${this.queryObj.dept}&id=${this.dataId}&model=${encodeURIComponent(JSON.stringify(ress))}&speNum=${this.speNum}`,
360
-                      });
361
-                    } else if (
362
-                      this.type == "inspect" ||
363
-                      this.type == "patientTransport"
364
-                    ) {
365
-                      uni.redirectTo({
366
-                        url: `../scanning_Result/scanning_Result?type=${
367
-                        this.queryObj.type //baba
368
-                      }&type1=${
369
-                        this.queryObj.type1
370
-                      }&infoData=${encodeURIComponent(
371
-                        JSON.stringify(ress.data)
372
-                      )}&status=${ress.status}&msg=${ress.msg}&deptCode=${
373
-                        this.queryObj.deptCode
374
-                      }&dept=${this.queryObj.dept}&id=${this.dataId}&model=${encodeURIComponent(
375
-                        JSON.stringify(ress)
376
-                      )}&patient=${ress.patient}&patientCode=${
377
-                        ress.patientCode
378
-                      }&deptName=${ress.deptName}&bedNum=${ress.bedNum}`,
379
-                      });
380
-                    } else {
381
-                      uni.redirectTo({
382
-                        url: `../scanning_Result/scanning_Result?type=${
383
-                        this.queryObj.type
384
-                      }&type1=${
385
-                        this.queryObj.type1
386
-                      }&infoData=${encodeURIComponent(
387
-                        JSON.stringify(ress.data)
388
-                      )}&status=${ress.status}&msg=${ress.msg}&deptCode=${
389
-                        this.queryObj.deptCode
390
-                      }&dept=${this.queryObj.dept}&id=${this.dataId}&model=${encodeURIComponent(JSON.stringify(ress))}&accountObj=${encodeURIComponent(JSON.stringify(this.accountObj))}&deptId=${this.deptId}&handover=${this.handover}`,
391
-                      });
392
-                    }
393
-                  } else {
394
-                    uni.redirectTo({
395
-                      url: `../scanning_Result/scanning_Result?type=${
396
-                      this.queryObj.type
397
-                    }&type1=${this.queryObj.type1}&status=${ress.status}&msg=${
398
-                      ress.msg
399
-                    }&deptCode=${this.queryObj.deptCode}&dept=${
400
-                      this.queryObj.dept
401
-                    }&id=${this.dataId}&model=${encodeURIComponent(
402
-                      JSON.stringify(this.infoDATA)
403
-                    )}&accountObj=${encodeURIComponent(JSON.stringify(this.accountObj))}&deptId=${this.deptId}&handover=${this.handover}`,
404
-                    });
405
-                  }
406
-                });
407
-              } else {
408
-                uni.hideLoading();
409
-              }
410
-            } else {
411
-              uni.hideLoading();
412
-              uni.showToast({
413
-                icon: "none",
414
-                title: "请求失败!",
415
-              });
416
-            }
417
-          });
418
-          // ------------------------------
472
+          this.hand_scanning_common(ress1, 'scan');
419 473
         }).catch(err => {
420 474
           // this.SMFlag = true;
421 475
         });
@@ -499,8 +553,9 @@
499 553
             } else {
500 554
               //待送达
501 555
               this.content =
502
-                  `本工单已签到<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>只未签收,您确定完成工单吗?`;
503
-              content = `您在<strong class="red">${ress.deptName}</strong>检验科扫描了<strong class="red">${ress.deptScanNum}</strong>个标本,还需扫描<strong class="red">${ress.deptNotScanNum}</strong>标本。`;
556
+                `本工单已签到<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>只未签收,您确定完成工单吗?`;
557
+              content =
558
+                `您在<strong class="red">${ress.deptName}</strong>检验科扫描了<strong class="red">${ress.deptScanNum}</strong>个标本,还需扫描<strong class="red">${ress.deptNotScanNum}</strong>标本。`;
504 559
             }
505 560
             this.models2 = {
506 561
               disjunctor: true,
@@ -701,6 +756,9 @@
701 756
       this.gotoFlag = true;
702 757
     },
703 758
     onLoad(options) {
759
+      if (options.status == 200&&options.scanOrHand === 'hand'&&(options.type === "specimen"||options.type === "specimenPlan")) {
760
+        this.hand_again();
761
+      }
704 762
       console.log(options, "result");
705 763
       this.queryObj = options;
706 764
       this.isKs = this.queryObj.isKs;

+ 228 - 188
pages/scanning_code/scanning_code.vue

@@ -310,7 +310,8 @@
310 310
         infoType == 'spe-dsd-2' ||
311 311
         (infoType == 'spe-dsd-3' && infoDATA.gdState.value == '5')
312 312
       ">
313
-      <view class="btn2" @click="Scanning_again(dataId)">继续扫描</view>
313
+      <view class="btn3" @click="Scanning_again(dataId)">继续扫描</view>
314
+      <view class="btn3" @click="hand_again(dataId)">手动录入</view>
314 315
     </view>
315 316
     <view class="foot_btn2 footerPadding" v-if="
316 317
         infoType == 'ins-dsd-1' ||
@@ -349,6 +350,10 @@
349 350
     <!-- 弹窗 -->
350 351
     <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
351 352
       @ok="ok" @cancel="cancel" :operate="models.operate"></showModel>
353
+    <!-- 手动查询标本弹窗 -->
354
+    <handViewSpecimen v-if="speModels.disjunctor" :title="speModels.title" :disjunctor="speModels.disjunctor"
355
+      @ok="speOk" @cancel="speCancel">
356
+    </handViewSpecimen>
352 357
   </view>
353 358
 </template>
354 359
 <script>
@@ -365,10 +370,14 @@
365 370
   export default {
366 371
     data() {
367 372
       return {
368
-        // SMFlag:true,
373
+        // 手动查询标本弹窗model
374
+        speModels: {
375
+          disjunctor: false,
376
+        },
377
+        SMFlag: true,
369 378
         // 交接人信息
370
-        accountObj:undefined,
371
-        deptId:undefined,
379
+        accountObj: undefined,
380
+        deptId: undefined,
372 381
         // 完成工单的id
373 382
         wcId: "",
374 383
         // 弹窗model
@@ -387,180 +396,225 @@
387 396
       };
388 397
     },
389 398
     methods: {
399
+      // 手动查询标本-确认
400
+      speOk(data) {
401
+        console.log(data);
402
+        if (!data.id) {
403
+          //没有查询到标本
404
+          uni.showModal({
405
+            title: '提示',
406
+            content: "没有查询到标本!",
407
+            showCancel: false,
408
+            success: function(res) {
409
+              if (res.confirm) {
410
+                console.log('用户点击确定');
411
+              } else if (res.cancel) {
412
+                console.log('用户点击取消');
413
+              }
414
+            }
415
+          });
416
+          return;
417
+        }
418
+        this.speModels.disjunctor = false;
419
+        this.hand_scanning_common(data.scode, 'hand');
420
+      },
421
+      // 手动查询标本-取消
422
+      speCancel() {
423
+        this.speModels.disjunctor = false;
424
+      },
425
+      // 手动查询标本弹窗
426
+      showHandViewSpecimen() {
427
+        this.speModels = {
428
+          title: '填写标本编码',
429
+          disjunctor: true,
430
+        }
431
+      },
432
+      // 手动录入标本
433
+      hand_again(id) {
434
+        this.showHandViewSpecimen();
435
+      },
390 436
       // 拍照
391 437
       photograph(data, obj) {
392 438
         photographTool(data, obj);
393 439
       },
394
-      // 扫描
395
-      Scanning_again(id) {
396
-        // if (!this.SMFlag) {
397
-        //   return;
398
-        // }
399
-        // this.SMFlag = false;
400
-        SM().then((ress1) => {
401
-          // ----------------
402
-          uni.showLoading({
403
-            title: "加载中",
404
-            mask: true,
405
-          });
406
-          //检验二维码的有效性
407
-          post("/dept/scanning", {
408
-            content: ress1,
409
-          }).then((result) => {
410
-            // this.SMFlag = true;
411
-            if (result.state == 200 || result.state == 201) {
412
-              let codes = result.code;
413
-              if (codes) {
414
-                let speCode = codes;
415
-                let data = {
416
-                  code: speCode,
417
-                  type: this.infoType,
418
-                  deptCode: this.DEPTCode,
419
-                  ids: [],
420
-                };
421
-                data.ids.push(id);
422
-                let postType = "";
423
-                if (
424
-                  this.infoDATA.taskType.associationType.value == "jPBag" ||
425
-                  this.infoDATA.taskType.associationType.value == "drugsBag"
426
-                ) {
427
-                  postType = "handleDrugsAndJp";
428
-                  delete data.ids;
429
-                  if(this.accountObj){
430
-                    data.handover = this.accountObj.accountId;
431
-                  }
432
-                  if(this.queryObj.grabOrders){
433
-                    data.grabOrders = '666';
434
-                  }
435
-                  data.deptId = this.deptId;
436
-                }
437
-                if (this.infoDATA.taskType.associationType.value == "specimen") {
438
-                  data["speCode"] = data.code;
439
-                  delete data.code;
440
-                  postType = "handleSpes";
441
-                }
442
-                if (
443
-                  this.infoDATA.taskType.associationType.value == "specimenPlan"
444
-                ) {
445
-                  data["speCode"] = data.code;
446
-                  delete data.code;
447
-                  postType = "handlePlanSpes";
448
-                }
449
-                if (this.infoDATA.taskType.associationType.value == "inspect") {
450
-                  // delete data.type;//seimin
451
-                  postType = "handleIns";
440
+      // 手动输入标本和扫码公共方法,type----scan是扫码,hand是手动录入
441
+      hand_scanning_common(ress1, type) {
442
+        // ----------------
443
+        uni.showLoading({
444
+          title: "加载中",
445
+          mask: true,
446
+        });
447
+        //检验二维码的有效性
448
+        post("/dept/scanning", {
449
+          content: ress1,
450
+        }).then((result) => {
451
+          this.SMFlag = true;
452
+          if (result.state == 200 || result.state == 201) {
453
+            let codes = result.code;
454
+            if (codes) {
455
+              let speCode = codes;
456
+              let data = {
457
+                code: speCode,
458
+                type: this.infoType,
459
+                deptCode: this.DEPTCode,
460
+                ids: [this.dataId],
461
+              };
462
+              let postType = "";
463
+              if (
464
+                this.infoDATA.taskType.associationType.value == "jPBag" ||
465
+                this.infoDATA.taskType.associationType.value == "drugsBag"
466
+              ) {
467
+                postType = "handleDrugsAndJp";
468
+                delete data.ids;
469
+                if (this.accountObj) {
470
+                  data.handover = this.accountObj.accountId;
452 471
                 }
453
-                if (
454
-                  this.infoDATA.taskType.associationType.value ==
455
-                  "patientTransport"
456
-                ) {
457
-                  postType = "handleTrans";
472
+                if (this.queryObj.grabOrders) {
473
+                  data.grabOrders = '666';
458 474
                 }
459
-                //扫描
460
-                post("/workerOrder/" + postType, data).then((ress) => {
461
-                  console.log(ress,1111)
462
-                  if (ress.status == 200) {
463
-                    //标本和标本轮巡工单,扫描标本后会自动调用摄像头,继续扫描,直到status不是200
464
-                    if(this.infoDATA.taskType.associationType.value == 'specimen' || this.infoDATA.taskType.associationType.value == 'specimenPlan'){
475
+                data.deptId = this.deptId;
476
+              }
477
+              if (this.infoDATA.taskType.associationType.value == "specimen") {
478
+                data["speCode"] = data.code;
479
+                delete data.code;
480
+                postType = "handleSpes";
481
+              }
482
+              if (
483
+                this.infoDATA.taskType.associationType.value == "specimenPlan"
484
+              ) {
485
+                data["speCode"] = data.code;
486
+                delete data.code;
487
+                postType = "handlePlanSpes";
488
+              }
489
+              if (this.infoDATA.taskType.associationType.value == "inspect") {
490
+                // delete data.type;//seimin
491
+                postType = "handleIns";
492
+              }
493
+              if (
494
+                this.infoDATA.taskType.associationType.value ==
495
+                "patientTransport"
496
+              ) {
497
+                postType = "handleTrans";
498
+              }
499
+              //扫描
500
+              post("/workerOrder/" + postType, data).then((ress) => {
501
+                console.log(ress, 1111)
502
+                if (ress.status == 200) {
503
+                  //标本和标本轮巡工单,扫描标本后会自动调用摄像头,继续扫描,直到status不是200
504
+                  if (this.infoDATA.taskType.associationType.value == 'specimen' || this.infoDATA.taskType
505
+                    .associationType.value == 'specimenPlan') {
506
+                    if (type === 'scan') {
465 507
                       this.Scanning_again(this.dataId);
508
+                    } else if (type === 'hand') {
509
+                      // this.hand_again(this.dataId);
466 510
                     }
467
-                    if (
468
-                      this.infoDATA.taskType.associationType.value == "drugsBag"
469
-                    ) {
470
-                        uni.hideLoading();
471
-                        // --------start----------
472
-                        uni.navigateTo({
473
-                          url: `../scanning_Result/scanning_Result?type=${
474
-                          this.queryObj.type
475
-                        }&type1=${
476
-                          this.queryObj.type1
477
-                        }&infoData=${encodeURIComponent(
478
-                          JSON.stringify(ress.data)
479
-                        )}&status=${ress.status}&msg=${ress.msg}&deptCode=${
480
-                          this.queryObj.deptCode
481
-                        }&dept=${
482
-                          this.queryObj.dept
483
-                        }&id=${id}&model=${encodeURIComponent(
484
-                          JSON.stringify(ress)
485
-                        )}&accountObj=${encodeURIComponent(JSON.stringify(this.accountObj))}&deptId=${this.deptId}&handover=${this.handover}`,
486
-                        });
487
-                        // ------------end------------
488
-                    } else {
489
-                      uni.hideLoading();
490
-                      // --------start----------
491
-                      // 患者陪检执行中或待送达,患者转运待送达
492
-                      if (
493
-                        ress.type == "ins-zxz-1" ||
494
-                        ress.type == "ins-dsd-1" ||
495
-                        ress.type == "trans-dsd-1"
496
-                      ) {
497
-                        console.log(ress.patientName, "code");
498
-                        uni.navigateTo({
499
-                          url: `../scanning_Result/scanning_Result?type=${
500
-                          this.queryObj.type
501
-                        }&type1=${
502
-                          this.queryObj.type1
503
-                        }&infoData=${encodeURIComponent(
504
-                          JSON.stringify(ress.data)
505
-                        )}&status=${ress.status}&msg=${ress.msg}&patient=${
506
-                          ress.patient
507
-                        }&patientCode=${ress.patientCode}&deptName=${
508
-                          ress.deptName
509
-                        }&bedNum=${ress.bedNum}&deptCode=${
510
-                          this.queryObj.deptCode
511
-                        }&dept=${
512
-                          this.queryObj.dept
513
-                        }&id=${id}&model=${encodeURIComponent(
514
-                          JSON.stringify(ress)
515
-                        )}`,
516
-                        });
517
-                      } else {
518
-                        uni.navigateTo({
519
-                          url: `../scanning_Result/scanning_Result?type=${
520
-                          this.queryObj.type
521
-                        }&type1=${
522
-                          this.queryObj.type1
523
-                        }&infoData=${encodeURIComponent(
524
-                          JSON.stringify(ress.data)
525
-                        )}&status=${ress.status}&msg=${ress.msg}&deptCode=${
526
-                          this.queryObj.deptCode
527
-                        }&dept=${
528
-                          this.queryObj.dept
529
-                        }&id=${id}&model=${encodeURIComponent(
530
-                          JSON.stringify(ress)
531
-                        )}&speNum=${ress.specimenCount}`,
532
-                        });
533
-                      }
534
-
535
-                      // ------------end------------
536
-                    }
537
-                  } else {
511
+                  }
512
+                  if (
513
+                    this.infoDATA.taskType.associationType.value == "drugsBag"
514
+                  ) {
538 515
                     uni.hideLoading();
516
+                    // --------start----------
539 517
                     uni.navigateTo({
540 518
                       url: `../scanning_Result/scanning_Result?type=${
541
-                      this.queryObj.type
542
-                    }&type1=${this.queryObj.type1}&status=${ress.status}&msg=${
543
-                      ress.msg
544
-                    }&deptCode=${this.queryObj.deptCode}&dept=${
545
-                      this.queryObj.dept
546
-                    }&id=${id}&model=${encodeURIComponent(
547
-                      JSON.stringify(ress)
548
-                    )}&accountObj=${encodeURIComponent(JSON.stringify(this.accountObj))}&deptId=${this.deptId}&handover=${this.handover}`,
519
+                        this.queryObj.type
520
+                      }&type1=${
521
+                        this.queryObj.type1
522
+                      }&infoData=${encodeURIComponent(
523
+                        JSON.stringify(ress.data)
524
+                      )}&status=${ress.status}&msg=${ress.msg}&deptCode=${
525
+                        this.queryObj.deptCode
526
+                      }&dept=${
527
+                        this.queryObj.dept
528
+                      }&id=${this.dataId}&model=${encodeURIComponent(
529
+                        JSON.stringify(ress)
530
+                      )}&accountObj=${encodeURIComponent(JSON.stringify(this.accountObj))}&deptId=${this.deptId}&handover=${this.handover}`,
549 531
                     });
532
+                    // ------------end------------
533
+                  } else {
534
+                    uni.hideLoading();
535
+                    // --------start----------
536
+                    // 患者陪检执行中或待送达,患者转运待送达
537
+                    if (
538
+                      ress.type == "ins-zxz-1" ||
539
+                      ress.type == "ins-dsd-1" ||
540
+                      ress.type == "trans-dsd-1"
541
+                    ) {
542
+                      console.log(ress.patientName, "code");
543
+                      uni.navigateTo({
544
+                        url: `../scanning_Result/scanning_Result?type=${
545
+                        this.queryObj.type
546
+                      }&type1=${
547
+                        this.queryObj.type1
548
+                      }&infoData=${encodeURIComponent(
549
+                        JSON.stringify(ress.data)
550
+                      )}&status=${ress.status}&msg=${ress.msg}&patient=${
551
+                        ress.patient
552
+                      }&patientCode=${ress.patientCode}&deptName=${
553
+                        ress.deptName
554
+                      }&bedNum=${ress.bedNum}&deptCode=${
555
+                        this.queryObj.deptCode
556
+                      }&dept=${
557
+                        this.queryObj.dept
558
+                      }&id=${this.dataId}&model=${encodeURIComponent(
559
+                        JSON.stringify(ress)
560
+                      )}`,
561
+                      });
562
+                    } else {
563
+                      uni.navigateTo({
564
+                        url: `../scanning_Result/scanning_Result?type=${
565
+                        this.queryObj.type
566
+                      }&type1=${
567
+                        this.queryObj.type1
568
+                      }&infoData=${encodeURIComponent(
569
+                        JSON.stringify(ress.data)
570
+                      )}&status=${ress.status}&msg=${ress.msg}&deptCode=${
571
+                        this.queryObj.deptCode
572
+                      }&dept=${
573
+                        this.queryObj.dept
574
+                      }&id=${this.dataId}&model=${encodeURIComponent(
575
+                        JSON.stringify(ress)
576
+                      )}&speNum=${ress.specimenCount}&scanOrHand=${type}`,
577
+                      });
578
+                    }
579
+
580
+                    // ------------end------------
550 581
                   }
551
-                });
552
-              }
553
-            } else {
554
-              uni.hideLoading();
555
-              uni.showToast({
556
-                icon: "none",
557
-                title: "请求失败!",
582
+                } else {
583
+                  uni.hideLoading();
584
+                  uni.navigateTo({
585
+                    url: `../scanning_Result/scanning_Result?type=${
586
+                    this.queryObj.type
587
+                  }&type1=${this.queryObj.type1}&status=${ress.status}&msg=${
588
+                    ress.msg
589
+                  }&deptCode=${this.queryObj.deptCode}&dept=${
590
+                    this.queryObj.dept
591
+                  }&id=${this.dataId}&model=${encodeURIComponent(
592
+                    JSON.stringify(ress)
593
+                  )}&accountObj=${encodeURIComponent(JSON.stringify(this.accountObj))}&deptId=${this.deptId}&handover=${this.handover}&scanOrHand=${type}`,
594
+                  });
595
+                }
558 596
               });
559 597
             }
560
-          });
561
-          // ------------------------------
562
-        }).catch(err=>{
563
-          // this.SMFlag = true;
598
+          } else {
599
+            uni.hideLoading();
600
+            uni.showToast({
601
+              icon: "none",
602
+              title: "请求失败!",
603
+            });
604
+          }
605
+        });
606
+        // ------------------------------
607
+      },
608
+      // 扫描
609
+      Scanning_again(id) {
610
+        if (!this.SMFlag) {
611
+          return;
612
+        }
613
+        this.SMFlag = false;
614
+        SM().then((ress1) => {
615
+          this.hand_scanning_common(ress1, 'scan');
616
+        }).catch(err => {
617
+          this.SMFlag = true;
564 618
         });
565 619
       },
566 620
       show(type) {
@@ -694,12 +748,12 @@
694 748
         });
695 749
       },
696 750
     },
697
-    onShow(){
698
-      // this.SMFlag = true;
751
+    onShow() {
752
+      this.SMFlag = true;
699 753
     },
700 754
     onLoad(options) {
701 755
       console.log(options);
702
-      if(options.accountObj && options.accountObj != "undefined"){
756
+      if (options.accountObj && options.accountObj != "undefined") {
703 757
         this.accountObj = JSON.parse(options.accountObj);
704 758
       }
705 759
       if (options.deptId && options.deptId != "undefined") {
@@ -1080,26 +1134,21 @@
1080 1134
       display: flex;
1081 1135
       justify-content: space-between;
1082 1136
 
1083
-      .btn2 {
1084
-        height: 66rpx;
1085
-        width: 100%;
1086
-        background-image: linear-gradient(to right, #72c172, #3bb197);
1087
-        color: #fff;
1088
-        border-radius: 8rpx;
1089
-        font-size: 32rpx;
1090
-        margin-top: 16rpx;
1091
-        text-align: center;
1092
-      }
1093
-
1137
+      .btn2,
1094 1138
       .btn3 {
1095 1139
         height: 66rpx;
1096
-        width: 48%;
1140
+        flex: 1;
1097 1141
         background-image: linear-gradient(to right, #72c172, #3bb197);
1098 1142
         color: #fff;
1099 1143
         border-radius: 8rpx;
1100 1144
         font-size: 32rpx;
1101 1145
         margin-top: 16rpx;
1146
+        margin-right: 16rpx;
1102 1147
         text-align: center;
1148
+
1149
+        &:last-of-type {
1150
+          margin-right: 0;
1151
+        }
1103 1152
       }
1104 1153
     }
1105 1154
 
@@ -1116,7 +1165,7 @@
1116 1165
       .btn1,
1117 1166
       .btn2 {
1118 1167
         height: 66rpx;
1119
-        width: 45%;
1168
+        flex: 1;
1120 1169
         background-image: linear-gradient(to right, #72c172, #3bb197);
1121 1170
         color: #fff;
1122 1171
         border-radius: 8rpx;
@@ -1124,15 +1173,6 @@
1124 1173
         margin-top: 16rpx;
1125 1174
         text-align: center;
1126 1175
       }
1127
-
1128
-      .btn1 {
1129
-        float: left;
1130
-      }
1131
-
1132
-      .btn2 {
1133
-        float: right;
1134
-        text-align: center;
1135
-      }
1136 1176
     }
1137 1177
   }
1138 1178
 </style>

File diff suppressed because it is too large
+ 550 - 570
pages/scanning_djEnd/scanning_djEnd.vue


File diff suppressed because it is too large
+ 586 - 598
pages/scanning_djInfo/scanning_djInfo.vue