@@ -40,6 +40,20 @@ const home: Menu.MenuOptions = {
isLink: '',
title: 'Action Items'
}
+ },
+ {
+ component: '/agendaItem/index',
+ name: 'agendaItemIndex',
+ path: '/agenda-items/index',
+ meta: {
+ icon: '',
+ isAffix: false,
+ isFull: false,
+ isHide: false,
+ isKeepAlive: true,
+ isLink: '',
+ title: 'Agenda Items'
+ }
]
};
@@ -0,0 +1,28 @@
+<template>
+ <StPage>
+ <div class="home card">
+ <img class="home-bg" src="@/assets/images/welcome.png" alt="welcome" />
+ </div>
+ </StPage>
+</template>
+
+<route lang="yaml">
+meta:
+ title: action items
+ isAffix: true
+</route>
+<style lang="scss" scoped>
+.home {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ width: 100%;
+ height: 100%;
+ .home-bg {
+ width: 70%;
+ max-width: 1200px;
+ margin-bottom: 20px;
+}
+</style>