|
@@ -60,7 +60,7 @@
|
60
|
60
|
</el-form-item>
|
61
|
61
|
|
62
|
62
|
|
63
|
|
-
|
|
63
|
+
|
64
|
64
|
|
65
|
65
|
|
66
|
66
|
<el-form-item label="过敏病史: " prop="name" label-position="right">
|
|
@@ -563,6 +563,7 @@ export default {
|
563
|
563
|
{ value: 990602, label: '门诊特殊病(990602)' },
|
564
|
564
|
{ value: 1402, label: '门诊特殊病(1402)' },
|
565
|
565
|
{ value: 1401, label: '门诊慢特病(1401)' },
|
|
566
|
+ { value: 2302, label: '异地就医(2302)' },
|
566
|
567
|
{ value: 1111, label: '精一' },
|
567
|
568
|
{ value: 1112, label: '精二' },
|
568
|
569
|
{ value: 0, label: '自费' }
|
|
@@ -2077,7 +2078,7 @@ export default {
|
2077
|
2078
|
}
|
2078
|
2079
|
|
2079
|
2080
|
}
|
2080
|
|
-
|
|
2081
|
+
|
2081
|
2082
|
// console.log("info233333333333333333333",info.id)
|
2082
|
2083
|
// console.log("LAST_INFO2323232323WO",last_info.patient_diagnosis)
|
2083
|
2084
|
this.patient_diagnose = []
|
|
@@ -2094,13 +2095,13 @@ export default {
|
2094
|
2095
|
}
|
2095
|
2096
|
|
2096
|
2097
|
if(info.id > 0){
|
2097
|
|
-
|
|
2098
|
+
|
2098
|
2099
|
if (info.patient_diagnosis.length == 0) {
|
2099
|
2100
|
this.patient_diagnose = []
|
2100
|
2101
|
} else {
|
2101
|
2102
|
this.patient_diagnose = []
|
2102
|
2103
|
for (let i = 0; i < info.patient_diagnosis.split(",").length; i++) {
|
2103
|
|
-
|
|
2104
|
+
|
2104
|
2105
|
if(info.patient_diagnosis.split(',')[i].length > 0) {
|
2105
|
2106
|
this.patient_diagnose.push(parseInt(info.patient_diagnosis.split(',')[i]))
|
2106
|
2107
|
}
|
|
@@ -2387,7 +2388,7 @@ export default {
|
2387
|
2388
|
reg_type: this.register_type,
|
2388
|
2389
|
patient_diagnose:str
|
2389
|
2390
|
}
|
2390
|
|
-
|
|
2391
|
+
|
2391
|
2392
|
for (let i = 0; i < this.prescriptions.length; i++) {
|
2392
|
2393
|
if (this.prescriptions[i].advices.length > 0 && this.prescriptions[i].project.length == 0) {
|
2393
|
2394
|
this.prescriptions[i]['type'] = 1
|
|
@@ -2427,7 +2428,7 @@ export default {
|
2427
|
2428
|
this.$emit('editKeepLoad', false)
|
2428
|
2429
|
return
|
2429
|
2430
|
}
|
2430
|
|
-
|
|
2431
|
+
|
2431
|
2432
|
|
2432
|
2433
|
if(this.prescriptions[i].advices[b].prescribing_number == ""){
|
2433
|
2434
|
this.$message.error(`处方${i+1}的${this.prescriptions[i].advices[b].drug_name}总量未填写`)
|
|
@@ -2800,7 +2801,7 @@ export default {
|
2800
|
2801
|
this.$message.error('科室不能为空')
|
2801
|
2802
|
return
|
2802
|
2803
|
}
|
2803
|
|
-
|
|
2804
|
+
|
2804
|
2805
|
var str = ""
|
2805
|
2806
|
if(patient_diagnose!=""){
|
2806
|
2807
|
str = this.patient_diagnose.join(',')
|