|
|
@@ -1145,6 +1145,7 @@
|
|
|
style="border: none !important; width: 30px"
|
|
|
v-model="patient.surgeryList[n - 1].classType"
|
|
|
>
|
|
|
+ <option value="-"> - </option>
|
|
|
<option value="1"> 1 </option>
|
|
|
<option value="2"> 2 </option>
|
|
|
</select>
|
|
|
@@ -1202,7 +1203,6 @@
|
|
|
<input
|
|
|
style="border: none !important; width: 40px"
|
|
|
v-model="patient.surgeryList[n - 1].assistantOneName"
|
|
|
- readonly
|
|
|
@click="showSearchSurgerior('assistantone', n)"
|
|
|
/>
|
|
|
<div
|
|
|
@@ -2528,7 +2528,7 @@ const fetchSheetInfo = row => {
|
|
|
break;
|
|
|
}
|
|
|
}
|
|
|
- console.log("patient.value.disdiagList",patient.value.disdiagList)
|
|
|
+
|
|
|
//初始化手术横线
|
|
|
for (let i = 0; i < patient.value.surgeryList.length; i++) {
|
|
|
if(patient.value.surgeryList[i].name == '-' || patient.value.surgeryList[i].name == null){
|
|
|
@@ -2536,8 +2536,14 @@ const fetchSheetInfo = row => {
|
|
|
break;
|
|
|
} else {
|
|
|
if(patient.value.surgeryList[i].assistantTwoName == '-' || patient.value.surgeryList[i].assistantTwoName == "" || patient.value.surgeryList[i].assistantTwoName == null){
|
|
|
- patient.value.surgeryList[i].assistantTwoName = '-'
|
|
|
- }
|
|
|
+ patient.value.surgeryList[i].assistantTwoName = '-'
|
|
|
+ }
|
|
|
+ if(patient.value.surgeryList[i].assistantOneName == '-' || patient.value.surgeryList[i].assistantOneName == "" || patient.value.surgeryList[i].assistantOneName == null){
|
|
|
+ patient.value.surgeryList[i].assistantOneName = '-'
|
|
|
+ }
|
|
|
+ if(patient.value.surgeryList[i].anaesthesiaorName == '-' || patient.value.surgeryList[i].anaesthesiaorName == "" || patient.value.surgeryList[i].anaesthesiaorName == null){
|
|
|
+ patient.value.surgeryList[i].anaesthesiaorName = '-'
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
//初始化重症监护室横线
|