|
@@ -633,6 +633,20 @@
|
633
|
633
|
</el-form-item>
|
634
|
634
|
</el-col>
|
635
|
635
|
|
|
636
|
+ <el-col :span="24">
|
|
637
|
+ <el-form-item label="" prop="sch_remark">
|
|
638
|
+ <!-- <textarea v-model="form.remark" class="textarea" disabled></textarea> -->
|
|
639
|
+ <el-input
|
|
640
|
+ type="textarea"
|
|
641
|
+ :rows="3"
|
|
642
|
+ v-model="form.sch_remark"
|
|
643
|
+ resize="none"
|
|
644
|
+ placeholder=""
|
|
645
|
+ readonly
|
|
646
|
+ ></el-input>
|
|
647
|
+ </el-form-item>
|
|
648
|
+ </el-col>
|
|
649
|
+
|
636
|
650
|
<el-col :span="24">
|
637
|
651
|
<el-form-item label="慢性病 : " prop="diseases">
|
638
|
652
|
<el-checkbox-group v-model="form.diseases">
|
|
@@ -1055,7 +1069,8 @@ const defaultForm = {
|
1055
|
1069
|
first_treatment_date: "",
|
1056
|
1070
|
dialysis_age: "",
|
1057
|
1071
|
expense_kind: "",
|
1058
|
|
- contact_name: ""
|
|
1072
|
+ contact_name: "",
|
|
1073
|
+ sch_remark:"",
|
1059
|
1074
|
};
|
1060
|
1075
|
|
1061
|
1076
|
export default {
|
|
@@ -1334,6 +1349,8 @@ export default {
|
1334
|
1349
|
this.form.contagions = response.data.data.contagions;
|
1335
|
1350
|
this.form.diseases = response.data.data.diseases;
|
1336
|
1351
|
this.form.remark = patietInfo.remark;
|
|
1352
|
+ this.form.sch_remark = patietInfo.sch_remark;
|
|
1353
|
+
|
1337
|
1354
|
this.form.diagnose = patietInfo.diagnose;
|
1338
|
1355
|
|
1339
|
1356
|
this.form.patient_complains = patietInfo.patient_complains;
|
|
@@ -1478,6 +1495,10 @@ export default {
|
1478
|
1495
|
/\n/g,
|
1479
|
1496
|
"<br/>"
|
1480
|
1497
|
);
|
|
1498
|
+ this.patientPrint.sch_remark = patietInfo.sch_remark.replace(
|
|
1499
|
+ /\n/g,
|
|
1500
|
+ "<br/>"
|
|
1501
|
+ );
|
1481
|
1502
|
this.patientPrint.diagnose = patietInfo.diagnose.replace(
|
1482
|
1503
|
/\n/g,
|
1483
|
1504
|
"<br/>"
|