diff --git a/src/views/components/SearchForm.vue b/src/views/components/SearchForm.vue index 73fb799..fad5a17 100644 --- a/src/views/components/SearchForm.vue +++ b/src/views/components/SearchForm.vue @@ -727,7 +727,7 @@ export default { this.maxShow = Math.floor(this.$refs.searchFilter.offsetWidth / this.labelWidths) const group = window.document.querySelectorAll(`#searchFilter .el-form-item.el-form-item--${this.size}`) const len = group?.length ? group?.length - 1 : 0 - if (this.maxShow < len) { + if (this.maxShow <= len) { group.forEach((item, index) => { item.hidden = false if (index > this.maxShow - 1) { diff --git a/src/views/manage/components/sn.vue b/src/views/manage/components/sn.vue index a98ad3f..89284e4 100644 --- a/src/views/manage/components/sn.vue +++ b/src/views/manage/components/sn.vue @@ -21,6 +21,9 @@ style="width: 220px" value-format="yyyy-MM-dd" end-placeholder="结束日期"> + + + @@ -31,13 +34,13 @@ - + 搜索 重置 @@ -174,6 +177,7 @@ export default { importTimeEnd: "", campusAgencyId: null, importName: null, + sn: null, }, patientInfoList: [], departmentlist: [], @@ -379,6 +383,7 @@ export default { importTimeStart: "", importTimeEnd: "", campusAgencyId: null, + sn: null, } this.createTime = ''; this.handleQuery(); diff --git a/src/views/manage/patientInfoImport/index.vue b/src/views/manage/patientInfoImport/index.vue index bf60a74..b34c6d0 100644 --- a/src/views/manage/patientInfoImport/index.vue +++ b/src/views/manage/patientInfoImport/index.vue @@ -1,14 +1,22 @@ + @@ -194,6 +203,8 @@ export default { importTimeStart: "", importTimeEnd: "", campusAgencyId: null, + sn: "", + importName: "", }, // 表单参数 form: {}, @@ -326,7 +337,13 @@ export default { resetQuery() { this.queryParams = { pageNum: 1, - pageSize: 10 + pageSize: 10, + hospitalAgencyId: null, + importTimeStart: "", + importTimeEnd: "", + campusAgencyId: null, + sn: "", + importName: "", } this.createTime = ''; // this.resetForm("queryForm");