File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
pages/center/_centerId/patient Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change 136
136
<li class =" conditionItem" >
137
137
<InputNumberField
138
138
id =" temperature"
139
+ :key =" `temperature-${recordElementKey}`"
139
140
v-model =" inputTemperature"
140
141
name =" temperature"
141
142
label =" 体温"
151
152
<li class =" conditionItem" >
152
153
<InputNumberField
153
154
id =" spo2"
155
+ :key =" `spo2-${recordElementKey}`"
154
156
v-model =" inputSpO2"
155
157
name =" spo2"
156
158
label =" 酸素飽和度(SpO2)"
164
166
<li class =" conditionItem" >
165
167
<InputNumberField
166
168
id =" pulse"
169
+ :key =" `pulse-${recordElementKey}`"
167
170
v-model =" inputPulse"
168
171
name =" pulse"
169
172
label =" 脈拍"
185
188
class =" symptomsItem"
186
189
>
187
190
<CheckboxField
191
+ :key =" `checkbox-${index}-${recordElementKey}`"
188
192
v-model =" inputSymptom[item.label]"
189
193
:name =" item.name"
190
194
:label =" item.label"
@@ -269,6 +273,7 @@ export default class PatientId extends Vue {
269
273
isEditDisabled = true
270
274
currentMemoValue = ' '
271
275
showModalRecord = false
276
+ recordElementKey = 0
272
277
showModalDownload = false
273
278
zipPassword = ' '
274
279
zipPasswordReEnter = ' '
@@ -429,6 +434,8 @@ export default class PatientId extends Vue {
429
434
() => {
430
435
this .formMessage = ' 体調記録を登録しました'
431
436
this .createdStatus = true
437
+ this .clearRecordValue ()
438
+ this .recordElementKey ++
432
439
},
433
440
(error ) => {
434
441
this .loading = false
You can’t perform that action at this time.
0 commit comments