|
@@ -6,6 +6,10 @@ import {getStaticImg} from '@/hooks/common'
|
|
|
import {useCachedViewsStore} from '@/store/modules/cachedViews'
|
|
|
import { showToast } from 'vant';
|
|
|
import { useWindowSize } from '@vueuse/core'
|
|
|
+import {usePublicSettingStore} from '@/store/modules/publicSetting'
|
|
|
+import {_apiLogin} from '@/api/user'
|
|
|
+const publicSettingStore = usePublicSettingStore()
|
|
|
+
|
|
|
|
|
|
const { width } = useWindowSize()
|
|
|
const cachedViewsStore=useCachedViewsStore()
|
|
@@ -209,7 +213,17 @@ async function getMenuList(){
|
|
|
resMenuList.value=res.Data.List||[]
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+const getSetTitle=()=>{
|
|
|
+ _apiLogin.getBaseInfo().then(res=>{
|
|
|
+ if(res.Ret == 200){
|
|
|
+ document.title=res.Data.TabNameMobile?res.Data.TabNameMobile.ConfVal:''
|
|
|
+ }
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
getMenuList()
|
|
|
+getSetTitle()
|
|
|
|
|
|
</script>
|
|
|
|