From d6803b83a827a62fa29737c31104c3ee9bc194d8 Mon Sep 17 00:00:00 2001 From: zhuzhuanzhuan Date: 星期一, 08 四月 2024 10:18:41 +0800 Subject: [PATCH] 1、全局菜单栏新增点击父级菜单标题后在导航栏展开父级所有下一级菜单功能 2、登录页面按照新需求调整整体布局及样式 3、优化首页看板页面图表视图 --- src/components/layouts/UserLayout.vue | 47 ++++++++++++++++++++++++++--------------------- 1 files changed, 26 insertions(+), 21 deletions(-) diff --git a/src/components/layouts/UserLayout.vue b/src/components/layouts/UserLayout.vue index 42d7cce..6896523 100644 --- a/src/components/layouts/UserLayout.vue +++ b/src/components/layouts/UserLayout.vue @@ -1,17 +1,17 @@ <template> <div id="userLayout" :class="['user-layout-wrapper', device]"> <div class="container"> - <div class="top"> - <div class="header"> - <a href="/"> - <img src="~@/assets/lxzn.png" class="logo" alt="logo"> - <span class="title">MDC鏅烘収杞﹂棿</span> - </a> - </div> - <!--<div class="desc">--> - <!--Jeecg Boot 鏄腑鍥芥渶鍏峰奖鍝嶅姏鐨� 浼佷笟绾� 浣庝唬鐮佸钩鍙�--> + <!--<div class="top">--> + <!--<div class="header">--> + <!--<a href="/">--> + <!--<img src="~@/assets/lxzn_white.png" class="logo" alt="logo">--> + <!--<span class="title">MDC鏅烘収杞﹂棿</span>--> + <!--</a>--> <!--</div>--> - </div> + <!--<!–<div class="desc">–>--> + <!--<!–Jeecg Boot 鏄腑鍥芥渶鍏峰奖鍝嶅姏鐨� 浼佷笟绾� 浣庝唬鐮佸钩鍙�–>--> + <!--<!–</div>–>--> + <!--</div>--> <route-view></route-view> @@ -66,10 +66,13 @@ .container { width: 100%; min-height: 100%; - background: #f0f2f5 url(~@/assets/background.svg) no-repeat 50%; + background: #f0f2f5 url(~@/assets/login.jpg) no-repeat 50%; background-size: 100%; - padding: 110px 0 144px; + /*padding: 110px 0 144px;*/ position: relative; + display: flex; + align-items: center; + justify-content: center; a { text-decoration: none; @@ -77,6 +80,10 @@ .top { text-align: center; + position: absolute; + top: 50px; + left: 50px; + .header { height: 44px; @@ -95,13 +102,13 @@ .logo { height: 44px; vertical-align: top; - margin-right: 16px; + margin-right: 10px; border-style: none; } .title { - font-size: 33px; - color: rgba(0, 0, 0, .85); + font-size: 30px; + color: #fff; font-family: "Chinese Quote", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; font-weight: 600; position: relative; @@ -117,17 +124,15 @@ } .main { - min-width: 260px; - width: 368px; - margin: 0 auto; + background-color: #fff; + width: 1100px; + border-radius: 10px; } .footer { position: absolute; width: 100%; bottom: 0; - padding: 0 16px; - margin: 48px 0 24px; text-align: center; .links { @@ -142,7 +147,7 @@ } } .copyright { - color: rgba(0, 0, 0, 0.45); + color: #fff; font-size: 14px; } } -- Gitblit v1.9.3