修改冀北现场反馈问题

This commit is contained in:
GGJ
2025-01-02 15:51:14 +08:00
parent b81cbf2e5e
commit 7d90b6bfcc
21 changed files with 856 additions and 1021 deletions

View File

@@ -8,7 +8,9 @@
size="18"
/>
</div>
<span class="nav-bar-title">{{ getTheme.name }}</span>
<span class="nav-bar-title">{{ getTheme.name }} <span style="font-size: 14px;" v-if="Version?.versionName">
({{ Version?.versionName }})
</span></span>
<NavMenus />
</div>
</template>
@@ -18,7 +20,8 @@ import { useConfig } from '@/stores/config'
import NavTabs from '@/layouts/admin/components/navBar/tabs.vue'
import NavMenus from '../navMenus.vue'
import { showShade } from '@/utils/pageShade'
import { getLastData } from '@/api/systerm'
const Version: any = ref({})
const config = useConfig()
const getTheme = JSON.parse(window.localStorage.getItem('getTheme') as string)
@@ -29,6 +32,10 @@ const onMenuCollapse = () => {
config.setLayout('menuCollapse', false)
}
onMounted(() => {
// getLastData({ versionType: 'WEB' }).then(res => {
// Version.value = res.data
// })
document.title = getTheme.name
})
</script>