CzRger пре 8 месеци
родитељ
комит
30bae1cf62

Разлика између датотеке није приказан због своје велике величине
+ 2 - 2
snowy-admin-web/index.html


+ 1 - 1
snowy-admin-web/src/config/index.js

@@ -82,7 +82,7 @@ const DEFAULT_CONFIG = {
 		// 背景图
 		SNOWY_SYS_BACK_IMAGE: '',
 		// 系统名称
-		SNOWY_SYS_NAME: '一企一册',
+		SNOWY_SYS_NAME: '口岸监管服务信息系统',
 		// 版本
 		SNOWY_SYS_VERSION: '2.0',
 		// 版权

+ 2 - 2
snowy-admin-web/src/layout/components/sideM.vue

@@ -2,7 +2,7 @@
 	<div v-drag class="mobile-nav-button" draggable="false" @click="showMobileNav($event)">
 		<appstore-outlined class="xn-appout-line" />
 	</div>
-	<a-drawer v-model:open="visible" :width="210" :closable="false" placement="left">
+	<a-drawer v-model:open="visible" :width="310" :closable="false" placement="left">
 		<header class="snowy-header-logo mobile-nav">
 			<div class="snowy-header-left">
 				<div class="logo-bar">
@@ -118,7 +118,7 @@
 		color: white;
 	}
 	.xn-inline-line {
-		width: 208px;
+		width: 310px;
 		margin-left: -24px;
 	}
 	.mobile-nav {

+ 4 - 1
snowy-admin-web/src/layout/menu/classicalMenu.vue

@@ -37,7 +37,10 @@
 		<a-layout>
 			<div id="snowyHeader" class="snowy-header">
 				<div class="snowy-header-left xn-pl0">
-          <img style="height: 40px; margin-left: 10px" src="/img/logo.png"/>
+					<div class="logo-bar is-mobile">
+						<img class="logo" :src="sysBaseConfig.SNOWY_SYS_LOGO"/>
+						<span>{{ sysBaseConfig.SNOWY_SYS_NAME }}</span>
+					</div>
 					<div v-if="!isMobile" class="panel-item hidden-sm-and-down" @click="menuIsCollapseClick">
 						<MenuUnfoldOutlined v-if="menuIsCollapse" />
 						<MenuFoldOutlined v-else />

+ 4 - 1
snowy-admin-web/src/layout/menu/doubleRowMenu.vue

@@ -47,7 +47,10 @@
 		<a-layout>
 			<div id="snowyHeader" class="snowy-header">
 				<div class="snowy-header-left xn-pl0">
-          <img style="height: 40px; margin-left: 10px" src="/img/logo.png"/>
+					<div class="logo-bar is-mobile">
+						<img class="logo" :src="sysBaseConfig.SNOWY_SYS_LOGO"/>
+						<span>{{ sysBaseConfig.SNOWY_SYS_NAME }}</span>
+					</div>
 					<moduleMenu v-if="moduleMenuShow" @switchModule="switchModule" />
 				</div>
 				<div class="snowy-header-right">

+ 5 - 15
snowy-admin-web/src/layout/menu/leftMenu.vue

@@ -7,8 +7,10 @@
 			<a-layout>
 				<div id="snowyHeader" class="snowy-header">
 					<div class="snowy-header-left xn-pl0">
-						<img style="height: 40px; margin-left: 10px" src="/img/logo.png"/>
-						<moduleMenu v-if="moduleMenuShow" @switchModule="switchModule"/>
+						<div class="logo-bar is-mobile">
+							<img class="logo" :src="sysBaseConfig.SNOWY_SYS_LOGO"/>
+							<span>{{ sysBaseConfig.SNOWY_SYS_NAME }}</span>
+						</div>
 					</div>
 					<div class="snowy-header-right">
 						<user-bar/>
@@ -194,19 +196,7 @@ const menuIsCollapseClick = () => {
 		background-color: #2C83E9;
 		border: none;
 		.snowy-header-left {
-			.logo-bar {
-				display: flex;
-				align-items: center;
-				margin-left: 16px;
-				font-family: PingFang SC, PingFang SC;
-				font-weight: 600;
-				font-size: 24px;
-				color: #FFFFFF;
-				line-height: 28px;
-				.logo {
-					margin-right: 10px;
-				}
-			}
+
 		}
 		.snowy-header-right {
 			color: #ffffff;

+ 4 - 1
snowy-admin-web/src/layout/menu/topMenu.vue

@@ -3,7 +3,10 @@
 		<a-layout class="layout">
 			<div id="snowyHeader" class="snowy-header top-snowy-header xn-pd050">
 				<div class="snowy-header-left xn-pl0">
-          <img style="height: 40px; margin-left: 10px" src="/img/logo.png"/>
+					<div class="logo-bar is-mobile">
+						<img class="logo" :src="sysBaseConfig.SNOWY_SYS_LOGO"/>
+						<span>{{ sysBaseConfig.SNOWY_SYS_NAME }}</span>
+					</div>
 					<header id="snowyHeaderLogo" class="snowy-header-logo">
 						<div class="snowy-header-left">
 							<div class="logo-bar">

+ 20 - 0
snowy-admin-web/src/style/index.less

@@ -157,6 +157,26 @@ a, button, input, textarea {
 	display: flex;
 	align-items: center;
 	padding-left: 20px;
+	.logo-bar {
+		display: flex;
+		align-items: center;
+		margin-left: 16px;
+		font-family: PingFang SC, PingFang SC;
+		font-weight: 600;
+		font-size: 24px;
+		color: #FFFFFF;
+		line-height: 28px;
+		.logo {
+			margin-right: 10px;
+		}
+		&.is-mobile {
+			color: #333333;
+			font-size: 20px;
+			.logo {
+				height: 46px;
+			}
+		}
+	}
 }
 
 .snowy-header-left .menu-unfold-outlined {