fix: 对使用手册,官网进行限制

This commit is contained in:
TsMask
2024-07-24 18:10:38 +08:00
parent b80bae0126
commit c1f34f56ac
4 changed files with 51 additions and 61 deletions

View File

@@ -134,16 +134,6 @@ onMounted(() => {
function fnChangeLocale(e: any) {
changeLocale(e.key);
}
/**系统使用手册跳转 */
function fnClickHelpDoc(language?: string) {
const routeData = router.resolve({ name: 'HelpDoc' });
let href = routeData.href;
if (language) {
href = `${routeData.href}?language=${language}`;
}
window.open(href, '_blank');
}
</script>
<template>