12345678910111213141516171819202122232425 |
- <template>
- <layout-page>招聘会</layout-page>
- </template>
- <script setup>
- import layoutPage from '@/layout'
- import { onShow } from '@dcloudio/uni-app'
- import { getAccessToken } from '@/utils/request'
- import { showAuthModal } from '@/hooks/useModal'
- onShow(() => {
- // 设置自定义tabbar选中值
- const currentPage = getCurrentPages()[0] // 获取当前页面实例
- const currentTabBar = currentPage?.getTabBar?.()
- // 设置当前tab页的下标index
- currentTabBar?.setData({ selected: 3 })
- if (!getAccessToken()) return showAuthModal()
- })
- </script>
- <style scoped lang="scss">
- </style>
|