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%; -} - +}