Browse Source

修改修改患者档案校验病史数据是否为空

newMaster
1747191978@qq.com 4 months ago
parent
commit
467053479b
  1. 2
      acupuncture-前台/src/views/followFile/subjects.vue
  2. 3
      acupuncture-前台/src/views/patientFile/index.vue

2
acupuncture-前台/src/views/followFile/subjects.vue

@ -128,7 +128,7 @@
<el-table-column
label="创建人/创建时间"
align="center"
width="130"
width="140"
fixed="right"
>
<template slot-scope="scope">

3
acupuncture-前台/src/views/patientFile/index.vue

@ -430,7 +430,7 @@
this.form = JSON.parse(JSON.stringify(row));
//
this.form.currentIllnessHistory =
this.form.currentIllnessHistory.split(",");
this.form.currentIllnessHistory?.split(",") || []
},
/** 详情按钮操作 */
handleDetails(row) {
@ -441,7 +441,6 @@
},
/** 诊疗档案 */
handleArchives(row) {
this.form = JSON.parse(JSON.stringify(row));
this.$router.push({
path:`/medicalIndex?idCard=${row.idCard}`
})

Loading…
Cancel
Save