diff --git a/acupuncture-前台/src/views/medicalFile/index.vue b/acupuncture-前台/src/views/medicalFile/index.vue index 9a258bd7..b38e1b07 100644 --- a/acupuncture-前台/src/views/medicalFile/index.vue +++ b/acupuncture-前台/src/views/medicalFile/index.vue @@ -2,30 +2,34 @@
+ + + - + - +
{{ status[scope.row.status] }} - + @@ -213,6 +219,7 @@ + @@ -916,6 +923,7 @@ pageNum: 1, pageSize: 10, param: { + keywords:'', visitType: '', name: '', gender: '', @@ -1145,6 +1153,7 @@ /** 重置按钮操作 */ resetQuery() { this.queryParams.param = { + keywords:'', visitType: '', name: '', gender: '', @@ -1173,7 +1182,11 @@ handleUpdate(row) { this.open = true; this.title = "修改诊疗档案"; - this.form = JSON.parse(JSON.stringify(row)); + let queueList = row.queueVoList.map((item) => item.queueId); + this.form = { + ...JSON.parse(JSON.stringify(row)), + queueIdList:queueList + } }, /** 提交审核 */ handleExamine(row, _status) {