|
@@ -2,7 +2,7 @@
|
2
|
2
|
<view class="Receiptpage">
|
3
|
3
|
<view class="page_tab">
|
4
|
4
|
<view class="page_tab_bar" :class="{ active: item.label === selectedLabelSlots }" v-for="item in tabs"
|
5
|
|
- :key="item.value" @click="clickHandler(item.label)">
|
|
5
|
+ :key="item.value" @click.prevent="clickHandler(item.label)">
|
6
|
6
|
{{ item.label }}
|
7
|
7
|
<text class="tab_num">( {{ item.num }} )</text>
|
8
|
8
|
<view class="more" v-if="item.label === '执行中'" @click.stop="execFilter"></view>
|
|
@@ -320,14 +320,14 @@
|
320
|
320
|
<view class="bigScreenWrap">
|
321
|
321
|
<bigScreen ref="bigscreen"></bigScreen>
|
322
|
322
|
<view class="more" v-if="arrayBigScreen.length"></view>
|
323
|
|
- <picker class="more_picker" @click.stop @change="execFilterBigScreen($event)" :value="indexBigScreen"
|
|
323
|
+ <picker class="more_picker" @cancel="cancelPicker" @click.stop @change="execFilterBigScreen($event)" :value="indexBigScreen"
|
324
|
324
|
:range="arrayBigScreen" range-key="name" v-if="arrayBigScreen.length">
|
325
|
325
|
<view class="uni-input">{{ arrayBigScreen[indexBigScreen].name }}</view>
|
326
|
326
|
</picker>
|
327
|
327
|
</view>
|
328
|
|
- <!-- 悬浮按钮 -->
|
329
|
|
- <uni-fab :pattern="pattern" :content="content" :direction="direction" @trigger="trigger"></uni-fab>
|
330
|
|
- <!-- 弹窗 -->
|
|
328
|
+ <!-- 悬浮按钮 -->
|
|
329
|
+ <uni-fab :pattern="pattern" :content="content" :direction="direction" @fabClick="fabClick" @trigger="trigger"></uni-fab>
|
|
330
|
+ <!-- 弹窗 -->
|
331
|
331
|
<showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
|
332
|
332
|
@ok="ok" @cancel="cancel" @know="know" :operate="models.operate"></showModel>
|
333
|
333
|
<!-- 我的二维码-弹窗 -->
|
|
@@ -412,11 +412,13 @@
|
412
|
412
|
|
413
|
413
|
<!-- 示闲弹窗 -->
|
414
|
414
|
<showModel :title="models4.title" icon="models4.icon" :disjunctor="models4.disjunctor" :content="models4.content" @know="know4" @ok="ok4" @cancel="cancel4" :operate="models4.operate"></showModel>
|
415
|
|
- </view>
|
|
415
|
+ <scanner></scanner>
|
|
416
|
+ </view>
|
416
|
417
|
</template>
|
417
|
418
|
<script>
|
418
|
419
|
import selectAccount from "../../components/selectAccount/selectAccount.vue";
|
419
|
420
|
import smallScreen from "../../components/smallScreen/smallScreen.vue";
|
|
421
|
+ import scanner from "../../components/scanner/scanner.vue";
|
420
|
422
|
import showModel from "../../components/showModel/showModel.vue";
|
421
|
423
|
import bigScreen from "../../components/bigScreen/bigScreen.vue";
|
422
|
424
|
// https://ext.dcloud.net.cn/plugin?id=144
|
|
@@ -549,7 +551,7 @@
|
549
|
551
|
// 悬浮按钮展开菜单内容配置项
|
550
|
552
|
content: [{
|
551
|
553
|
text: "我的任务",
|
552
|
|
- }, ],
|
|
554
|
+ },],
|
553
|
555
|
// 当前选中tab页名称
|
554
|
556
|
selectedLabelSlots: "待接单",
|
555
|
557
|
// tab页信息
|
|
@@ -614,9 +616,254 @@
|
614
|
616
|
uniFab,
|
615
|
617
|
showModel,
|
616
|
618
|
bigScreen,
|
|
619
|
+ scanner,
|
617
|
620
|
selectAccount,
|
618
|
621
|
},
|
619
|
622
|
methods: {
|
|
623
|
+ padChange(scannerCode){
|
|
624
|
+ scannerCode = scannerCode.replace('\n','')
|
|
625
|
+ // if(e.detail.value.length<5){
|
|
626
|
+ // return
|
|
627
|
+ // }
|
|
628
|
+ if (!this.SMFlag) {
|
|
629
|
+ return;
|
|
630
|
+ }
|
|
631
|
+ let qrcodePrefix = '';
|
|
632
|
+ this.SMFlag = false;
|
|
633
|
+ // SM().then((content) => {
|
|
634
|
+ uni.showLoading({
|
|
635
|
+ title: "加载中",
|
|
636
|
+ mask: true,
|
|
637
|
+ });
|
|
638
|
+ //检验二维码的有效性(扫码前必须验证)
|
|
639
|
+ post("/dept/scanning", {
|
|
640
|
+ content:scannerCode
|
|
641
|
+ })
|
|
642
|
+ .then((result) => {
|
|
643
|
+ this.currentCode = result.code;
|
|
644
|
+ this.SMFlag = true;
|
|
645
|
+ // 200检测通过,201没有有效期也通过。
|
|
646
|
+ if (result.state == 200 || result.state == 201) {
|
|
647
|
+ let data = {
|
|
648
|
+ code: result.code, //二维码
|
|
649
|
+ };
|
|
650
|
+ //微信—大扫描(科室码,患者码,标本码,快捷建单码,药包码)
|
|
651
|
+ let code = result.code.includes(qrcodePrefix) ? result.code : qrcodePrefix + result.code;
|
|
652
|
+ post("/workerOrder/scanCode", { code, hosId: this.hosId })
|
|
653
|
+ .then((res) => {
|
|
654
|
+ uni.hideLoading();
|
|
655
|
+ if (res.status == 200) {
|
|
656
|
+ // 扫描标本码
|
|
657
|
+ if (res.type == "specimen") {
|
|
658
|
+ let infoDATA = {
|
|
659
|
+ stype: res.data.stype,
|
|
660
|
+ scode: res.data.scode,
|
|
661
|
+ patientName: res.data.patientName,
|
|
662
|
+ sickRoom: res.data.sickRoom ?
|
|
663
|
+ res.data.sickRoom.dept : "-",
|
|
664
|
+ checkDept: res.data.checkDept ?
|
|
665
|
+ res.data.checkDept.dept : "-",
|
|
666
|
+ bedNum: res.data.bedNum,
|
|
667
|
+ };
|
|
668
|
+ uni.navigateTo({
|
|
669
|
+ url: `../scanning_B/scanning_B?res=${encodeURIComponent(
|
|
670
|
+ JSON.stringify(res)
|
|
671
|
+ )}&infoDATA=${encodeURIComponent(
|
|
672
|
+ JSON.stringify(infoDATA)
|
|
673
|
+ )}`,
|
|
674
|
+ });
|
|
675
|
+ } else if (res.type == "patient") {
|
|
676
|
+ //如果是患者腕带码
|
|
677
|
+ // code: data.code //二维码
|
|
678
|
+ res.workOrder = res.workOrder ? res.workOrder : []; //liao
|
|
679
|
+ uni.navigateTo({
|
|
680
|
+ url: `../scanning_ins/scanning_ins?code=${
|
|
681
|
+ data.code
|
|
682
|
+ }&infoDATA=${encodeURIComponent(
|
|
683
|
+ JSON.stringify(res.data)
|
|
684
|
+ )}&workData=${encodeURIComponent(
|
|
685
|
+ JSON.stringify(res.workOrder)
|
|
686
|
+ )}&patientOrders=${encodeURIComponent(
|
|
687
|
+ JSON.stringify(res.patientOrders)
|
|
688
|
+ )}`,
|
|
689
|
+ });
|
|
690
|
+ } else if (res.type == "quickOrder") {
|
|
691
|
+ //快捷建单
|
|
692
|
+ if(res.data.isDigitalHandover == 1){
|
|
693
|
+ uni.navigateTo({
|
|
694
|
+ url: `../specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
|
|
695
|
+ JSON.stringify(res.data)
|
|
696
|
+ )}`,
|
|
697
|
+ });
|
|
698
|
+ }else{
|
|
699
|
+ uni.navigateTo({
|
|
700
|
+ url: `../shortcutbuildOrders/shortcutbuildOrders?infoDATA=${encodeURIComponent(
|
|
701
|
+ JSON.stringify(res.data)
|
|
702
|
+ )}`,
|
|
703
|
+ });
|
|
704
|
+ }
|
|
705
|
+ } else if (res.type == "dept") {
|
|
706
|
+ // 扫描科室码
|
|
707
|
+ // code: data.code //二维码
|
|
708
|
+ let infoDATA = res.data;
|
|
709
|
+ console.log(infoDATA)
|
|
710
|
+ // 判断是否是标本配送,并且仅仅只有这一种业务类型,默认全选,并跳转到下一步;
|
|
711
|
+ // 判断是否是标本轮巡 ,并且仅仅只有这一种业务类型,并且只有一个工单,默认选中,并跳转到下一步;
|
|
712
|
+ if(Object.keys(infoDATA).length === 1 && (infoDATA.specimen || (infoDATA.specimenPlan && infoDATA.specimenPlan.length === 1))){
|
|
713
|
+ this.infoDATA = infoDATA;
|
|
714
|
+ this.workData = infoDATA.specimen || infoDATA.specimenPlan;
|
|
715
|
+ this.tabType = infoDATA.specimen ? 'specimen' : 'specimenPlan';
|
|
716
|
+ this.code = data.code;
|
|
717
|
+ this.selectArr = [];
|
|
718
|
+ for (var i = 0; i < this.workData.length; i++) {
|
|
719
|
+ this.selectArr.push(this.workData[i].id);
|
|
720
|
+ }
|
|
721
|
+ this.userId.ids = this.selectArr;
|
|
722
|
+ this.orderDeptHandler(true);
|
|
723
|
+ }else if(res.deptHandoverType && res.deptHandoverType.value == 'clinicalWaste'){
|
|
724
|
+ // 医废
|
|
725
|
+ uni.navigateTo({
|
|
726
|
+ url: `/pages/medicalWaste/medicalWasteSignIn/medicalWasteSignIn?code=${data.code}&deptName=${res.deptName}&deptId=${res.deptId}`,
|
|
727
|
+ });
|
|
728
|
+ }else{
|
|
729
|
+ uni.navigateTo({
|
|
730
|
+ url: `../scanning_all/scanning_all?infoDATA=${encodeURIComponent(
|
|
731
|
+ JSON.stringify(infoDATA)
|
|
732
|
+ )}&code=${data.code}&deptName=${res.deptName}&deptId=${res.deptId}`,
|
|
733
|
+ });
|
|
734
|
+ }
|
|
735
|
+ } else if (res.type == 'drugsBag') {
|
|
736
|
+ //扫药包码
|
|
737
|
+ uni.navigateTo({
|
|
738
|
+ url: `/pages/scanning_drug/scanning_drug?drugsBagId=${res.drugsBagId}&drugsBagBatchNo=${res.drugsBagBatchNo}`,
|
|
739
|
+ });
|
|
740
|
+ } else if (res.type == 'nucleicAcid') {
|
|
741
|
+ //扫核酸码
|
|
742
|
+ uni.navigateTo({
|
|
743
|
+ url: `/pages/scanning_nucleicAcid/scanning_nucleicAcid?qrcode=${data.code}`,
|
|
744
|
+ });
|
|
745
|
+ } else if (res.type == 'blood') {
|
|
746
|
+ //扫血制品
|
|
747
|
+ // 判断size,多个则进入新页面选择
|
|
748
|
+ if(res.size > 1){
|
|
749
|
+ uni.navigateTo({
|
|
750
|
+ url: `/pages/bloodSelect/bloodSelect?qrcode=${data.code}&navigateTo=scanning_blood`,
|
|
751
|
+ });
|
|
752
|
+ } else {
|
|
753
|
+ uni.navigateTo({
|
|
754
|
+ url: `/pages/scanning_blood/scanning_blood?qrcode=${data.code}`,
|
|
755
|
+ });
|
|
756
|
+ }
|
|
757
|
+ } else if (res.type == 'receiveOrder') {
|
|
758
|
+ //扫快捷接单
|
|
759
|
+ uni.showModal({
|
|
760
|
+ title: "提示",
|
|
761
|
+ content: `您本次接单包括${res.names.join('、')},一共含有${res.data.length}个工单,是否确认接单?`,
|
|
762
|
+ success: function(result) {
|
|
763
|
+ if (result.confirm) {
|
|
764
|
+ uni.showLoading({
|
|
765
|
+ title: "加载中",
|
|
766
|
+ mask: true,
|
|
767
|
+ });
|
|
768
|
+ post("/workerOrder/receiveOrders", {ids: res.data.toString()}).then((result) => {
|
|
769
|
+ uni.hideLoading();
|
|
770
|
+ if (result.status == 200) {
|
|
771
|
+ uni.showModal({
|
|
772
|
+ title: "提示",
|
|
773
|
+ content: `本次接单包括${res.names.join('、')},${res.data.length}个工单已接单完成`,
|
|
774
|
+ showCancel: false,
|
|
775
|
+ success: function(res) {
|
|
776
|
+ if (res.confirm) {
|
|
777
|
+ console.log("用户点击确定");
|
|
778
|
+ uni.redirectTo({
|
|
779
|
+ url: "../receiptpage/receiptpage",
|
|
780
|
+ });
|
|
781
|
+ } else if (res.cancel) {
|
|
782
|
+ console.log("用户点击取消");
|
|
783
|
+ }
|
|
784
|
+ },
|
|
785
|
+ });
|
|
786
|
+ } else {
|
|
787
|
+ uni.showToast({
|
|
788
|
+ icon: "none",
|
|
789
|
+ title: result.msg || "接口获取数据失败!",
|
|
790
|
+ });
|
|
791
|
+ }
|
|
792
|
+ });
|
|
793
|
+ } else if (result.cancel) {
|
|
794
|
+ console.log("用户点击取消");
|
|
795
|
+ }
|
|
796
|
+ },
|
|
797
|
+ });
|
|
798
|
+ } else if (res.type == 'bloodTake') {
|
|
799
|
+ if(res.data){
|
|
800
|
+ //新血制品-扫科室
|
|
801
|
+ uni.navigateTo({
|
|
802
|
+ url: `/pages/newBlood/startOrderSignBlood/startOrderSignBlood?deptId=${res.deptId}&deptName=${res.deptName}&taskTypeId=${res.taskTypeId}`,
|
|
803
|
+ });
|
|
804
|
+ }else{
|
|
805
|
+ // 走type是dept的流程
|
|
806
|
+ // 扫描科室码
|
|
807
|
+ // code: data.code //二维码
|
|
808
|
+ let infoDATA = res.data;
|
|
809
|
+ console.log(infoDATA)
|
|
810
|
+ // 判断是否是标本配送,并且仅仅只有这一种业务类型,默认全选,并跳转到下一步;
|
|
811
|
+ // 判断是否是标本轮巡 ,并且仅仅只有这一种业务类型,并且只有一个工单,默认选中,并跳转到下一步;
|
|
812
|
+ if(Object.keys(infoDATA).length === 1 && (infoDATA.specimen || (infoDATA.specimenPlan && infoDATA.specimenPlan.length === 1))){
|
|
813
|
+ this.infoDATA = infoDATA;
|
|
814
|
+ this.workData = infoDATA.specimen || infoDATA.specimenPlan;
|
|
815
|
+ this.tabType = infoDATA.specimen ? 'specimen' : 'specimenPlan';
|
|
816
|
+ this.code = data.code;
|
|
817
|
+ this.selectArr = [];
|
|
818
|
+ for (var i = 0; i < this.workData.length; i++) {
|
|
819
|
+ this.selectArr.push(this.workData[i].id);
|
|
820
|
+ }
|
|
821
|
+ this.userId.ids = this.selectArr;
|
|
822
|
+ this.orderDeptHandler(true);
|
|
823
|
+ }else{
|
|
824
|
+ uni.navigateTo({
|
|
825
|
+ url: `../scanning_all/scanning_all?infoDATA=${encodeURIComponent(
|
|
826
|
+ JSON.stringify(infoDATA)
|
|
827
|
+ )}&code=${data.code}&deptName=${res.deptName}&deptId=${res.deptId}`,
|
|
828
|
+ });
|
|
829
|
+ }
|
|
830
|
+ }
|
|
831
|
+ } else if(res.type == 'clinicalWaste'){
|
|
832
|
+ // 医废
|
|
833
|
+ if(res.wasteDetails){
|
|
834
|
+ uni.navigateTo({
|
|
835
|
+ url: `/pages/medicalWaste/medicalWasteDetail/medicalWasteDetail?qrcode=${res.code}`,
|
|
836
|
+ });
|
|
837
|
+ }else{
|
|
838
|
+ uni.navigateTo({
|
|
839
|
+ url: `/pages/medicalWaste/medicalWasteBind/medicalWasteBind?qrcode=${res.code}`,
|
|
840
|
+ });
|
|
841
|
+ }
|
|
842
|
+ }
|
|
843
|
+ } else {
|
|
844
|
+ if(res.bigScanSpecialMsg){
|
|
845
|
+ uni.navigateTo({
|
|
846
|
+ url: `../scanning_big_Result/scanning_big_Result?msg=${res.msg || ''}&qrcode=${this.currentCode}&bigScanSpecialMsg=${encodeURIComponent(JSON.stringify(res.bigScanSpecialMsg))}`,
|
|
847
|
+ });
|
|
848
|
+ }else{
|
|
849
|
+ uni.navigateTo({
|
|
850
|
+ url: `../scanning_Result/scanning_Result?status=${res.status}&msg=${res.msg}&qrcode=${this.currentCode}`,
|
|
851
|
+ });
|
|
852
|
+ }
|
|
853
|
+ }
|
|
854
|
+ });
|
|
855
|
+ } else {
|
|
856
|
+ uni.hideLoading();
|
|
857
|
+ uni.showToast({
|
|
858
|
+ icon: "none",
|
|
859
|
+ title: result.info || "接口获取数据失败!",
|
|
860
|
+ });
|
|
861
|
+ }
|
|
862
|
+ })
|
|
863
|
+ // }).catch(err => {
|
|
864
|
+ // this.SMFlag = true;
|
|
865
|
+ // });
|
|
866
|
+ },
|
620
|
867
|
// 搜索科室
|
621
|
868
|
searchAdm(){
|
622
|
869
|
let data = {
|
|
@@ -1165,6 +1412,8 @@
|
1165
|
1412
|
this.taskTypeId = '' //任务类型
|
1166
|
1413
|
uni.setStorageSync("admStore",{})
|
1167
|
1414
|
},
|
|
1415
|
+ cancelPicker(){
|
|
1416
|
+ },
|
1168
|
1417
|
// 大扫描筛选
|
1169
|
1418
|
execFilterBigScreen({
|
1170
|
1419
|
detail: {
|
|
@@ -1186,7 +1435,7 @@
|
1186
|
1435
|
(item) => item.rolecode === "pharmacist"
|
1187
|
1436
|
);
|
1188
|
1437
|
//判断当前登陆人具体角色 end
|
1189
|
|
- console.log(menu);
|
|
1438
|
+ // console.log(menu);
|
1190
|
1439
|
this.arrayBigScreen = [];
|
1191
|
1440
|
menu.forEach((item) => {
|
1192
|
1441
|
if (item.link === "wxInspect") {
|
|
@@ -1640,6 +1889,8 @@
|
1640
|
1889
|
});
|
1641
|
1890
|
}
|
1642
|
1891
|
},
|
|
1892
|
+ fabClick(){
|
|
1893
|
+ },
|
1643
|
1894
|
// 悬浮按钮点击事件
|
1644
|
1895
|
trigger(e) {
|
1645
|
1896
|
if (e.item.text === "我的任务") {
|
|
@@ -2504,6 +2755,14 @@
|
2504
|
2755
|
// #endif
|
2505
|
2756
|
},
|
2506
|
2757
|
onShow() {
|
|
2758
|
+ let that = this
|
|
2759
|
+ // #ifdef APP-PLUS
|
|
2760
|
+ uni.$off('scan') // 每次进来先 移除全局自定义事件监听器
|
|
2761
|
+ uni.$on('scan', function(data) {
|
|
2762
|
+ console.log(888,data)
|
|
2763
|
+ that.padChange(data)
|
|
2764
|
+ })
|
|
2765
|
+ // #endif
|
2507
|
2766
|
this.SMFlag = true;
|
2508
|
2767
|
// #ifdef H5
|
2509
|
2768
|
document.body.addEventListener("touchmove", this.stop, {
|
|
@@ -2522,6 +2781,16 @@
|
2522
|
2781
|
};
|
2523
|
2782
|
</script>
|
2524
|
2783
|
<style lang="less">
|
|
2784
|
+ .hideInput{
|
|
2785
|
+ height: 40px;
|
|
2786
|
+ position: absolute;
|
|
2787
|
+ width: 100px;
|
|
2788
|
+ top: 100px;
|
|
2789
|
+ left: 100px;
|
|
2790
|
+ z-index: 99999;
|
|
2791
|
+ border: 1px solid;
|
|
2792
|
+ padding-left: 10px;
|
|
2793
|
+ }
|
2525
|
2794
|
/deep/ .uni-drawer__content{
|
2526
|
2795
|
width: 600rpx !important;
|
2527
|
2796
|
}
|