Merge branch 'main' into multi-tenant
This commit is contained in:
@@ -72,9 +72,9 @@ function fnColorChange(e: Event) {
|
||||
<a-switch
|
||||
:checked-children="t('common.switch.open')"
|
||||
:un-checked-children="t('common.switch.shut')"
|
||||
:checked="proConfig.navTheme === 'dark'"
|
||||
:checked="proConfig.menuTheme === 'dark'"
|
||||
@change="
|
||||
(checked:any) => changeConf('navTheme', checked ? 'dark' : 'light')
|
||||
(checked:any) => changeConf('menuTheme', checked ? 'dark' : 'light')
|
||||
"
|
||||
></a-switch>
|
||||
</template>
|
||||
|
||||
@@ -342,7 +342,7 @@ onBeforeUnmount(() => {
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<PageContainer :breadcrumb="false">
|
||||
<PageContainer :breadcrumb="{}">
|
||||
<div>
|
||||
<a-drawer :visible="visible" @close="closeDrawer" :width="700">
|
||||
<a-descriptions bordered :column="1" :label-style="{ width: '160px' }">
|
||||
|
||||
@@ -97,6 +97,12 @@ async function fnModalOk() {
|
||||
]),
|
||||
duration: 4.5,
|
||||
});
|
||||
} else {
|
||||
notification.success({
|
||||
message: modalState.title,
|
||||
description: t('views.ne.neLicense.uploadChangeOk'),
|
||||
duration: 4.5,
|
||||
});
|
||||
}
|
||||
|
||||
// 结束
|
||||
|
||||
@@ -208,11 +208,7 @@ onMounted(() => {
|
||||
</a-form>
|
||||
</div>
|
||||
|
||||
<GlobalFooter
|
||||
class="footer"
|
||||
:links="false"
|
||||
:copyright="appStore.copyright"
|
||||
/>
|
||||
<GlobalFooter class="footer" :links="[]" :copyright="appStore.copyright" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user