8 小时以前 53e9b23a40186efd149fd5c5350b5eced1f69920
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<script lang="ts" setup>
import { computed } from 'vue';
 
import { AuthPageLayout } from '@vben/layouts';
import { preferences } from '@vben/preferences';
 
import { $t } from '#/locales';
 
declare const __APP_LOGO__: string;
 
const appName = computed(() => '种植业数字化平台');
const logo = computed(() => __APP_LOGO__ || preferences.logo.source);
const logoDark = computed(() => preferences.logo.sourceDark);
</script>
 
<template>
  <AuthPageLayout
    :app-name="appName"
    :logo="logo"
    :logo-dark="logoDark"
    page-description="数字赋能农业 · 科技引领未来"
    page-title="种植业数字化平台"
  >
    <!-- 自定义工具栏 -->
    <!-- <template #toolbar></template> -->
  </AuthPageLayout>
</template>