|
@@ -424,11 +424,11 @@
|
424
|
424
|
this.gotoFlag = false;
|
425
|
425
|
if(isScan){
|
426
|
426
|
uni.navigateTo({
|
427
|
|
- url: `../noScanSpecimen/noScanSpecimen?deptName=${this.queryObj.dept}workOrderId=${encodeURIComponent(JSON.stringify(this.queryObj.ids))}&deptCode=${this.queryObj.deptCode}&isScan=1`,
|
|
427
|
+ url: `../noScanSpecimen/noScanSpecimen?deptName=${this.queryObj.dept}&workOrderId=${encodeURIComponent(JSON.stringify(this.queryObj.ids))}&deptCode=${this.queryObj.deptCode}&isScan=1`,
|
428
|
428
|
});
|
429
|
429
|
}else{
|
430
|
430
|
uni.navigateTo({
|
431
|
|
- url: `../noScanSpecimen/noScanSpecimen?deptName=${this.queryObj.dept}workOrderId=${encodeURIComponent(JSON.stringify(this.queryObj.ids))}&deptCode=${this.queryObj.deptCode}`,
|
|
431
|
+ url: `../noScanSpecimen/noScanSpecimen?deptName=${this.queryObj.dept}&workOrderId=${encodeURIComponent(JSON.stringify(this.queryObj.ids))}&deptCode=${this.queryObj.deptCode}`,
|
432
|
432
|
});
|
433
|
433
|
}
|
434
|
434
|
},
|
|
@@ -619,20 +619,23 @@
|
619
|
619
|
},
|
620
|
620
|
// 跳转完成工单页面
|
621
|
621
|
gotoOver() {
|
622
|
|
- // uni.navigateTo({
|
623
|
|
- // url: `../scanning/scanning?type=${this.queryObj.type}&type1=${
|
624
|
|
- // this.queryObj.type1
|
625
|
|
- // }&id=${encodeURIComponent(JSON.stringify(this.wcId))}&deptCode=${
|
626
|
|
- // this.queryObj.deptCode
|
627
|
|
- // }&dept=${this.queryObj.dept}&content=${this.content}`,
|
628
|
|
- // });
|
629
|
|
- uni.navigateTo({
|
630
|
|
- url: `../specimenCheckingEnd/specimenCheckingEnd?type=${this.queryObj.type}&type1=${
|
631
|
|
- this.queryObj.type1
|
632
|
|
- }&id=${encodeURIComponent(JSON.stringify(this.wcId))}&deptCode=${
|
633
|
|
- this.queryObj.deptCode
|
634
|
|
- }&dept=${this.queryObj.dept}&content=${this.content}`,
|
635
|
|
- });
|
|
622
|
+ if(this.queryObj.type === 'specimenPlan'){
|
|
623
|
+ uni.navigateTo({
|
|
624
|
+ url: `../specimenCheckingEnd/specimenCheckingEnd?type=${this.queryObj.type}&type1=${
|
|
625
|
+ this.queryObj.type1
|
|
626
|
+ }&id=${encodeURIComponent(JSON.stringify(this.wcId))}&deptCode=${
|
|
627
|
+ this.queryObj.deptCode
|
|
628
|
+ }&dept=${this.queryObj.dept}&content=${this.content}`,
|
|
629
|
+ });
|
|
630
|
+ }else{
|
|
631
|
+ uni.navigateTo({
|
|
632
|
+ url: `../scanning/scanning?type=${this.queryObj.type}&type1=${
|
|
633
|
+ this.queryObj.type1
|
|
634
|
+ }&id=${encodeURIComponent(JSON.stringify(this.wcId))}&deptCode=${
|
|
635
|
+ this.queryObj.deptCode
|
|
636
|
+ }&dept=${this.queryObj.dept}&content=${this.content}`,
|
|
637
|
+ });
|
|
638
|
+ }
|
636
|
639
|
},
|
637
|
640
|
// 继续扫描
|
638
|
641
|
Scanning_again() {
|