From dbeb94b48d1cc762a149fbd4787f9d4f1db00369 Mon Sep 17 00:00:00 2001 From: bianyaqi Date: Fri, 26 May 2023 11:06:00 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=93=E5=8D=B0=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/index.html | 4 +- .../reservation/subList/index.vue | 134 ++++++++++-------- 2 files changed, 76 insertions(+), 62 deletions(-) diff --git a/public/index.html b/public/index.html index 6f52be6..f449c2f 100644 --- a/public/index.html +++ b/public/index.html @@ -39,8 +39,8 @@ <% if (process.env.VUE_APP_NODE_ENV === 'dev') { %> <% } %> diff --git a/src/page-subspecialty/views/modules/nurseManagement/reservation/subList/index.vue b/src/page-subspecialty/views/modules/nurseManagement/reservation/subList/index.vue index c56a134..a86b49c 100644 --- a/src/page-subspecialty/views/modules/nurseManagement/reservation/subList/index.vue +++ b/src/page-subspecialty/views/modules/nurseManagement/reservation/subList/index.vue @@ -24,7 +24,7 @@ filterable :remote-method="queryProjects" size="small" - @change="getDataListInitial" + @change="projectChange" >
- - - - - - - - - - - - - - - - + + + + + + + + + +
@@ -269,6 +271,7 @@ export default { curIndex: 0, curIndex2: 0, projects: [], + curProject: '', selectedProjects: [], patientList: [], // 用一个字符串来保存当前双击的是哪一个单元格 @@ -281,9 +284,11 @@ export default { extraHead: '', closeCallback: () => { this.printHidden = true + this.printHiddenProject = true } }, - printHidden: true + printHidden: true, + printHiddenProject: true } }, created() { @@ -327,6 +332,10 @@ export default { } }) }, + projectChange(value) { + this.curProject = this.projects.find(item => item.itemId === value) + this.getDataListInitial() + }, // 获取全部项目 queryProjects(value) { this.$http.get('/patient/getZlItemDict', { @@ -343,6 +352,7 @@ export default { }, printTable() { this.printHidden = false + this.printHiddenProject = false }, // 改约 changeOrder() { @@ -507,4 +517,8 @@ export default { padding: 0; } } +.project_title{ + font-weight: bold; + font-size: 18px; +}