jobFair.vue 481 B

123456789101112131415161718192021
  1. <template>
  2. <layout-page>招聘会</layout-page>
  3. </template>
  4. <script setup>
  5. import layoutPage from '@/layout'
  6. import { onShow } from '@dcloudio/uni-app'
  7. // 设置自定义tabbar选中值
  8. onShow(() => {
  9. const currentPage = getCurrentPages()[0]; // 获取当前页面实例
  10. const currentTabBar = currentPage?.getTabBar?.();
  11. // 设置当前tab页的下标index
  12. currentTabBar?.setData({ selected: 3 });
  13. })
  14. </script>
  15. <style scoped lang="scss">
  16. </style>