diff --git a/acupuncture-前台/src/views/medicalFile/index.vue b/acupuncture-前台/src/views/medicalFile/index.vue index 604127b6..be9f385d 100644 --- a/acupuncture-前台/src/views/medicalFile/index.vue +++ b/acupuncture-前台/src/views/medicalFile/index.vue @@ -1478,6 +1478,8 @@ export default { }; }, created() { + let idCard = this.$route.query.idCard + this.queryParams.param.idCard = idCard || '' this.getList(); this.getFollowupQuery(); }, @@ -1754,7 +1756,7 @@ export default { } .form-item-age >>> .el-input { - width: 90px; + width: 100px; } >>> .el-drawer.rtl { diff --git a/acupuncture-前台/src/views/patientFile/index.vue b/acupuncture-前台/src/views/patientFile/index.vue index 6aa2330f..ffdb54f0 100644 --- a/acupuncture-前台/src/views/patientFile/index.vue +++ b/acupuncture-前台/src/views/patientFile/index.vue @@ -386,6 +386,7 @@ phone: "", // 联系电话 idCardType: "", // 证件类型 idCard: "", // 证件号码 + "source": 1, currentIllnessHistory: [], // 现病史 currentIllnessHistoryQt: "", // 现病史 }; @@ -430,6 +431,13 @@ this.formDisabled = true; this.form = JSON.parse(JSON.stringify(row)); }, + /** 诊疗档案 */ + handleArchives(row) { + this.form = JSON.parse(JSON.stringify(row)); + this.$router.push({ + path:`/medicalIndex?idCard=${row.idCard}` + }) + }, /** 提交按钮 */ submitForm: function() { this.$refs["form"].validate((valid) => {