From 5d60089e97f45cec4391498ab2a6b1252c74ec46 Mon Sep 17 00:00:00 2001 From: bianyaqi Date: Wed, 17 May 2023 14:00:57 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B2=BB=E7=96=97=E6=96=B0=E5=A2=9E=E9=9C=80?= =?UTF-8?q?=E6=B1=82=E5=AE=8C=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../outpatientManagement/treat/index.vue | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/src/page-subspecialty/views/modules/outpatientManagement/treat/index.vue b/src/page-subspecialty/views/modules/outpatientManagement/treat/index.vue index bf67e72..33a73ca 100644 --- a/src/page-subspecialty/views/modules/outpatientManagement/treat/index.vue +++ b/src/page-subspecialty/views/modules/outpatientManagement/treat/index.vue @@ -10,9 +10,6 @@ - - - @@ -254,6 +251,7 @@ export default { label: 'OU' }], nextVisitTime: [], + appointRange: [], onlyRead: false, detailViewVisible: false, HisAddVisible: false, @@ -262,6 +260,8 @@ export default { patientId: '', beginDate: '', endDate: '', + appointBeginDate: '', + appointEndDate: '', searchType: '0', projectCode: '', patientName: '', @@ -331,6 +331,13 @@ export default { this.dataForm.searchType = e ? '' : '0' this.getDataListInitial() }, + // 日期改变时 + appointChange(e) { + this.dataForm.appointBeginDate = e ? e[0] : '' + this.dataForm.appointEndDate = e ? e[1] : '' + this.dataForm.searchType = e ? '' : '0' + this.getDataListInitial() + }, // 根据就诊状态查询 handleType(value, index) { this.curIndex = index