mirror of
https://gitee.com/fit2cloud-feizhiyun/MeterSphere.git
synced 2024-12-04 21:19:52 +08:00
fix(menu): 菜单显示组织&应用包类型判断调整
This commit is contained in:
parent
89fef39731
commit
0c4aebd30a
@ -53,7 +53,7 @@
|
||||
try {
|
||||
appStore.initSystemVersion(); // 初始化系统版本
|
||||
// 企业版才校验license
|
||||
if (appStore.packageType === 'enterprise') {
|
||||
if (appStore.getPackageType === 'enterprise') {
|
||||
licenseStore.getValidateLicense();
|
||||
}
|
||||
if (licenseStore.hasLicense()) {
|
||||
@ -96,6 +96,7 @@
|
||||
setLongType('LARK');
|
||||
setLoginExpires();
|
||||
} catch (err) {
|
||||
// eslint-disable-next-line no-console
|
||||
console.log(err);
|
||||
}
|
||||
}
|
||||
@ -107,6 +108,7 @@
|
||||
setLongType('LARK_SUITE');
|
||||
setLoginExpires();
|
||||
} catch (err) {
|
||||
// eslint-disable-next-line no-console
|
||||
console.log(err);
|
||||
}
|
||||
}
|
||||
|
@ -221,11 +221,11 @@
|
||||
}
|
||||
|
||||
watch(
|
||||
() => xPack.value,
|
||||
async (val) => {
|
||||
() => [xPack.value, appStore.getPackageType],
|
||||
async ([val, packageType]) => {
|
||||
if (val) {
|
||||
personalMenus.value = [...copyPersonalMenus.value];
|
||||
if (appStore.packageType === 'enterprise' && licenseStore.hasLicense()) {
|
||||
if (packageType === 'enterprise') {
|
||||
getOrgList();
|
||||
}
|
||||
} else {
|
||||
@ -248,7 +248,7 @@
|
||||
|
||||
watchEffect(() => {
|
||||
if (switchOrgVisible.value || menuSwitchOrgVisible.value) {
|
||||
if (appStore.packageType === 'enterprise' && licenseStore.hasLicense()) {
|
||||
if (appStore.getPackageType === 'enterprise' && licenseStore.hasLicense()) {
|
||||
getOrgList();
|
||||
}
|
||||
nextTick(() => {
|
||||
@ -424,13 +424,17 @@
|
||||
) : (
|
||||
t(element?.meta?.locale || '')
|
||||
)}
|
||||
<a-tooltip content={currentOrgName.value} position="right">
|
||||
<div
|
||||
class={collapsed.value ? 'hidden' : 'current-org-tag'} // 菜单折叠时隐藏切换组织按钮
|
||||
>
|
||||
{currentOrgName.value.substring(0, 1)}
|
||||
</div>
|
||||
</a-tooltip>
|
||||
{xPack.value ? (
|
||||
<a-tooltip content={currentOrgName.value} position="right">
|
||||
<div
|
||||
class={collapsed.value ? 'hidden' : 'current-org-tag'} // 菜单折叠时隐藏切换组织按钮
|
||||
>
|
||||
{currentOrgName.value.substring(0, 1)}
|
||||
</div>
|
||||
</a-tooltip>
|
||||
) : (
|
||||
''
|
||||
)}
|
||||
</div>
|
||||
</a-menu-item>
|
||||
) : (
|
||||
|
@ -36,7 +36,7 @@
|
||||
|
||||
function checkAuthMenu() {
|
||||
const topMenus = appStore.getTopMenus;
|
||||
if (appStore.packageType === 'community') {
|
||||
if (appStore.getPackageType === 'community') {
|
||||
appStore.setTopMenus(topMenus.filter((item) => item.name !== RouteEnum.SETTING_SYSTEM_AUTHORIZED_MANAGEMENT));
|
||||
} else {
|
||||
appStore.setTopMenus(topMenus);
|
||||
@ -120,7 +120,7 @@
|
||||
() => appStore.currentOrgId,
|
||||
async () => {
|
||||
await appStore.initSystemPackage();
|
||||
if (appStore.packageType === 'enterprise') {
|
||||
if (appStore.getPackageType === 'enterprise') {
|
||||
licenseStore.getValidateLicense();
|
||||
}
|
||||
},
|
||||
@ -130,8 +130,8 @@
|
||||
);
|
||||
|
||||
watch(
|
||||
() => appStore.packageType,
|
||||
(val) => {
|
||||
() => appStore.getPackageType,
|
||||
() => {
|
||||
checkAuthMenu();
|
||||
}
|
||||
);
|
||||
|
@ -116,6 +116,9 @@ const useAppStore = defineStore('app', {
|
||||
getLoginLoadingStatus(state: AppState): boolean {
|
||||
return state.loginLoading;
|
||||
},
|
||||
getPackageType(state: AppState): string {
|
||||
return state.packageType;
|
||||
},
|
||||
},
|
||||
actions: {
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user