| | |
| | | import SettingButton from './components/SettingButton.vue'; |
| | | import { useHeaderSetting } from '@/hooks/setting/useHeaderSetting'; |
| | | import { useMenuSetting } from '@/hooks/setting/useMenuSetting'; |
| | | import { useProdRouteStore } from '/@/store/modules/prodRoute'; |
| | | |
| | | defineOptions({ name: 'MultipleTabs' }); |
| | | |
| | |
| | | |
| | | function handleChange(activeKey: any) { |
| | | activeKeyRef.value = activeKey; |
| | | const useProdRoute = useProdRouteStore(); |
| | | if(activeKey.includes('/CP/')){ |
| | | useProdRoute.setChangeToCPPage(true); |
| | | } |
| | | go(activeKey, false); |
| | | } |
| | | |