miaofuhao месяцев назад: 9
Родитель
Сommit
d83820b40f

BIN
CallCenterWeb.UI/RMYY/0320dist.zip


BIN
CallCenterWeb.UI/RMYY/0427-2dist.zip


BIN
CallCenterWeb.UI/RMYY/0429-1dist.zip


BIN
CallCenterWeb.UI/RMYY/0429-2dist.zip


+ 28 - 0
CallCenterWeb.UI/RMYY/bash.exe.stackdump

@@ -0,0 +1,28 @@
1
+Stack trace:
2
+Frame         Function      Args
3
+0007FFFFA3D0  00021006118E (00021028DEE8, 000210272B3E, 0007FFFFA3D0, 0007FFFF92D0) msys-2.0.dll+0x2118E
4
+0007FFFFA3D0  0002100469BA (000000000000, 000000000000, 000000000000, 000000000004) msys-2.0.dll+0x69BA
5
+0007FFFFA3D0  0002100469F2 (00021028DF99, 0007FFFFA288, 0007FFFFA3D0, 000000000000) msys-2.0.dll+0x69F2
6
+0007FFFFA3D0  00021006A41E (000000000000, 000000000000, 000000000000, 000000000000) msys-2.0.dll+0x2A41E
7
+0007FFFFA3D0  00021006A545 (0007FFFFA3E0, 000000000000, 000000000000, 000000000000) msys-2.0.dll+0x2A545
8
+0001004F94B7  00021006B9A5 (0007FFFFA3E0, 000000000000, 000000000000, 000000000000) msys-2.0.dll+0x2B9A5
9
+End of stack trace
10
+Loaded modules:
11
+000100400000 bash.exe
12
+7FFB8C6A0000 ntdll.dll
13
+7FFB89F90000 KERNEL32.DLL
14
+7FFB89420000 KERNELBASE.dll
15
+7FFB8A6F0000 USER32.dll
16
+7FFB89760000 win32u.dll
17
+7FFB89A80000 GDI32.dll
18
+7FFB88A80000 gdi32full.dll
19
+7FFB896C0000 msvcp_win.dll
20
+7FFB89780000 ucrtbase.dll
21
+000210040000 msys-2.0.dll
22
+7FFB8A590000 advapi32.dll
23
+7FFB8A650000 msvcrt.dll
24
+7FFB8AA20000 sechost.dll
25
+7FFB8A8F0000 RPCRT4.dll
26
+7FFB880A0000 CRYPTBASE.DLL
27
+7FFB88A00000 bcryptPrimitives.dll
28
+7FFB8C630000 IMM32.DLL

+ 29 - 9
CallCenterWeb.UI/RMYY/src/components/workOrder/information/addOrEditInfOrder.vue

@@ -867,6 +867,7 @@ export default {
867 867
       hospitalDataLists: [],
868 868
       coperDataLists: [],
869 869
       orderTypeSzData: ['menzhen', 'JZ', 'zhuyuan', 'jiancha'],
870
+      orderTypeYqData: ['menzhen', 'JZ', 'zhuyuan', 'jiancha','XZ','huizhen'],
870 871
       isshowmen: '1',
871 872
       // 工单标识为 'menzhen','JZ','zhuyuan','jiancha' 的患者信息
872 873
       patientMsgAll: [
@@ -1002,6 +1003,7 @@ export default {
1002 1003
         ]
1003 1004
       },
1004 1005
       F_Type2: '',
1006
+      linkManYQ: '',
1005 1007
       ruleForm: {
1006 1008
         jzks: '',
1007 1009
         patientName: '',
@@ -1071,14 +1073,23 @@ export default {
1071 1073
   watch: {
1072 1074
     'patientDatas': function() {
1073 1075
       this.zsyh = this.patientDatas.zsyh
1074
-      this.ruleForm.F_Customer = this.patientDatas.hzxm
1076
+      if (this.orderTypeYqData.indexOf(this.worktypeInfo3) === -1) {
1077
+        this.ruleForm.F_Customer = this.patientDatas.hzxm
1078
+      }
1079
+     
1075 1080
       this.ruleForm.F_FullName = this.patientDatas.hzxm
1076 1081
       this.ruleForm.F_IDNumber = this.patientDatas.zjhm
1077 1082
       this.ruleForm.F_IDNumberShow =  this.patientDatas.zjhmShow
1078 1083
       this.ruleForm.F_CusAddress = this.patientDatas.jtdz
1079 1084
       this.ruleForm.F_CusAddressShow =  this.patientDatas.jtdzShow
1085
+<<<<<<< HEAD
1080 1086
       this.patientMsgAll[0].guanchuangyisheng = this.ruleForm.F_Customer
1081 1087
       this.clickbefore = 0
1088
+=======
1089
+      // this.patientMsgAll[0].guanchuangyisheng = this.ruleForm.F_Customer
1090
+      this.clickbefore = 0
1091
+
1092
+>>>>>>> master
1082 1093
     },
1083 1094
     'orderTypeData.F_Type2': function() {
1084 1095
       this.ruleForm.clbm = ''
@@ -1119,10 +1130,14 @@ export default {
1119 1130
       if (this.worktypeInfo3 === 'ywzx_lasc') {
1120 1131
         this.getRelations()
1121 1132
       }
1133
+      if (this.orderTypeYqData.indexOf(this.worktypeInfo3) !== -1) {
1134
+        this.getYQmsg()
1135
+      }
1122 1136
       if (this.orderTypeSzData.indexOf(this.worktypeInfo3) !== -1) {
1123 1137
         this.getCoperyq()
1124 1138
         this.getListyq()
1125
-        this.getYQmsg()
1139
+
1140
+       
1126 1141
         console.log('F_Customer',this.ruleForm.F_Customer)
1127 1142
         this.patientMsgAll[0].guanchuangtel = this.ruleForm.F_Phon
1128 1143
         if (!this.wid) {
@@ -1390,7 +1405,7 @@ export default {
1390 1405
         jzyq: '',
1391 1406
         F_nl: '',
1392 1407
         F_Sex: '0',
1393
-        guanchuangyisheng: this.ruleForm.F_Customer,
1408
+        guanchuangyisheng: this.linkManYQ,
1394 1409
         guanchuangtel: this.ruleForm.F_Phon,
1395 1410
         F_sxzzd: '1', // 双向转诊单
1396 1411
         F_lyfs: '0', // 来院方式
@@ -1500,8 +1515,8 @@ export default {
1500 1515
             // const getPointOfCare =  this.$store.getters.deptmap[this.zhuyuanArr[0].AssignedPatientLocation.PointOfCare].ids
1501 1516
             console.log('getPointOfCare',this.zhuyuanArr[0].AssignedPatientLocation.PointOfCare)
1502 1517
             // this.patientMsgXZ[this.currentIndexXZ].zyks = getPointOfCare // PointOfCareName
1503
-            this.patientMsgXZ[this.currentIndexXZ].inpatientnum = this.zhuyuanArr[0].VisitNumber.CardID
1504
-            this.patientMsgXZ[this.currentIndexXZ].guanchuangyisheng = this.zhuyuanArr[0].AttendingDoctor.FamilyName
1518
+            // this.patientMsgXZ[this.currentIndexXZ].inpatientnum = this.zhuyuanArr[0].VisitNumber.CardID
1519
+            // this.patientMsgXZ[this.currentIndexXZ].guanchuangyisheng = this.zhuyuanArr[0].AttendingDoctor.FamilyName
1505 1520
 
1506 1521
           })
1507 1522
 
@@ -1597,8 +1612,10 @@ export default {
1597 1612
       GetModelByTel(params).then(res => {
1598 1613
         if (res.state == 'success' && res.data) {
1599 1614
           this.ruleForm.F_Yqname = res.data.F_YqName
1600
-          res.data.F_LinkMan && (this.ruleForm.F_Customer = res.data.F_LinkMan)
1601
-          this.patientMsgAll[0].guanchuangyisheng = this.ruleForm.F_Customer
1615
+          // res.data.F_LinkMan && (this.ruleForm.F_Customer = res.data.F_LinkMan)
1616
+          this.patientMsgAll[0].guanchuangyisheng = res.data.F_LinkMan
1617
+          this.ruleForm.F_Customer = res.data.F_LinkMan
1618
+          this.linkManYQ = res.data.F_LinkMan
1602 1619
         } else {
1603 1620
           this.ruleForm.F_Yqname = ''
1604 1621
           this.isAddHos = 1 // 没有数据存标识,提交工单调添加合作院区接口
@@ -1640,8 +1657,11 @@ export default {
1640 1657
           setTimeout(() => {
1641 1658
             const this_ = this
1642 1659
             this_.zsyh = window.localStorage.getItem('zsyh') || ''
1643
-            this_.ruleForm.F_Customer = window.localStorage.getItem('huanxm') || ''
1644
-            this.patientMsgAll[0].guanchuangyisheng = this.ruleForm.F_Customer
1660
+            if (this.orderTypeYqData.indexOf(this.worktypeInfo3) === -1) {
1661
+              this_.ruleForm.F_Customer = window.localStorage.getItem('huanxm') || ''
1662
+              this.patientMsgAll[0].guanchuangyisheng = this.ruleForm.F_Customer
1663
+            }
1664
+           
1645 1665
           }, 1000)
1646 1666
         }
1647 1667
         if (!this.ruleForm.F_FullName) {

+ 1 - 1
CallCenterWeb.UI/RMYY/src/views/callScreen/components/RegList.vue

@@ -402,7 +402,7 @@ export default {
402 402
       console.log(e)
403 403
       const newValue = e.split('_')[0]
404 404
       this.tableObj.deptName = this.findNameById(newValue, this.deptarr, 'ksmc', 'ksdm')
405
-      this.tableObj.czlxDept = this.findNameById(newValue, this.deptarr, 'czlx', 'ksdm')
405
+      this.tableObj.czlxDept = e.split('_')[1]
406 406
 
407 407
       const params = {
408 408
         ksdm: newValue,

+ 2 - 1
CallCenterWeb.UI/RMYY/src/views/callScreen/components/callScreen.vue

@@ -178,7 +178,8 @@ export default {
178 178
       }
179 179
     })
180 180
     this.callinNum = this.telCallNum // 来电号码  $route.params.telInNumber
181
-    // this.callinNum = '15638114211' // 来电号码  $route.params.telInNumber
181
+    // this.callinNum = '13803899019' // 来电号码  $route.params.telInNumber 13803899019 
182
+    // this.callinNum = '15638114211' // 来电号码  $route.params.telInNumber 13803899019   
182 183
     this.ldphone = this.$route.params.telInNumber
183 184
     if (this.$route.params.callid) {
184 185
       this.callinCallid = this.$route.params.callid.toString() // 来电callid  $route.params.callid

+ 9 - 3
CallCenterWeb.UI/RMYY/src/views/customerManagement/customerList/components/detail.vue

@@ -89,9 +89,15 @@ export default {
89 89
   },
90 90
   methods: {
91 91
     clickEye() {
92
-      this.ruleForm.idcard = decrypt(this.ruleForm.F_IdCardShow)
93
-      this.ruleForm.telphone = decrypt(this.ruleForm.F_TelephoneShow)
94
-      this.ruleForm.adddress = decrypt(this.ruleForm.F_AddressShow)
92
+      if (this.ruleForm.F_IdCardShow)  {
93
+        this.ruleForm.idcard = decrypt(this.ruleForm.F_IdCardShow)
94
+      }
95
+      if (this.ruleForm.F_TelephoneShow) {
96
+        this.ruleForm.telphone = decrypt(this.ruleForm.F_TelephoneShow) 
97
+      }
98
+      if (this.ruleForm.F_AddressShow) {
99
+        this.ruleForm.adddress = decrypt(this.ruleForm.F_AddressShow)
100
+      }
95 101
       this.clickbefore = 1
96 102
       // const params = {
97 103
       //   id:this.ruleForm.id