de/frontend/src/views/wizard/details/LatestDevelopmentsBack.vue
2022-10-11 15:09:32 +08:00

73 lines
1.3 KiB
Vue

<template>
<el-row class="demo_main">
<el-row class="demo_content">
<el-row
v-for="(details,index) in blogsInfo"
:key="index"
>
<a
:href="details.href"
target="_blank"
>{{ details.title }}</a>
<br>
<span style="color: lightgray">{{ details.time }}</span>
</el-row>
</el-row>
<el-row class="demo_bottom">
<a
href="https://blog.fit2cloud.com/?cat=321"
target="_blank"
>{{ $t('wizard.show_more') }}</a>
</el-row>
</el-row>
</template>
<script>
import { blogLastActive } from '@/api/wizard/wizard'
export default {
name: 'LatestDevelopments',
data() {
return {
blogsInfo: []
}
},
mounted() {
this.init()
},
methods: {
init() {
blogLastActive().then(res => {
this.blogsInfo = res.data
})
}
}
}
</script>
<style lang="scss" scoped>
.demo_main{
height: 100%;
padding: 10px 20px 10px 20px;
}
.demo_content{
padding-left: 10px;
float: left;
font-weight: 500;
color: var(--MenuActiveBG, #409EFF);
max-height: 80%;
overflow: hidden;
}
.demo_bottom{
position: absolute;
left: 30px;
bottom: 10px;
font-weight: 500;
color: var(--MenuActiveBG, #409EFF);
}
</style>