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