From 5dac25e97563d1a764383b615849a82efd342cb4 Mon Sep 17 00:00:00 2001
From: chenyc <501753378@qq.com>
Date: 星期二, 24 十二月 2024 11:26:17 +0800
Subject: [PATCH] gx
---
src/views/home/index.vue | 11 +++++++++--
1 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/src/views/home/index.vue b/src/views/home/index.vue
index 5053868..ae5ea81 100644
--- a/src/views/home/index.vue
+++ b/src/views/home/index.vue
@@ -112,7 +112,7 @@
<span style="margin-left: 5px">随访记录</span>
</span>
</template>
- <el-empty description="该功能未开发"></el-empty>
+ <!-- <el-empty description="该功能未开发"></el-empty> -->
</el-tab-pane>
</el-tabs>
<div class="itemDoby">
@@ -125,6 +125,7 @@
<dietarySurvey ref="dietarySurveyRef" v-show="state.activeName === '膳食调查'" :tableHeight="state.tableHeight.detailRight"></dietarySurvey>
<pinggubiao ref="pinggubiaoRef" v-show="state.activeName === '营养筛查评估'" :tableHeight="state.tableHeight.detailRight"></pinggubiao>
<fangAn ref="fangAnRef" v-show="state.activeName === '方案'" :tableHeight="state.tableHeight.detailRight"></fangAn>
+ <suifangjilu ref="suifangjiluRef" v-show="state.activeName === '随访记录'" :tableHeight="state.tableHeight.detailRight"></suifangjilu>
</div>
@@ -162,6 +163,8 @@
import pinggubiao from './components/pingubiao/index.vue'
// 方案
import fangAn from './components/fangAn/index.vue'
+// 随访记录
+import suifangjilu from './components/suifangjilu/index.vue'
interface User {
code: string,
patientName: string
@@ -175,6 +178,7 @@
const pinggubiaoRef=ref()
const dietarySurveyRef=ref()// 膳食调查
const fangAnRef=ref()
+const suifangjiluRef=ref()
const state = reactive({
global: {
homeChartOne: null,
@@ -264,6 +268,10 @@
}else if(state.activeName === '营养筛查评估'){
pinggubiaoRef.value.getData()
+ }else if(state.activeName==='方案'){
+ fangAnRef.value.getData()
+ }else if(state.activeName==='随访记录'){
+ suifangjiluRef.value.getData()
}
}
}
@@ -329,7 +337,6 @@
right: 30px;
width: 200px;
height: 100px;
- background-color: #ffffff;
color: rgb(16, 3, 3);
padding: 10px;
z-index: 999;
--
Gitblit v1.8.0