Browse Source

患者档案,诊疗档案搜索条件重置

newMaster
1747191978@qq.com 4 months ago
parent
commit
915bc56bd4
  1. 3027
      acupuncture-前台/src/views/medicalFile/index.vue
  2. 10
      acupuncture-前台/src/views/patientFile/index.vue

3027
acupuncture-前台/src/views/medicalFile/index.vue

File diff suppressed because it is too large

10
acupuncture-前台/src/views/patientFile/index.vue

@ -3,7 +3,7 @@
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch"
label-width="68px">
<el-form-item label="" prop="noticeTitle">
<el-input v-model="queryParams.param.keywords" placeholder="支持姓名、全拼、简拼、手机号吗、证件号码" clearable
<el-input v-model="queryParams.param.keywords" placeholder="支持姓名、全拼、简拼" clearable
@keyup.enter.native="handleQuery" />
</el-form-item>
<el-form-item label="年龄范围" prop="createBy">
@ -399,6 +399,14 @@
},
/** 重置按钮操作 */
resetQuery() {
this.queryParams.param = {
keywords: "", //
startAge: "", //
endAge: "", //
tenantId: "", //
createBy: "", //
sourceId: "", //
}
this.handleQuery();
},
//

Loading…
Cancel
Save