| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <!--
- * 主应用页面
- *
- * @Author: DCCloud
- * @Date: 2022-09-12 23:46:47
- -->
- <template>
- <a-config-provider :locale="antdLocale" :theme="{
- algorithm: compactFlag ? theme.compactAlgorithm : theme.defaultAlgorithm,
- token: {
- colorPrimary: themeColors[colorIndex].primaryColor,
- colorLink: themeColors[colorIndex].primaryColor,
- colorLinkActive: themeColors[colorIndex].activeColor,
- colorLinkHover: themeColors[colorIndex].hoverColor,
- colorIcon: themeColors[colorIndex].primaryColor,
- borderRadius: borderRadius,
- },
- components: {
- Button: {
- colorLink: themeColors[colorIndex].primaryColor,
- colorLinkActive: themeColors[colorIndex].activeColor,
- colorLinkHover: themeColors[colorIndex].hoverColor,
- },
- Icon: {
- colorIcon: themeColors[colorIndex].primaryColor,
- },
- },
- }">
- <!---全局loading--->
- <a-spin :spinning="spinning" tip="稍等片刻,我在拼命加载中..." size="large">
- <!--- 路由 -->
- <RouterView />
- </a-spin>
- </a-config-provider>
- </template>
- <script setup>
- import dayjs from 'dayjs';
- import { computed } from 'vue';
- import { messages } from '/@/i18n';
- import { useAppConfigStore } from '/@/store/modules/system/app-config';
- import { useSpinStore } from '/@/store/modules/system/spin';
- import { theme } from 'ant-design-vue';
- import { themeColors } from '/@/theme/color.js';
- const antdLocale = computed(() => messages[useAppConfigStore().language].antdLocale);
- const dayjsLocale = computed(() => messages[useAppConfigStore().language].dayjsLocale);
- dayjs.locale(dayjsLocale);
- // 全局loading
- let spinStore = useSpinStore();
- const spinning = computed(() => spinStore.loading);
- // 是否紧凑
- const compactFlag = computed(() => useAppConfigStore().compactFlag);
- // 主题颜色
- const colorIndex = computed(() => {
- return useAppConfigStore().colorIndex;
- });
- // 圆角
- const borderRadius = computed(() => {
- return useAppConfigStore().borderRadius;
- });
- </script>
|