From 9806ca2cd1f15c6cf7b595ae455ff61904792b8a Mon Sep 17 00:00:00 2001
From: Mr.Shi <1878285526@qq.com>
Date: 星期一, 21 八月 2023 09:56:14 +0800
Subject: [PATCH] 大屏
---
screen_standard/src/views/index.vue | 36 ++++++++++++++++++++++++++++++++++++
1 files changed, 36 insertions(+), 0 deletions(-)
diff --git a/screen_standard/src/views/index.vue b/screen_standard/src/views/index.vue
new file mode 100644
index 0000000..e660a85
--- /dev/null
+++ b/screen_standard/src/views/index.vue
@@ -0,0 +1,36 @@
+<template>
+ <div class="content">
+ <div class="content_left">1</div>
+ <div class="content_center">2</div>
+ <div class="content_right">3</div>
+ </div>
+</template>
+
+
+<script setup>
+
+</script>
+
+<style lang="scss" scoped>
+ .content {
+ width: 100%;
+ height: auto;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ .content_left {
+ width: 920px;
+ background-color: aquamarine;
+ }
+ .content_center {
+ flex: 1;
+ margin: 0 40px;
+ background-color: aquamarine;
+ }
+ .content_right {
+ width: 920px;
+ background-color: aquamarine;
+ }
+ }
+</style>
+
\ No newline at end of file
--
Gitblit v1.9.3