2021-06-28 08:08:24 +08:00
|
|
|
<template>
|
|
|
|
<el-row style="margin-top: 20px;">
|
|
|
|
<el-col style="margin-bottom: 1rem;">
|
|
|
|
<el-breadcrumb separator-class="el-icon-arrow-right">
|
|
|
|
<el-breadcrumb-item :to="{ path: '/admin/dashboard' }">首页</el-breadcrumb-item>
|
|
|
|
<el-breadcrumb-item>文章管理</el-breadcrumb-item>
|
|
|
|
</el-breadcrumb>
|
|
|
|
</el-col>
|
|
|
|
<el-col style="margin-bottom: 1rem;">
|
|
|
|
<el-pagination
|
|
|
|
:hide-on-single-page="true"
|
|
|
|
@size-change="handleSizeChange"
|
|
|
|
@current-change="handleCurrentChange"
|
2022-07-25 06:45:33 +08:00
|
|
|
:current-page="articles.pageNum"
|
2021-06-28 08:08:24 +08:00
|
|
|
:page-sizes="[10, 20, 50, 100]"
|
2022-07-25 06:45:33 +08:00
|
|
|
:page-size="articles.pageSize"
|
2021-06-28 08:08:24 +08:00
|
|
|
layout="total, sizes, prev, pager, next, jumper"
|
2022-07-25 06:45:33 +08:00
|
|
|
:total="articles.total">
|
2021-06-28 08:08:24 +08:00
|
|
|
</el-pagination>
|
|
|
|
</el-col>
|
|
|
|
<el-col>
|
|
|
|
<el-table
|
2022-07-25 06:45:33 +08:00
|
|
|
:data="articles.list"
|
2021-06-28 08:08:24 +08:00
|
|
|
style="width: 100%">
|
|
|
|
<el-table-column
|
|
|
|
label="#"
|
2021-06-28 10:53:32 +08:00
|
|
|
width="60"
|
2021-06-28 08:08:24 +08:00
|
|
|
prop="idArticle">
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
label="标题"
|
|
|
|
prop="articleTitle">
|
|
|
|
<template slot-scope="scope">
|
2021-06-28 10:53:32 +08:00
|
|
|
<el-button type="text" @click="openLink(scope.row.articlePermalink)">{{ scope.row.articleTitle }}</el-button>
|
2021-06-28 08:08:24 +08:00
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
label="标签"
|
|
|
|
prop="articleTitle">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-tag
|
|
|
|
style="margin-left: 0.5rem;"
|
|
|
|
v-for="tag in scope.row.tags"
|
|
|
|
:key="tag.idTag"
|
|
|
|
size="mini"
|
|
|
|
effect="plain">
|
|
|
|
# {{ tag.tagTitle }}
|
|
|
|
</el-tag>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
label="作者"
|
2021-06-28 10:53:32 +08:00
|
|
|
width="100">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-button type="text" @click="openLink('/user/' + scope.row.articleAuthor.userAccount)">{{ scope.row.articleAuthorName }}</el-button>
|
|
|
|
</template>
|
2021-06-28 08:08:24 +08:00
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
label="最后更新时间"
|
|
|
|
width="110"
|
|
|
|
prop="updatedTime">
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="操作">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-button v-if="scope.row.articlePerfect === '1'" size="mini" @click="cancelPreference(scope.$index, scope.row.idArticle)" plain>取消优选</el-button>
|
|
|
|
<el-button v-else size="mini" @click="setPreference(scope.$index, scope.row.idArticle)" plain>设为优选</el-button>
|
|
|
|
<el-button size="mini" type="primary"
|
|
|
|
@click="updateTags(scope.$index, scope.row)" plain>编辑标签
|
|
|
|
</el-button>
|
|
|
|
<el-button v-if="scope.row.articleStatus === '0'" size="mini" type="danger"
|
|
|
|
@click="toggleStatus(scope.$index, scope.row)" plain>下架
|
|
|
|
</el-button>
|
|
|
|
<el-button v-else size="mini" type="success"
|
|
|
|
@click="toggleStatus(scope.$index, scope.row)" plain>上架
|
|
|
|
</el-button>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
</el-col>
|
|
|
|
<el-col>
|
|
|
|
<el-pagination
|
|
|
|
:hide-on-single-page="true"
|
|
|
|
@size-change="handleSizeChange"
|
|
|
|
@current-change="handleCurrentChange"
|
2022-07-25 06:45:33 +08:00
|
|
|
:current-page="articles.pageNum"
|
2021-06-28 08:08:24 +08:00
|
|
|
:page-sizes="[10, 20, 50, 100]"
|
2022-07-25 06:45:33 +08:00
|
|
|
:page-size="articles.pageSize"
|
2021-06-28 08:08:24 +08:00
|
|
|
layout="total, sizes, prev, pager, next, jumper"
|
2022-07-25 06:45:33 +08:00
|
|
|
:total="articles.total">
|
2021-06-28 08:08:24 +08:00
|
|
|
</el-pagination>
|
|
|
|
</el-col>
|
|
|
|
<el-col>
|
|
|
|
<el-dialog :visible.sync="dialogVisible">
|
|
|
|
<edit-tags
|
|
|
|
:idArticle="idArticle"
|
|
|
|
:tags="articleTags"
|
|
|
|
@closeDialog="closeTagsDialog">
|
|
|
|
</edit-tags>
|
|
|
|
</el-dialog>
|
|
|
|
</el-col>
|
|
|
|
</el-row>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import {mapState} from 'vuex';
|
|
|
|
import EditTags from '~/components/widget/tags';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "articles",
|
2022-10-27 23:22:46 +08:00
|
|
|
middleware: 'auth',
|
2021-06-28 08:08:24 +08:00
|
|
|
components: {
|
|
|
|
EditTags
|
|
|
|
},
|
2022-10-09 09:42:21 +08:00
|
|
|
fetch() {
|
|
|
|
let {store, params, error} = this.$nuxt.context
|
2021-06-28 08:08:24 +08:00
|
|
|
return Promise.all([
|
|
|
|
store
|
|
|
|
.dispatch('admin/fetchArticles', params)
|
|
|
|
.catch(err => error({statusCode: 404}))
|
|
|
|
])
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
...mapState({
|
2022-07-25 06:45:33 +08:00
|
|
|
articles: state => state.admin.articles
|
2021-06-28 08:08:24 +08:00
|
|
|
})
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
order: 'desc',
|
|
|
|
idRole: 0,
|
|
|
|
idUser: 0,
|
|
|
|
dialogVisible: false,
|
|
|
|
index: Number,
|
|
|
|
idArticle: Number,
|
|
|
|
articleTags: ''
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
handleSizeChange(pageSize) {
|
|
|
|
let _ts = this;
|
|
|
|
_ts.$store.dispatch('admin/fetchArticles', {
|
2022-10-31 19:22:21 +08:00
|
|
|
page: _ts.articles.pageNum,
|
2021-06-28 08:08:24 +08:00
|
|
|
rows: pageSize
|
|
|
|
})
|
|
|
|
},
|
|
|
|
handleCurrentChange(page) {
|
|
|
|
let _ts = this;
|
|
|
|
_ts.$store.dispatch('admin/fetchArticles', {
|
|
|
|
page: page,
|
2022-10-31 19:22:21 +08:00
|
|
|
rows: _ts.articles.pageSize
|
2021-06-28 08:08:24 +08:00
|
|
|
})
|
|
|
|
},
|
|
|
|
toggleStatus() {},
|
|
|
|
setPreference(index, idArticle) {
|
|
|
|
let _ts = this;
|
2022-03-13 23:09:34 +08:00
|
|
|
_ts.$axios.$patch("/api/admin/article/update-perfect", {
|
2021-06-28 08:08:24 +08:00
|
|
|
idArticle: idArticle,
|
|
|
|
articlePerfect: '1'
|
|
|
|
}).then(function (res) {
|
|
|
|
if (res) {
|
|
|
|
if (res.success) {
|
|
|
|
_ts.$store.commit('admin/updateArticlePreference', {
|
|
|
|
index: index,
|
|
|
|
idArticle: idArticle,
|
|
|
|
articlePerfect: '1'
|
|
|
|
})
|
|
|
|
_ts.$message.success("设置成功!");
|
|
|
|
} else {
|
|
|
|
_ts.$message.error(_ts.message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
},
|
|
|
|
cancelPreference(index, idArticle) {
|
|
|
|
let _ts = this;
|
|
|
|
_ts.$axios.$patch("/api/article/update-perfect", {
|
|
|
|
idArticle: idArticle,
|
|
|
|
articlePerfect: '0'
|
|
|
|
}).then(function (res) {
|
|
|
|
if (res) {
|
|
|
|
if (res.success) {
|
|
|
|
_ts.$store.commit('admin/updateArticlePreference', {
|
|
|
|
index: index,
|
|
|
|
idArticle: idArticle,
|
|
|
|
articlePerfect: '0'
|
|
|
|
})
|
|
|
|
_ts.$message.success("取消成功!");
|
|
|
|
} else {
|
|
|
|
_ts.$message.error(_ts.message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
},
|
|
|
|
updateTags(index, article) {
|
|
|
|
let _ts = this
|
|
|
|
_ts.$set(_ts, 'index', index);
|
|
|
|
_ts.$set(_ts, 'idArticle', article.idArticle);
|
|
|
|
_ts.$set(_ts, 'articleTags', article.articleTags);
|
|
|
|
_ts.$set(_ts, 'dialogVisible', true);
|
|
|
|
},
|
|
|
|
closeTagsDialog() {
|
|
|
|
this.$set(this, 'dialogVisible', false);
|
|
|
|
},
|
2021-06-28 10:53:32 +08:00
|
|
|
openLink(link) {
|
|
|
|
window.open(link);
|
2021-06-28 08:08:24 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.$store.commit("setActiveMenu", "admin-articles");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
</style>
|