From ec12b5e3ef0929cb74d64e30be767c51ef4e35dd Mon Sep 17 00:00:00 2001 From: mk <2403457699@qq.com> Date: Thu, 26 Oct 2023 09:19:57 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B7=B3=E8=BD=AC=E8=B7=AF=E7=94=B1=E6=9B=B4?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/src/App.vue b/src/App.vue index 2284652..6d97916 100644 --- a/src/App.vue +++ b/src/App.vue @@ -32,9 +32,10 @@ export default { name: 'App', methods: { jumpTo(page) { - switch(page) { + switch (page) { case '1': - window.open(window.SITE_CONFIG['baseUrl'] + '/epdc-admin/#/autoLogin?_t=' + new Date().getTime()) + window.open(window.SITE_CONFIG['baseUrl'] + '/epdc-admin/#/login?_t=' + new Date().getTime()) + // window.open(window.SITE_CONFIG['baseUrl'] + '/epdc-admin/#/autoLogin?_t=' + new Date().getTime()) break case '2': window.open('http://139.129.119.33:10001/yushan#/home') @@ -63,12 +64,14 @@ body { overflow: hidden; position: relative; } + .home-bg { width: 100vw; height: 100vh; position: absolute; z-index: -1; } + .title { color: #fff; font-size: 40px; @@ -76,6 +79,7 @@ body { line-height: 70px; text-align: center; } + .menu-box { width: 100%; height: 275px; @@ -85,6 +89,7 @@ body { align-items: center; justify-content: space-around; } + .menu-box .menu-item { width: 181px; height: 100%; @@ -95,33 +100,40 @@ body { position: relative; cursor: pointer; } + .menu-box .menu-item:hover { transform: scale(1.1); } + .menu-box .menu-item:active { border: 1px dotted grey; } + .menu-box .item-1 { margin-top: 33%; } + .menu-box .item-2 { margin-top: 23%; } + .menu-box .item-3 { margin-top: 18%; } + .menu-box .menu-item .menu-icon { width: 100%; height: 100%; position: absolute; } + .menu-box .menu-item .menu-title { color: #fff; font-size: 16px; width: 140px; text-align: center; } + .menu-box .menu-item .menu-width-100 { width: 100%; -} - +}