48 lines
1.5 KiB
Vue
48 lines
1.5 KiB
Vue
<template>
|
|
<div>
|
|
<TopSection :title="portal.title" :description="portal.description">
|
|
<TopSectionButton/>
|
|
</TopSection>
|
|
<CardList :title="'Featured Programs'" :description="'Master ERPNext'" :sectionType="'section-padding section-bg'">
|
|
<ProgramCard slot="card-list-slot" v-for="item in featuredPrograms" :key="item.program.name" :program="item.program" :enrolled="item.is_enrolled"/>
|
|
<AButton slot="list-bottom" :type="'primary'" :size="'md'" :route="'List/Program'">View All</AButton>
|
|
</CardList>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import Button from '../components/Button.vue';
|
|
import TopSection from "../components/TopSection.vue"
|
|
import CardList from "../components/CardList.vue"
|
|
import ProgramCard from "../components/ProgramCard.vue"
|
|
import TopSectionButton from "../components/TopSectionButton.vue"
|
|
|
|
export default {
|
|
name: "Home",
|
|
data() {
|
|
return{
|
|
portal: {},
|
|
featuredPrograms: {},
|
|
// enrolledPrograms: new Set()
|
|
}
|
|
},
|
|
components: {
|
|
AButton: Button,
|
|
TopSection,
|
|
CardList,
|
|
ProgramCard,
|
|
TopSectionButton
|
|
},
|
|
mounted() {
|
|
this.getPortalDetails().then(data => this.portal = data);
|
|
this.getFeaturedPrograms().then(data => this.featuredPrograms = data);
|
|
},
|
|
methods: {
|
|
getPortalDetails() {
|
|
return lms.call("get_portal_details")
|
|
},
|
|
getFeaturedPrograms() {
|
|
return lms.call("get_featured_programs")
|
|
}
|
|
}
|
|
};
|
|
</script> |