From f18ff6df94830a0147f372f031fa94ab5402ead8 Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期一, 18 三月 2024 15:57:29 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- src/views/screen/components/screen-examine/index.vue | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 57 insertions(+), 0 deletions(-) diff --git a/src/views/screen/components/screen-examine/index.vue b/src/views/screen/components/screen-examine/index.vue new file mode 100644 index 0000000..3e7ef83 --- /dev/null +++ b/src/views/screen/components/screen-examine/index.vue @@ -0,0 +1,57 @@ +<template> + <div class="examine-container"> + <wrapper-title :title="'鑰冩牳鎴愮哗鏁版嵁'"></wrapper-title> + <div class="examine-content"> + <div class="examine-wrapper"> + <examine-chart class="wrapper-item"></examine-chart> + <examine-table class="wrapper-item"></examine-table> + </div> + </div> + </div> +</template> + +<script> +import WrapperTitle from '../wrapper-title/index'; +import ExamineChart from './components/examine-chart'; +import ExamineTable from './components/examine-table'; +export default { + name: 'ScreenExamine', + components: { + WrapperTitle, + ExamineChart, + ExamineTable + } +} + +</script> + +<style lang="scss" scoped> +.examine-container { + width: 100%; + height: 100%; + display: flex; + flex-direction: column; +} + +.examine-content { + width: 100%; + flex: 1; + position: relative; + + .examine-wrapper { + width: 100%; + height: 100%; + display: flex; + flex-direction: column; + } +} + +.wrapper-item { + background: rgba(67, 102, 155, 0.3); + border: 1px solid rgba(47, 91, 157, 0.8); + margin-bottom: 20px; + &:last-of-type { + margin-bottom: 0; + } +} +</style> \ No newline at end of file -- Gitblit v1.8.0