@@ -8,7 +8,6 @@ export function createPermissionGuard(router) { | |||
const permissionStore = usePermissionStore() | |||
router.beforeEach(async(to, from, next) => { | |||
const oidcUser = await getUserInfo() | |||
debugger | |||
if (oidcUser) { | |||
const hasRoutes = !!permissionStore.permissionRoutes.length | |||
if (hasRoutes) { |
@@ -281,8 +281,6 @@ const startFly = () => { | |||
pilotStart({ id: data.id }).then(({ code, msg }) => { | |||
if (code === 0) { | |||
emit('close') | |||
} else { | |||
$message.error(msg) | |||
} | |||
}) | |||
} | |||
@@ -299,8 +297,6 @@ const endFly = () => { | |||
pilotEnd({ id: data.id }).then(({ code, msg }) => { | |||
if (code === 0) { | |||
emit('close') | |||
} else { | |||
$message.error(msg) | |||
} | |||
}) | |||
} |