style: 部分页面调整
This commit is contained in:
3
src/typings/components.d.ts
vendored
3
src/typings/components.d.ts
vendored
@@ -68,6 +68,7 @@ declare module 'vue' {
|
||||
DictTag: typeof import('./../components/DictTag/index.vue')['default']
|
||||
DownOutlined: typeof import('@ant-design/icons-vue')['DownOutlined']
|
||||
ExportOutlined: typeof import('@ant-design/icons-vue')['ExportOutlined']
|
||||
FieldTimeOutlined: typeof import('@ant-design/icons-vue')['FieldTimeOutlined']
|
||||
FormOutlined: typeof import('@ant-design/icons-vue')['FormOutlined']
|
||||
GithubOutlined: typeof import('@ant-design/icons-vue')['GithubOutlined']
|
||||
Hour: typeof import('./../components/CronModal/components/Hour.vue')['default']
|
||||
@@ -89,6 +90,7 @@ declare module 'vue' {
|
||||
QuestionCircleOutlined: typeof import('@ant-design/icons-vue')['QuestionCircleOutlined']
|
||||
ReloadOutlined: typeof import('@ant-design/icons-vue')['ReloadOutlined']
|
||||
RobotOutlined: typeof import('@ant-design/icons-vue')['RobotOutlined']
|
||||
RocketOutlined: typeof import('@ant-design/icons-vue')['RocketOutlined']
|
||||
RouterLink: typeof import('vue-router')['RouterLink']
|
||||
RouterView: typeof import('vue-router')['RouterView']
|
||||
SearchOutlined: typeof import('@ant-design/icons-vue')['SearchOutlined']
|
||||
@@ -97,6 +99,7 @@ declare module 'vue' {
|
||||
SettingOutlined: typeof import('@ant-design/icons-vue')['SettingOutlined']
|
||||
SyncOutlined: typeof import('@ant-design/icons-vue')['SyncOutlined']
|
||||
TeamOutlined: typeof import('@ant-design/icons-vue')['TeamOutlined']
|
||||
UnlockOutlined: typeof import('@ant-design/icons-vue')['UnlockOutlined']
|
||||
UserDeleteOutlined: typeof import('@ant-design/icons-vue')['UserDeleteOutlined']
|
||||
UsergroupAddOutlined: typeof import('@ant-design/icons-vue')['UsergroupAddOutlined']
|
||||
UsergroupDeleteOutlined: typeof import('@ant-design/icons-vue')['UsergroupDeleteOutlined']
|
||||
|
||||
@@ -1,32 +1,12 @@
|
||||
<script setup lang="ts">
|
||||
import donate from '@/assets/donate.jpg';
|
||||
import { PageContainer } from '@ant-design-vue/pro-layout';
|
||||
import useAppStore from '@/store/modules/app';
|
||||
import useUserStore from '@/store/modules/user';
|
||||
const userStore = useUserStore();
|
||||
const { appName, appVersion } = useAppStore();
|
||||
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<PageContainer :breadcrumb="false" >
|
||||
|
||||
<template #content>
|
||||
展示统计数据
|
||||
</template>
|
||||
<a-row :gutter="16">
|
||||
|
||||
</a-row>
|
||||
<PageContainer :breadcrumb="false">
|
||||
<template #content> 展示统计数据 </template>
|
||||
<a-row :gutter="16"> </a-row>
|
||||
</PageContainer>
|
||||
</template>
|
||||
|
||||
<style lang="less" scoped>
|
||||
.nickname {
|
||||
margin-bottom: 12px;
|
||||
color: rgba(0, 0, 0, 0.85);
|
||||
font-weight: 500;
|
||||
font-size: 20px;
|
||||
line-height: 28px;
|
||||
}
|
||||
</style>
|
||||
<style lang="less" scoped></style>
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<script lang="ts" setup>
|
||||
import { GlobalFooter } from '@ant-design-vue/pro-layout';
|
||||
import { message } from 'ant-design-vue/lib';
|
||||
import { reactive } from 'vue';
|
||||
import useUserStore from '@/store/modules/user';
|
||||
@@ -168,6 +169,17 @@ function fnChangeLocale(e: any) {
|
||||
</a-row>
|
||||
</a-form>
|
||||
</div>
|
||||
|
||||
<GlobalFooter
|
||||
class="footer"
|
||||
:links="[
|
||||
{ blankTarget: false, title: t('globalFooter.help'), href: '/' },
|
||||
{ blankTarget: false, title: t('globalFooter.privacy'), href: '/' },
|
||||
{ blankTarget: false, title: t('globalFooter.term'), href: '/' },
|
||||
]"
|
||||
copyright="Copyright ©2023 For AGrand 千通"
|
||||
>
|
||||
</GlobalFooter>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user