fix: 健康管理系统,文字描述完善。

This commit is contained in:
tianyongbao
2024-12-23 13:10:20 +08:00
parent fd50e48958
commit 18a9a52e1a
2 changed files with 6 additions and 6 deletions

View File

@@ -215,7 +215,7 @@
<div class="title">用药统计</div>
<div class="operate-btn-con">
<el-radio-group v-model="radioVal" @change="handleRadioChange">
<el-radio-button label="用药分类明细" />
<el-radio-button label="用药明细" />
<!-- <el-radio-button label="按天用药明细" /> -->
<el-radio-button label="用药次数柱状图" />
<el-radio-button label="用药次数折线图" />
@@ -239,7 +239,7 @@
</el-table-column>
</el-table> -->
<el-table v-show="radioVal === '用药分类明细'" v-loading="loading" :data="mar.marMapList" height="calc(100% - 245px)">
<el-table v-show="radioVal === '用药明细'" v-loading="loading" :data="mar.marMapList" height="calc(100% - 245px)">
<el-table-column label="序号" width="50" type="index" align="center">
<template #default="scope">
<span>{{ scope.$index + 1 }}</span>
@@ -283,7 +283,7 @@ const dates = [{ value: 1, label: '日' }]
const accountsList = ref([])
const loading = ref(true)
const total = ref(0)
const radioVal = ref('用药分类明细')
const radioVal = ref('用药明细')
const dateValidate = (rules, value, callback) => {
const dateType = rules.dateType || 'days'
const num = rules.num || 31