From c7d64da312576120b6252f91fea4e0052fd5f8dc Mon Sep 17 00:00:00 2001
From: chenyc <501753378@qq.com>
Date: 星期四, 13 二月 2025 23:42:36 +0800
Subject: [PATCH] 加汇总表
---
src/views/home/index.vue | 19 +++++++++++++++++++
1 files changed, 19 insertions(+), 0 deletions(-)
diff --git a/src/views/home/index.vue b/src/views/home/index.vue
index 15cd420..82a88bc 100644
--- a/src/views/home/index.vue
+++ b/src/views/home/index.vue
@@ -110,6 +110,17 @@
</template>
</el-tab-pane>
+ <el-tab-pane label="营养服务管理记录" name="营养服务管理记录">
+ <template #label>
+ <span class="custom-tabs-label home-title">
+ <el-icon>
+ <Edit />
+ </el-icon>
+ <span style="margin-left: 5px">营养服务管理记录</span>
+ </span>
+ </template>
+
+ </el-tab-pane>
</el-tabs>
<div class="itemDoby">
<patientFile v-show="state.activeName === '患者档案'" :tableHeight="state.tableHeight.detailRight"
@@ -123,6 +134,9 @@
<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>
+
+ <jilubiao ref="jilubiaoRef" v-show="state.activeName === '营养服务管理记录'" :tableHeight="state.tableHeight.detailRight"></jilubiao>
+
</div>
@@ -163,6 +177,8 @@
import fangAn from './components/fangAn/index.vue'
// 随访记录
import suifangjilu from './components/suifangjilu/index.vue'
+// 营养记录表
+import jilubiao from './components/jilubiao/index.vue'
interface User {
code: string,
patientName: string
@@ -178,6 +194,7 @@
const shiwuguomingRef=ref()
const fangAnRef=ref()
const suifangjiluRef=ref()
+const jilubiaoRef=ref()
const state = reactive({
global: {
homeChartOne: null,
@@ -276,6 +293,8 @@
fangAnRef.value.getData()
}else if(state.activeName==='随访记录'){
suifangjiluRef.value.getData()
+ }else if(state.activeName==='营养服务管理记录'){
+ jilubiaoRef.value.getData()
}
}
}
--
Gitblit v1.8.0