无人机管理后台前端(已迁走)
张含笑
2025-07-03 f78cf681c5a3730a3d8d0037790f4e0861b20c4f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
export default function getBaseConfig () {
    const store = useStore()
    const loginUserInfo = computed(() => store?.state?.user?.userInfo?.detail)
 
    return {
        userLoginTitle (key) {
            return (systemNameEnum[key] || '中图智飞') + '低空感知网平台'
        },
 
        userLoginPageClass: '',
 
        loginTitle: '中图智飞低空智能感知网平台',  //登陆页面标题
        headerTitle: `${loginUserInfo.value?.areaName || ''}低空感知网指挥调度平台`,//首页标题
 
        gateTitle: '中图智飞低空感知网平台',
        gateTitleEn: 'AISKY Low-altitude Perception Network Platform',
 
    }
}