seimin 1 year ago
parent
commit
6327d38f41

+ 38 - 3
components/showModel/showModel.vue

@@ -5,7 +5,7 @@
5 5
         {{ title }}
6 6
         <text v-if="operate.know == '知道了' && timerFlag">({{ time }})</text>
7 7
       </view>
8
-      <view class="showModel__article" :class="{ p0: textareaFlag, p1: radioInspectionDistanceItem.length }">
8
+      <view class="showModel__article" :class="{ p0: textareaFlag, p1: radioInspectionDistanceItem.length, p2: childrenDeptList.length }">
9 9
         <text
10 10
           v-if="icon"
11 11
           class="showModel__icon icon_transport"
@@ -46,6 +46,9 @@
46 46
             </view>
47 47
           </radio-group>
48 48
         </view>
49
+        <view class="childrenDeptList" v-if="childrenDeptList.length">
50
+          <view @click="clickHandler(item)" v-for="(item, index) in childrenDeptList" :key="item.id" class="childrenDeptItem">{{ item.dept }}</view>
51
+        </view>
49 52
       </view>
50 53
       <view class="showModel__footer">
51 54
         <view
@@ -162,6 +165,13 @@ export default {
162 165
         return [];
163 166
       },
164 167
     },
168
+    // 子科室列表
169
+    childrenDeptList: {
170
+      type: Array,
171
+      default: () => {
172
+        return [];
173
+      },
174
+    },
165 175
     // 操作按钮文字
166 176
     operate: {
167 177
       type: Object,
@@ -173,6 +183,10 @@ export default {
173 183
     },
174 184
   },
175 185
   methods: {
186
+    clickHandler(item){
187
+      console.log(item);
188
+      this.$emit('ok', item)
189
+    },
176 190
     // 单选框选中
177 191
     radioChange(item){
178 192
       this.$emit('radioChange',item.target.value)
@@ -245,9 +259,9 @@ export default {
245 259
 
246 260
     .showModel__article {
247 261
       color: #000;
248
-      margin: 40rpx auto 25rpx;
262
+      margin: 0 auto 25rpx;
249 263
       width: 488rpx;
250
-      padding: 60rpx 0;
264
+      padding: 60rpx 16rpx;
251 265
       background-color: rgb(249, 250, 251);
252 266
       border: 2rpx solid rgb(229, 233, 237);
253 267
       border-radius: 12rpx;
@@ -256,6 +270,7 @@ export default {
256 270
       flex-direction: column;
257 271
       justify-content: center;
258 272
       align-items: center;
273
+      text-align: justify;
259 274
       &.p0 {
260 275
         padding: 0;
261 276
       }
@@ -263,6 +278,26 @@ export default {
263 278
       &.p1 {
264 279
         text-align: left;
265 280
       }
281
+      
282
+      &.p2 {
283
+        text-indent: 2em;
284
+      }
285
+      
286
+      .childrenDeptList{
287
+        width: 100%;
288
+        max-height: 50vh;
289
+        overflow-y: auto;
290
+        .childrenDeptItem{
291
+          background-color: #fff;
292
+          height: 80rpx;
293
+          border-radius: 80rpx;
294
+          display: flex;
295
+          align-items: center;
296
+          justify-content: center;
297
+          color: #49b856;
298
+          margin-top: 24rpx;
299
+        }
300
+      }
266 301
 
267 302
       .showModel__icon {
268 303
         font-size: 138rpx;

+ 1 - 1
main.js

@@ -7,7 +7,7 @@ import './mixins/mixin'
7 7
 // new VConsole();
8 8
 // import eruda from 'eruda';
9 9
 // eruda.init();
10
-console.info('v2.4.47');
10
+console.info('v2.4.48');
11 11
 Vue.prototype.wx = wx //声明扫码
12 12
 Vue.prototype.audios = [] //待播放的语音集合
13 13
 // #endif

+ 3 - 13
pages/quiltWashing/quiltWashingGetEndCheck/quiltWashingGetEndCheck.vue

@@ -84,23 +84,13 @@
84 84
         }).then((res) => {
85 85
           uni.hideLoading();
86 86
           if (res.state == 200) {
87
-            uni.showModal({
88
-              title: "提示",
89
-              content: "操作成功",
90
-              showCancel: false,
91
-              success: (result) => {
92
-                if (result.confirm) {
93
-                  console.log("用户点击确定");
94
-                  uni.navigateTo({
95
-                    url: `../../receiptpage/receiptpage`,
96
-                  });
97
-                }
98
-              },
87
+            uni.navigateTo({
88
+              url: `../../receiptpage/receiptpage`,
99 89
             });
100 90
           }else{
101 91
             uni.showToast({
102 92
               icon: "none",
103
-              title: result.msg || "接口获取数据失败!",
93
+              title: res.msg || "接口获取数据失败!",
104 94
             });
105 95
           }
106 96
         });

+ 108 - 16
pages/quiltWashing/quiltWashingGetSignIn/quiltWashingGetSignIn.vue

@@ -52,6 +52,9 @@
52 52
     <!-- 弹窗 -->
53 53
     <showModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content"
54 54
       @ok="ok1" @cancel="cancel1" :operate="models1.operate"></showModel>
55
+    <!-- 弹窗 -->
56
+    <showModel :title="models2.title" :icon="models2.icon" :disjunctor="models2.disjunctor" :content="models2.content"
57
+      @ok="ok2" @cancel="cancel2" :operate="models2.operate"></showModel>
55 58
   </view>
56 59
 </template>
57 60
 <script>
@@ -77,10 +80,60 @@
77 80
         models1: {
78 81
           disjunctor: false,
79 82
         },
83
+        // 弹窗model
84
+        models2: {
85
+          disjunctor: false,
86
+        },
80 87
       };
81 88
     },
82 89
     methods: {
83 90
       //确定
91
+      ok2() {
92
+        this.models2.disjunctor = false;
93
+        let bussList = this.dataList.map(v => v.children).flat().map(v => v.clothesWashingDTO).map(v => ({...v, exception: 0, recyclingNum: 0,}));
94
+        uni.showLoading({
95
+          title: "加载中",
96
+          mask: true,
97
+        });
98
+        post("/transflow/createOrTakeOrder", {
99
+          type: 'clothingGet',
100
+          id: 0,
101
+          startDeptId: this.queryObj.startDeptId,
102
+          hosId: this.hosId,
103
+          bussList,
104
+          orderId: this.queryObj.orderId,
105
+        }).then((res) => {
106
+          uni.hideLoading();
107
+          if (res.state == 200) {
108
+            uni.navigateTo({
109
+              url: `../../receiptpage/receiptpage`,
110
+            });
111
+          }else{
112
+            uni.showToast({
113
+              icon: "none",
114
+              title: res.msg || "接口获取数据失败!",
115
+            });
116
+          }
117
+        });
118
+      },
119
+      //取消
120
+      cancel2() {
121
+        this.models2.disjunctor = false;
122
+      },
123
+      // 弹窗
124
+      showModel2() {
125
+        this.models2 = {
126
+          disjunctor: true,
127
+          title: "提示",
128
+          content: `<strong class="red">${this.queryObj.startDeptName}</strong>无需填写回收数量,您确认吗?`,
129
+          icon: "warn",
130
+          operate: {
131
+            ok: "确定",
132
+            cancel: "取消",
133
+          },
134
+        };
135
+      },
136
+      //确定
84 137
       ok1() {
85 138
         this.models1.disjunctor = false;
86 139
         let bussList = this.dataList.map(v => v.children).flat().map(v => v.clothesWashingDTO).map(v => ({...v, exception: 0}));
@@ -98,18 +151,8 @@
98 151
         }).then((res) => {
99 152
           uni.hideLoading();
100 153
           if (res.state == 200) {
101
-            uni.showModal({
102
-              title: "提示",
103
-              content: "交接成功",
104
-              showCancel: false,
105
-              success: (result) => {
106
-                if (result.confirm) {
107
-                  console.log("用户点击确定");
108
-                  uni.navigateTo({
109
-                    url: `../../receiptpage/receiptpage`,
110
-                  });
111
-                }
112
-              },
154
+            uni.navigateTo({
155
+              url: `../../receiptpage/receiptpage`,
113 156
             });
114 157
           }else{
115 158
             uni.showToast({
@@ -127,10 +170,16 @@
127 170
       showModel1() {
128 171
         let bussList = this.dataList.map(v => v.children).flat();
129 172
         let num = bussList.reduce((prev, current) => prev + current.clothesWashingDTO.recyclingNum, 0);
173
+        let content = '';
174
+        if(this.queryObj.name){
175
+          content = `<strong class="red">${this.queryObj.startDeptName}</strong>已与<strong class="red">${this.queryObj.name}</strong>交接<strong class="red">${num}件</strong>被服,交接人为<strong class="red">${this.queryObj.name}</strong>,您确认交接吗?`;
176
+        }else{
177
+          content = `<strong class="red">${this.queryObj.startDeptName}</strong>已交接<strong class="red">${num}件</strong>被服,您确认交接吗?`;
178
+        }
130 179
         this.models1 = {
131 180
           disjunctor: true,
132 181
           title: "提示",
133
-          content: `<strong class="red">${this.queryObj.startDeptName}</strong>已与<strong class="red">${this.queryObj.name}</strong>交接<strong class="red">${num}件</strong>被服,交接人为<strong class="red">${this.queryObj.name}</strong>,您确认交接吗?`,
182
+          content,
134 183
           icon: "warn",
135 184
           operate: {
136 185
             ok: "确定",
@@ -190,11 +239,49 @@
190 239
           }
191 240
         });
192 241
       },
242
+      getNoFillInQuantityIds(){
243
+        uni.showLoading({
244
+          title: "加载中",
245
+          mask: true,
246
+        });
247
+        post("/simple/data/fetchDataList/taskTypeConfig", {
248
+            "idx": 0,
249
+            "sum": 10,
250
+            "taskTypeConfig": {
251
+                "taskTypeDTO": {
252
+                    "hosId": {
253
+                        "id": this.hosId
254
+                    },
255
+                    "ordinaryField": {
256
+                        "key": "ordinary_field",
257
+                        "value": "clothingGet"
258
+                    }
259
+                }
260
+            }
261
+        }).then((result) => {
262
+          uni.hideLoading();
263
+          if (result.status == 200) {
264
+            let dataList = result.list || [];
265
+            if(dataList.length){
266
+              let flag = dataList[0].noFillInQuantityIds.split(',').includes(this.queryObj.startDeptId);
267
+              if(flag){
268
+                this.showModel2();
269
+              }
270
+            }
271
+          } else {
272
+            uni.showToast({
273
+              icon: "none",
274
+              title: result.msg || "接口获取数据失败!",
275
+            });
276
+          }
277
+        });
278
+      },
193 279
     },
194 280
     onLoad(options) {
195 281
       console.log(options, "result");
196 282
       this.queryObj = options;
197 283
       this.getInfo();
284
+      this.getNoFillInQuantityIds();
198 285
       // #ifdef APP-PLUS
199 286
       webHandle("no", "app");
200 287
       // #endif
@@ -253,7 +340,7 @@
253 340
         border-bottom: 1rpx solid #EEEEEE;
254 341
         .Scanning_cont_head_item{
255 342
           flex: 1;
256
-          font-size: 28rpx;
343
+          font-size: 32rpx;
257 344
           font-weight: bold;
258 345
           display: flex;
259 346
           justify-content: center;
@@ -303,17 +390,22 @@
303 390
           display: flex;
304 391
           align-items: center;
305 392
           font-size: 28rpx;
306
-          border-bottom: 1rpx solid #CCCCCC;
393
+          border: 1rpx solid #272727;
394
+          border-top: none;
307 395
           &.Scanning_cont_list_head{
308 396
             font-weight: bold;
309 397
             font-size: 28rpx;
310
-            border-bottom: none;
398
+            border-top: 1rpx solid #272727;
311 399
             flex-shrink: 0;
312 400
           }
313 401
           .name,
314 402
           .value{
315 403
             padding: 0 40rpx;
316 404
             flex: 1;
405
+            display: flex;
406
+            align-items: center;
407
+            height: 100%;
408
+            border-right: 1rpx solid #272727;
317 409
           }
318 410
           .value {
319 411
             view{

+ 10 - 15
pages/quiltWashing/quiltWashingSendSignIn/quiltWashingSendSignIn.vue

@@ -110,18 +110,8 @@
110 110
                   .then((res) => {
111 111
                     uni.hideLoading();
112 112
                     if (res.data && res.data.state == 200) {
113
-                      uni.showModal({
114
-                        title: "提示",
115
-                        content: "操作成功",
116
-                        showCancel: false,
117
-                        success: (result) => {
118
-                          if (result.confirm) {
119
-                            console.log("用户点击确定");
120
-                            uni.navigateTo({
121
-                              url: `../../receiptpage/receiptpage`,
122
-                            });
123
-                          }
124
-                        },
113
+                      uni.navigateTo({
114
+                        url: `../../receiptpage/receiptpage`,
125 115
                       });
126 116
                     } else {
127 117
                       uni.navigateTo({
@@ -237,7 +227,7 @@
237 227
         border-bottom: 1rpx solid #EEEEEE;
238 228
         .Scanning_cont_head_item{
239 229
           flex: 1;
240
-          font-size: 28rpx;
230
+          font-size: 32rpx;
241 231
           font-weight: bold;
242 232
           display: flex;
243 233
           justify-content: center;
@@ -287,17 +277,22 @@
287 277
           display: flex;
288 278
           align-items: center;
289 279
           font-size: 28rpx;
290
-          border-bottom: 1rpx solid #CCCCCC;
280
+          border: 1rpx solid #272727;
281
+          border-top: none;
291 282
           &.Scanning_cont_list_head{
292 283
             font-weight: bold;
293 284
             font-size: 28rpx;
294
-            border-bottom: none;
285
+            border-top: 1rpx solid #272727;
295 286
             flex-shrink: 0;
296 287
           }
297 288
           .name,
298 289
           .value{
299 290
             padding: 0 10rpx;
300 291
             flex: 1;
292
+            display: flex;
293
+            align-items: center;
294
+            height: 100%;
295
+            border-right: 1rpx solid #272727;
301 296
           }
302 297
           .value {
303 298
             view{

+ 134 - 16
pages/receiptpage/receiptpage.vue

@@ -385,6 +385,9 @@
385 385
     <!-- 被服洗涤弹窗 -->
386 386
     <showModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content"
387 387
       @ok="ok1" @cancel="cancel1" :operate="models1.operate"></showModel>
388
+      
389
+    <!-- 父级科室弹窗 -->
390
+    <showModel :title="models2.title" icon="" :disjunctor="models2.disjunctor" :content="models2.content" @ok="ok2" @cancel="cancel2" :operate="models2.operate" :childrenDeptList="models2.list"></showModel>
388 391
   </view>
389 392
 </template>
390 393
 <script>
@@ -408,6 +411,7 @@
408 411
   export default {
409 412
     data() {
410 413
       return {
414
+        clothingType: '',//被服回收扫码的类型,dept|user
411 415
         isShowExecFilter: false,
412 416
         deptName: '',
413 417
         currentId: 0,
@@ -492,6 +496,10 @@
492 496
         models1: {
493 497
           disjunctor: false,
494 498
         },
499
+        // 弹窗model
500
+        models2: {
501
+          disjunctor: false,
502
+        },
495 503
         // 悬浮按钮样式
496 504
         pattern: {
497 505
           buttonColor: "#6cc076",
@@ -1511,27 +1519,29 @@
1511 1519
           title: "加载中",
1512 1520
           mask: true,
1513 1521
         });
1522
+        let startDeptId, startDeptName, handoverId, handoverName;
1523
+        if(this.clothingType === 'user'){
1524
+          startDeptId = this.quiltData.dept.id;
1525
+          startDeptName = this.quiltData.dept.dept;
1526
+          handoverId = this.quiltData.id;
1527
+          handoverName = this.quiltData.name;
1528
+        }else if(this.clothingType === 'dept'){
1529
+          startDeptId = this.quiltData.id;
1530
+          startDeptName = this.quiltData.dept;
1531
+          handoverId = undefined;
1532
+          handoverName = '';
1533
+        }
1514 1534
         post("/transflow/createOrTakeOrder", {
1515 1535
           type: 'clothingGet',
1516 1536
           id: 0,
1517
-          startDeptId: this.quiltData.dept.id,
1537
+          startDeptId,
1518 1538
           hosId: this.hosId,
1519
-          handoverId: this.quiltData.id,
1539
+          handoverId,
1520 1540
         }).then((res) => {
1521 1541
           uni.hideLoading();
1522 1542
           if (res.data && res.data.state == 200) {
1523
-            uni.showModal({
1524
-              title: "提示",
1525
-              content: "建单成功",
1526
-              showCancel: false,
1527
-              success: (result) => {
1528
-                if (result.confirm) {
1529
-                  console.log("用户点击确定");
1530
-                  uni.navigateTo({
1531
-                    url: `../quiltWashing/quiltWashingGetSignIn/quiltWashingGetSignIn?quiltCode=${this.quiltCode}&startDeptId=${this.quiltData.dept.id}&startDeptName=${this.quiltData.dept.dept}&orderId=${res.data.orderId}&name=${this.quiltData.name}`,
1532
-                  });
1533
-                }
1534
-              },
1543
+            uni.navigateTo({
1544
+              url: `../quiltWashing/quiltWashingGetSignIn/quiltWashingGetSignIn?quiltCode=${this.quiltCode}&startDeptId=${startDeptId}&startDeptName=${startDeptName}&orderId=${res.data.orderId}&name=${handoverName}`,
1535 1545
             });
1536 1546
           }else{
1537 1547
             uni.showToast({
@@ -1548,10 +1558,16 @@
1548 1558
       // 被服回收弹窗
1549 1559
       showQuiltData(data) {
1550 1560
         this.quiltData = data;
1561
+        let content = '';
1562
+        if(this.clothingType === 'user'){
1563
+          content = `您扫描的是<strong class="red">${data.name}</strong>的工号,是否建立<strong class="red">${data.dept.dept}</strong>的被服回收工单吗?`;
1564
+        }else if(this.clothingType === 'dept'){
1565
+          content = `您扫描的科室码,是否建立<strong class="red">${data.dept}</strong>的被服回收工单吗?`;
1566
+        }
1551 1567
         this.models1 = {
1552 1568
           disjunctor: true,
1553 1569
           title: "提示",
1554
-          content: `您扫描的是${data.name}的工号,是否建立${data.dept.dept}的被服回收工单吗?`,
1570
+          content,
1555 1571
           icon: "warn",
1556 1572
           operate: {
1557 1573
             ok: "建立工单",
@@ -1559,6 +1575,106 @@
1559 1575
           },
1560 1576
         };
1561 1577
       },
1578
+      //确定
1579
+      ok2(deptDto) {
1580
+        console.log(deptDto);
1581
+        this.models2.disjunctor = false;
1582
+        uni.showLoading({
1583
+          title: "加载中",
1584
+          mask: true,
1585
+        });
1586
+        let startDeptId, startDeptName, handoverId, handoverName;
1587
+        if(this.clothingType === 'user'){
1588
+          startDeptId = deptDto.id;
1589
+          startDeptName = deptDto.dept;
1590
+          handoverId = this.quiltData.id;
1591
+          handoverName = this.quiltData.name;
1592
+        }else if(this.clothingType === 'dept'){
1593
+          startDeptId = deptDto.id;
1594
+          startDeptName = deptDto.dept;
1595
+          handoverId = undefined;
1596
+          handoverName = '';
1597
+        }
1598
+        post("/transflow/createOrTakeOrder", {
1599
+          type: 'clothingGet',
1600
+          id: 0,
1601
+          startDeptId,
1602
+          hosId: this.hosId,
1603
+          handoverId,
1604
+        }).then((res) => {
1605
+          uni.hideLoading();
1606
+          if (res.data && res.data.state == 200) {
1607
+            uni.navigateTo({
1608
+              url: `../quiltWashing/quiltWashingGetSignIn/quiltWashingGetSignIn?quiltCode=${this.quiltCode}&startDeptId=${startDeptId}&startDeptName=${startDeptName}&orderId=${res.data.orderId}&name=${handoverName}`,
1609
+            });
1610
+          }else{
1611
+            uni.showToast({
1612
+              icon: "none",
1613
+              title: res.data ? res.data.msg : "接口获取数据失败!",
1614
+            });
1615
+          }
1616
+        });
1617
+      },
1618
+      //取消
1619
+      cancel2() {
1620
+        this.models2.disjunctor = false;
1621
+      },
1622
+      showParentQuiltData(data){
1623
+        this.quiltData = data;
1624
+        // 判断是否是父级科室
1625
+        let startDeptId, startDeptName, handoverId, handoverName, content;
1626
+        if(this.clothingType === 'user'){
1627
+          startDeptId = this.quiltData.dept.id;
1628
+          startDeptName = this.quiltData.dept.dept;
1629
+          handoverId = this.quiltData.id;
1630
+          handoverName = this.quiltData.name;
1631
+          content = `您扫描的是<strong class="red">${handoverName}</strong>的工号,科室为<strong class="red">${startDeptName}</strong>,需要选择相应的子级科室建单。`;
1632
+        }else if(this.clothingType === 'dept'){
1633
+          startDeptId = this.quiltData.id;
1634
+          startDeptName = this.quiltData.dept;
1635
+          handoverId = undefined;
1636
+          handoverName = '';
1637
+          content = `您扫描的是科室为<strong class="red">${startDeptName}</strong>,需要选择相应的子级科室建单。`;
1638
+        }
1639
+        uni.showLoading({
1640
+          title: "加载中",
1641
+          mask: true,
1642
+        });
1643
+        post("/data/fetchDataList/department", {
1644
+          "idx": 0,
1645
+          "sum": 9999,
1646
+          "department": {
1647
+              "cascadeHosId": this.hosId,
1648
+              "parent": {
1649
+                "id": startDeptId
1650
+              },
1651
+              "searchType": 1,// 简单查询
1652
+          }
1653
+        }).then((res) => {
1654
+          uni.hideLoading();
1655
+          if (res.status == 200) {
1656
+            if(res.list.length > 0){
1657
+              this.models2 = {
1658
+                disjunctor: true,
1659
+                title: "提示",
1660
+                content,
1661
+                icon: "warn",
1662
+                list: res.list,
1663
+                operate: {
1664
+                  cancel: "取消",
1665
+                },
1666
+              };
1667
+            }else{
1668
+              this.showQuiltData(data)
1669
+            }
1670
+          }else{
1671
+            uni.showToast({
1672
+              icon: "none",
1673
+              title: res.data ? res.data.msg : "接口获取数据失败!",
1674
+            });
1675
+          }
1676
+        });
1677
+      },
1562 1678
       // 扫描工牌-被服洗涤
1563 1679
       quiltScan() {
1564 1680
         if (!this.SMFlag) {
@@ -1586,7 +1702,9 @@
1586 1702
                   .then((res) => {
1587 1703
                     uni.hideLoading();
1588 1704
                     if (res.state == 200) {
1589
-                      this.showQuiltData(res.data)
1705
+                      this.clothingType = res.type;
1706
+                      this.showParentQuiltData(res.data);
1707
+                      // this.showQuiltData(res.data)
1590 1708
                     } else {
1591 1709
                       uni.navigateTo({
1592 1710
                         url: `../scanning_Result/scanning_Result?status=${res.state}&msg=${res.msg}&qrcode=${this.quiltCode}`,

+ 25 - 9
pages/scanning_all/scanning_all.vue

@@ -1,7 +1,7 @@
1 1
 <template>
2 2
   <view class="Scanning_all">
3 3
     <view class="Scanning">
4
-      <view class="Scanning_top" id="Scanning_tops" :animation="animationData">
4
+      <view class="Scanning_top" id="Scanning_tops" :animation="animationData" v-if="workData.length > 0">
5 5
         <view class="Scanning_top_icon">
6 6
           <text class="cubeic-ok icon_transport transport-duigou"></text>
7 7
         </view>
@@ -13,12 +13,23 @@
13 13
           <view>可选择多个工单后,点击 一键送达 完成配送.</view>
14 14
         </view>
15 15
       </view>
16
-      <view class="title" v-if="workData && workData.length > 0">
16
+      <view class="Scanning_top" id="Scanning_tops" :animation="animationData" v-if="workData.length === 0">
17
+        <view class="Scanning_top_icon">
18
+          <text class="cubeic-close icon_transport transport-shibai"></text>
19
+        </view>
20
+        <view class="Scanning_top_text">
21
+          <view class="text1">签到失败</view>
22
+        </view>
23
+        <view class="Scanning_cont">
24
+          您扫描的科室为<text class="red">{{deptName}}</text>,未匹配到工单,请确认。
25
+        </view>
26
+      </view>
27
+      <view class="title" v-if="workData.length > 0">
17 28
         <text class="span1">工单信息</text>
18 29
         <text class="span2" @click="all()" v-if="tabType != 'specimenPlan'">全选</text>
19 30
         <text class="span3" @click="Dall()">全不选</text>
20 31
       </view>
21
-      <view class="tabs" v-if="workData && workData.length > 0">
32
+      <view class="tabs" v-if="workData.length > 0">
22 33
         <view class="tab">
23 34
           <view @click="act('drugsBag')" v-if="infoDATA['drugsBag']">
24 35
             <view id="10" :class="{ acts: tabType == 'drugsBag' }">药品({{ infoDATA.drugsBag.length }})</view>
@@ -53,13 +64,13 @@
53 64
           </view>
54 65
         </view>
55 66
       </view>
56
-      <view class="page_items" v-if="!workData" style="font-size: 18px; margin-top: 15%">
67
+      <view class="page_items" v-if="!workData.length" style="font-size: 18px; margin-top: 15%">
57 68
         <view class="zwsj">
58 69
           <image class="zwsj_img" mode="widthFix" src="../../static/img/zanwushuju.png"></image>
59 70
           <view class="zwsj_txt">暂无工单</view>
60 71
         </view>
61 72
       </view>
62
-      <view class="page_items footerOtherMargin" v-if="workData && workData.length > 0">
73
+      <view class="page_items footerOtherMargin" v-if="workData.length > 0">
63 74
         <view class="page_item" v-for="(infoDATA, i) of workData" :key="i">
64 75
           <view class="page_item_top">
65 76
             <view class="page_item_top_L">
@@ -164,12 +175,12 @@
164 175
         </view>
165 176
       </view>
166 177
 
167
-      <view class="foot_btn2 footerPadding" v-if="workData && workData.length > 0">
178
+      <view class="foot_btn2 footerPadding" v-if="workData.length > 0">
168 179
         <view class="btn1" @click="allStart()" v-if="flag">一键操作</view>
169 180
         <view class="btn1" v-if="!flag">一键操作</view>
170 181
         <view class="btn1" @click="showAlert">知道了</view>
171 182
       </view>
172
-      <view class="foot_btn1 footerPadding" v-if="!workData">
183
+      <view class="foot_btn1 footerPadding" v-if="!workData.length">
173 184
         <view class="btn3" @click="showAlert">知道了</view>
174 185
       </view>
175 186
     </view>
@@ -717,7 +728,7 @@
717 728
       act(type) {
718 729
         this.Dall();
719 730
         this.tabType = type;
720
-        this.workData = this.infoDATA[type];
731
+        this.workData = this.infoDATA[type] || [];
721 732
         this.all();
722 733
       },
723 734
       // 已选择的项中是否包含该id
@@ -836,7 +847,7 @@
836 847
         }
837 848
       }
838 849
       console.log(this.infoDATA);
839
-      this.workData = this.infoDATA[arr[0]];
850
+      this.workData = this.infoDATA[arr[0]] || [];
840 851
       this.tabType = arr[0];
841 852
       this.all();
842 853
       // #ifdef APP-PLUS
@@ -976,6 +987,11 @@
976 987
             font-size: 140rpx;
977 988
             color: #35b34a;
978 989
           }
990
+          
991
+          .cubeic-close {
992
+          	font-size: 140rpx;
993
+          	color: #ff3b53;
994
+          }
979 995
         }
980 996
 
981 997
         .Scanning_top_text {