This commit is contained in:
牛子源 2025-04-24 10:15:55 +08:00
parent 1a3101a4d7
commit 535b029a06
4 changed files with 32 additions and 19 deletions

View File

@ -0,0 +1,28 @@
<script setup lang="ts">
import Panel from "@/components/common/Panel.vue";
</script>
<template>
<Panel title="药房基本信息" class="info">
<div class="info-content">
<img class="image" src="/static/images/home/app-head.png" alt="app">
<div class="app_info-content-text">
<el-tooltip
effect="dark"
:content="'仁德大药房连锁有限公司'"
placement="bottom-start"
>
<div class="app_info-title">仁德大药房连锁有限公司</div>
</el-tooltip>
<div>软件版本V2.5.1</div>
<div style="margin: 10px 0">授权到期2024-12-31</div>
<div>版本类型专业版</div>
</div>
</div>
</Panel>
</template>
<style scoped lang="scss">
</style>

View File

@ -88,23 +88,7 @@
</Panel> </Panel>
</div> </div>
<div class="right"> <div class="right">
<Panel title="药房基本信息" class="info"> <Card></Card>
<div class="info-content">
<img class="image" src="/static/images/home/app-head.png" alt="app">
<div class="app_info-content-text">
<el-tooltip
effect="dark"
:content="'仁德大药房连锁有限公司'"
placement="bottom-start"
>
<div class="app_info-title">仁德大药房连锁有限公司</div>
</el-tooltip>
<div>软件版本V2.5.1</div>
<div style="margin: 10px 0">授权到期2024-12-31</div>
<div>版本类型专业版</div>
</div>
</div>
</Panel>
<Panel title="客服支持" class="service"> <Panel title="客服支持" class="service">
<div class="service-content"> <div class="service-content">
<img class="image" src="/static/images/home/qr-code.png" alt=""> <img class="image" src="/static/images/home/qr-code.png" alt="">
@ -154,9 +138,10 @@ import {ref, onMounted, onUnmounted, nextTick} from "vue"
import * as echarts from 'echarts'; import * as echarts from 'echarts';
import {post} from "@/utils/request.ts"; import {post} from "@/utils/request.ts";
import {getThisWeek, getDaysBetweenDates} from "@/utils/dateUtils.ts"; import {getThisWeek, getDaysBetweenDates} from "@/utils/dateUtils.ts";
import InventoryWarnDetail from "@/components/home/InventoryWarnDetail.vue"; import InventoryWarnDetail from "@/components/home/index/Dialog/InventoryWarnDetail.vue";
import ExpireWarnDetail from "@/components/home/ExpireWarnDetail.vue"; import ExpireWarnDetail from "@/components/home/index/Dialog/ExpireWarnDetail.vue";
import Panel from "@/components/common/Panel.vue"; import Panel from "@/components/common/Panel.vue";
import Card from "@/components/home/index/Card.vue";
const echart = ref<HTMLElement | null>(null) const echart = ref<HTMLElement | null>(null)
let myChart: echarts.ECharts | null = null; let myChart: echarts.ECharts | null = null;