From 47482f386cefd756e1d1a745a5b13949fd709c77 Mon Sep 17 00:00:00 2001 From: xiejun <xj@2023> Date: 星期三, 22 十一月 2023 18:19:05 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- Source/UBCS-WEB/src/views/statistic/statisticPage.vue | 41 +++++++++++++++++++++++++++++++++++++++++ 1 files changed, 41 insertions(+), 0 deletions(-) diff --git a/Source/UBCS-WEB/src/views/statistic/statisticPage.vue b/Source/UBCS-WEB/src/views/statistic/statisticPage.vue new file mode 100644 index 0000000..3afb4d8 --- /dev/null +++ b/Source/UBCS-WEB/src/views/statistic/statisticPage.vue @@ -0,0 +1,41 @@ +<template> + <!-- 鏂板鍙充晶鎸夐挳--> + <div> + <div style=" display: flex; justify-content: flex-end;"> + <el-button plain type="primary" @click="addHandler">鏂板</el-button> + </div> + <!-- 鏂板瀵硅瘽妗�--> + <el-dialog + title="鏂板鏁版嵁缁熻鍒嗘瀽" + :visible.sync="addVisible" + append-to-body + > + </el-dialog> + </div> + +</template> + +<script> +import lineChart from "../../components/StatisticsComponent/lineChart" + +export default { + components: { + lineChart + }, + name: "statisticPage", + data() { + return { + addVisible: false, + } + }, + methods: { + addHandler() { + this.addVisible = true; + } + } +} +</script> + +<style scoped> + +</style> -- Gitblit v1.9.3