|
@@ -1,8 +1,6 @@
|
|
|
<script setup>
|
|
|
-import {useUserStore} from '@/pinia/modules/user.js'
|
|
|
import {asyncMenu} from '@/api/menu.js'
|
|
|
const router = useRouter()
|
|
|
-const userStore = useUserStore()
|
|
|
onMounted(() => {
|
|
|
getMenuList()
|
|
|
})
|
|
@@ -27,22 +25,30 @@ const getMenuList = () => {
|
|
|
navigationList.push(option)
|
|
|
}
|
|
|
})
|
|
|
+ if (navigationList.length !== 0) {
|
|
|
+ navigatorJump(navigationList[2].value)
|
|
|
+ }
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
|
|
|
-const navigatorJump = (val) => {
|
|
|
+const confirmNavigator = (val) => {
|
|
|
const mine = val.selectedOptions[0].value
|
|
|
+ navigatorJump(mine)
|
|
|
+}
|
|
|
+
|
|
|
+const navigatorJump = (mine) => {
|
|
|
let obj = {
|
|
|
1: {address: '/navigation/dashboard', title:'仪表盘'},
|
|
|
41: {address: '/navigation/project', title:'项目文件管理'},
|
|
|
- 45: {address: '/navigation/finance', title:'费用管理'},
|
|
|
+ 45: {address: '/navigation/finance', title:'财务管理'},
|
|
|
55: {address: '/navigation/approve', title:'审核管理'},
|
|
|
}
|
|
|
router.push({path: obj[mine].address})
|
|
|
pageTitle.value = obj[mine].title
|
|
|
navigatorShow.value = false
|
|
|
}
|
|
|
+
|
|
|
</script>
|
|
|
|
|
|
<template>
|
|
@@ -59,7 +65,7 @@ const navigatorJump = (val) => {
|
|
|
<van-picker
|
|
|
:columns="navigationList"
|
|
|
@cancel="navigatorShow = false"
|
|
|
- @confirm="navigatorJump"
|
|
|
+ @confirm="confirmNavigator"
|
|
|
/>
|
|
|
</van-popup>
|
|
|
</template>
|