feat: 用户信息页面
This commit is contained in:
104
src/views/Main/defaultSettings.tsx
Normal file
104
src/views/Main/defaultSettings.tsx
Normal file
@@ -0,0 +1,104 @@
|
||||
/** @format */
|
||||
|
||||
import { SmileFilled } from "@ant-design/icons";
|
||||
|
||||
export default {
|
||||
route: {
|
||||
path: "/",
|
||||
routes: [
|
||||
{
|
||||
path: "main/home",
|
||||
name: "仪表盘",
|
||||
icon: <SmileFilled />,
|
||||
},
|
||||
{
|
||||
path: "main/bucket",
|
||||
name: "存储桶",
|
||||
icon: <SmileFilled />,
|
||||
},
|
||||
{
|
||||
path: "main/file",
|
||||
name: "文件管理",
|
||||
icon: <SmileFilled />,
|
||||
},
|
||||
{
|
||||
path: "main/share",
|
||||
name: "分享圈",
|
||||
icon: <SmileFilled />,
|
||||
},
|
||||
{
|
||||
path: "/",
|
||||
name: "个人中心",
|
||||
icon: <SmileFilled />,
|
||||
routes: [
|
||||
{
|
||||
index: true,
|
||||
path: "main/user/info",
|
||||
name: "用户信息",
|
||||
icon: <SmileFilled />,
|
||||
},
|
||||
{
|
||||
path: "main/user/setting",
|
||||
name: "用户设置",
|
||||
icon: <SmileFilled />,
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
location: {
|
||||
pathname: "/",
|
||||
},
|
||||
appList: [
|
||||
{
|
||||
icon: "https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg",
|
||||
title: "Ant Design",
|
||||
desc: "杭州市较知名的 UI 设计语言",
|
||||
url: "https://ant.design",
|
||||
},
|
||||
{
|
||||
icon: "https://gw.alipayobjects.com/zos/antfincdn/FLrTNDvlna/antv.png",
|
||||
title: "AntV",
|
||||
desc: "蚂蚁集团全新一代数据可视化解决方案",
|
||||
url: "https://antv.vision/",
|
||||
target: "_blank",
|
||||
},
|
||||
{
|
||||
icon: "https://gw.alipayobjects.com/zos/antfincdn/upvrAjAPQX/Logo_Tech%252520UI.svg",
|
||||
title: "Pro Components",
|
||||
desc: "专业级 UI 组件库",
|
||||
url: "https://procomponents.ant.design/",
|
||||
},
|
||||
{
|
||||
icon: "https://img.alicdn.com/tfs/TB1zomHwxv1gK0jSZFFXXb0sXXa-200-200.png",
|
||||
title: "umi",
|
||||
desc: "插件化的企业级前端应用框架。",
|
||||
url: "https://umijs.org/zh-CN/docs",
|
||||
},
|
||||
|
||||
{
|
||||
icon: "https://gw.alipayobjects.com/zos/bmw-prod/8a74c1d3-16f3-4719-be63-15e467a68a24/km0cv8vn_w500_h500.png",
|
||||
title: "qiankun",
|
||||
desc: "可能是你见过最完善的微前端解决方案🧐",
|
||||
url: "https://qiankun.umijs.org/",
|
||||
},
|
||||
{
|
||||
icon: "https://gw.alipayobjects.com/zos/rmsportal/XuVpGqBFxXplzvLjJBZB.svg",
|
||||
title: "语雀",
|
||||
desc: "知识创作与分享工具",
|
||||
url: "https://www.yuque.com/",
|
||||
},
|
||||
{
|
||||
icon: "https://gw.alipayobjects.com/zos/rmsportal/LFooOLwmxGLsltmUjTAP.svg",
|
||||
title: "Kitchen ",
|
||||
desc: "Sketch 工具集",
|
||||
url: "https://kitchen.alipay.com/",
|
||||
},
|
||||
{
|
||||
icon: "https://gw.alipayobjects.com/zos/bmw-prod/d3e3eb39-1cd7-4aa5-827c-877deced6b7e/lalxt4g3_w256_h256.png",
|
||||
title: "dumi",
|
||||
desc: "为组件开发场景而生的文档工具",
|
||||
url: "https://d.umijs.org/zh-CN",
|
||||
},
|
||||
],
|
||||
};
|
Reference in New Issue
Block a user