|
@@ -1327,27 +1327,27 @@ export default {
|
1327
|
1327
|
if (this.currentNavIndex == 1) {
|
1328
|
1328
|
clearTimeout(this.timer);
|
1329
|
1329
|
this.timer = setTimeout(() => {
|
1330
|
|
- this.getListSpecimenWorkOrderMsg(false);
|
|
1330
|
+ this.getListSpecimenWorkOrderMsg(this.swiperList.length === 0);
|
1331
|
1331
|
}, 30000);
|
1332
|
1332
|
} else if (this.currentNavIndex == 2) {
|
1333
|
1333
|
clearTimeout(this.timer2);
|
1334
|
1334
|
this.timer2 = setTimeout(() => {
|
1335
|
|
- this.getWorkerMessage(false);
|
|
1335
|
+ this.getWorkerMessage(this.workerMessage.length === 0);
|
1336
|
1336
|
}, 30000);
|
1337
|
1337
|
} else if (this.currentNavIndex == 3) {
|
1338
|
1338
|
clearTimeout(this.timer4);
|
1339
|
1339
|
this.timer4 = setTimeout(() => {
|
1340
|
|
- this.getOnlines(false);
|
|
1340
|
+ this.getOnlines(this.onlines.length === 0);
|
1341
|
1341
|
}, 30000);
|
1342
|
1342
|
} else if (this.currentNavIndex == 4) {
|
1343
|
1343
|
clearTimeout(this.timer5);
|
1344
|
1344
|
this.timer5 = setTimeout(() => {
|
1345
|
|
- this.getListParent(false);
|
|
1345
|
+ this.getListParent(this.parentList.length === 0);
|
1346
|
1346
|
}, 30000);
|
1347
|
1347
|
} else if (this.currentNavIndex == 5) {
|
1348
|
1348
|
clearTimeout(this.timer6);
|
1349
|
1349
|
this.timer6 = setTimeout(() => {
|
1350
|
|
- this.getListDrug(false);
|
|
1350
|
+ this.getListDrug(this.drugList.length === 0);
|
1351
|
1351
|
}, 30000);
|
1352
|
1352
|
}
|
1353
|
1353
|
},
|