99 lines
2.4 KiB
Vue
99 lines
2.4 KiB
Vue
<template>
|
|
<el-table :data="list" border fit highlight-current-row style="width: 100%">
|
|
|
|
<el-table-column align="center" label="序号" width="65" v-loading="loading"
|
|
element-loading-text="请给我点时间!">
|
|
<template scope="scope">
|
|
<span>{{scope.row.id}}</span>
|
|
</template>
|
|
</el-table-column>
|
|
|
|
<el-table-column width="180px" align="center" label="时间">
|
|
<template scope="scope">
|
|
<span>{{scope.row.timestamp | parseTime('{y}-{m}-{d} {h}:{i}')}}</span>
|
|
</template>
|
|
</el-table-column>
|
|
|
|
<el-table-column min-width="300px" label="标题">
|
|
<template scope="scope">
|
|
<span>{{scope.row.title}}</span>
|
|
<el-tag>{{scope.row.type}}</el-tag>
|
|
</template>
|
|
</el-table-column>
|
|
|
|
<el-table-column width="110px" align="center" label="作者">
|
|
<template scope="scope">
|
|
<span>{{scope.row.author}}</span>
|
|
</template>
|
|
</el-table-column>
|
|
|
|
<el-table-column width="80px" label="重要性">
|
|
<template scope="scope">
|
|
<icon-svg v-for="n in +scope.row.importance" icon-class="wujiaoxing" :key="n"></icon-svg>
|
|
</template>
|
|
</el-table-column>
|
|
|
|
<el-table-column align="center" label="阅读数" width="95">
|
|
<template scope="scope">
|
|
<span>{{scope.row.pageviews}}</span>
|
|
</template>
|
|
</el-table-column>
|
|
|
|
<el-table-column class-name="status-col" label="状态" width="90">
|
|
<template scope="scope">
|
|
<el-tag :type="scope.row.status | statusFilter">{{scope.row.status}}</el-tag>
|
|
</template>
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
</template>
|
|
|
|
<script>
|
|
import { fetchList } from '@/api/article'
|
|
|
|
export default {
|
|
props: {
|
|
type: {
|
|
type: String,
|
|
default: 'CN'
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
list: null,
|
|
listQuery: {
|
|
page: 1,
|
|
limit: 5,
|
|
type: this.type,
|
|
sort: '+id'
|
|
},
|
|
loading: false
|
|
}
|
|
},
|
|
filters: {
|
|
statusFilter(status) {
|
|
const statusMap = {
|
|
published: 'success',
|
|
draft: 'gray',
|
|
deleted: 'danger'
|
|
}
|
|
return statusMap[status]
|
|
}
|
|
},
|
|
created() {
|
|
this.getList()
|
|
},
|
|
methods: {
|
|
getList() {
|
|
this.loading = true
|
|
this.$emit('create') // for test
|
|
fetchList(this.listQuery).then(response => {
|
|
this.list = response.data.items
|
|
this.loading = false
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|