init: 初始化项目:logo,标题

This commit is contained in:
2025-07-17 14:26:20 +08:00
parent c72ef64c82
commit 0d942210b3
4 changed files with 9 additions and 4 deletions

View File

@@ -4,7 +4,7 @@
<contextName>nlAdmin</contextName>
<property name="log.charset" value="utf-8"/>
<property name="log.pattern"
value="%black(%contextName-) %red(%d{yyyy-MM-dd HH:mm:ss.SSS}) %green([%thread]) %highlight(%-5level) %boldMagenta(%logger{36}) - %gray(%msg%n)"/>
value="%black(%contextName-) %red(%d{yyyy-MM-dd HH:mm:ss.SSS}) %green([%thread]) %highlight(%-5level) %boldMagenta(%logger{36}) - %cyan(%msg%n)"/>
<property name="LOG_HOME" value="${logPath}"/>

View File

@@ -1,3 +1,3 @@
# 欧伦电器WMS系统
# 株洲中钨LMS系统
/api/sysMenu/build?systemType=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

View File

@@ -14,7 +14,7 @@
</template>
<script>
import Logo from '@/assets/images/logo.png'
import Logo from '@/assets/images/zzzw.png'
import variables from '@/assets/styles/variables.scss'
export default {
name: 'SidebarLogo',
@@ -26,7 +26,7 @@ export default {
},
data() {
return {
title: 'WMS系统',
title: '诺力开发平台',
logo: Logo,
title_param: 'platform'
}
@@ -38,6 +38,11 @@ export default {
sideTheme() {
return this.$store.state.settings.sideTheme
}
},
created() {
this.getValueByCode(this.title_param).then(res => {
this.title = res.value
})
}
}
</script>