feat(ui): 新增弹窗及时间格式化

This commit is contained in:
廖彦棋
2024-03-07 09:23:45 +08:00
parent f2cfcfeefc
commit a36f14eb94
11 changed files with 217 additions and 4 deletions

View File

@@ -2,6 +2,7 @@ import {
IconUser,
IconDashboard,
IconOrderedList,
IconCalendar,
} from "@arco-design/web-vue/es/icon";
const menu = [
@@ -32,6 +33,24 @@ const menu = [
},
component: () => import('@/views/Order/OrderContainer.vue')
},
{
path: '/reward',
name: 'Reward',
meta: {
title: "众筹管理",
icon: IconCalendar,
},
component: () => import('@/views/Reward/RewardContainer.vue')
},
{
path: '/loginLog',
name: 'LoginLog',
meta: {
title: "登录日志",
icon: IconCalendar,
},
component: () => import('@/views/LoginLog.vue')
},
];
export default menu;