2025-02-14 23:14:54 +08:00
|
|
|
<script setup>
|
2025-03-13 23:52:31 +08:00
|
|
|
import {onMounted, ref} from 'vue'
|
2025-02-14 23:14:54 +08:00
|
|
|
import AccountWorkPiece from "../../components/AccountWorkPiece.vue";
|
2025-03-04 19:02:35 +08:00
|
|
|
import router from "../../router/index.js";
|
2025-03-13 23:52:31 +08:00
|
|
|
import {getInfoWithPages} from "../../utils/getInfoWithPages.js";
|
|
|
|
import swal from "../../utils/sweetalert.js";
|
|
|
|
import store from "../../store/index.js";
|
|
|
|
import PagingController from "../../components/PagingController.vue";
|
2025-02-14 23:14:54 +08:00
|
|
|
|
|
|
|
// 示例:草稿数据
|
2025-03-13 23:52:31 +08:00
|
|
|
const drafts = ref(store.state.sessionStore.account?.Drafts || null)
|
|
|
|
const amount = ref(store.state.sessionStore.account?.DraftsAmount || 1);
|
|
|
|
const currentPage = ref(store.state.sessionStore.account?.DraftsCurrentPage || 1);
|
2025-02-14 23:14:54 +08:00
|
|
|
|
|
|
|
function createNewDraft() {
|
2025-03-13 23:52:31 +08:00
|
|
|
store.state.editStore.currentBlogId = null;
|
|
|
|
router.push('/editor');
|
2025-02-14 23:14:54 +08:00
|
|
|
}
|
2025-03-13 23:52:31 +08:00
|
|
|
|
|
|
|
async function refreshDraft(page, size, sort) {
|
|
|
|
page = page || currentPage.value;
|
|
|
|
size = size || 15;
|
|
|
|
sort = sort || 'post';
|
|
|
|
const result = await getInfoWithPages('/self/blogs/draft', page, size, {sort: sort});
|
|
|
|
if (result.code === 0) {
|
|
|
|
drafts.value = result.blogs;
|
|
|
|
amount.value = Math.ceil(amount.value / size);
|
|
|
|
store.state.sessionStore.account.Drafts = drafts.value;
|
|
|
|
store.state.sessionStore.account.DraftsAmount = amount.value;
|
|
|
|
store.state.sessionStore.account.DraftsCurrentPage = page;
|
|
|
|
} else {
|
|
|
|
swal.tip('error', '加载失败...');
|
|
|
|
drafts.value = [];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async function goPage(page) {
|
|
|
|
refreshDraft(page, 15);
|
|
|
|
}
|
|
|
|
|
|
|
|
onMounted(async () => {
|
2025-03-16 16:22:14 +08:00
|
|
|
if (store.getters.isCertified) {
|
|
|
|
refreshDraft(1, 15);
|
|
|
|
}
|
2025-03-13 23:52:31 +08:00
|
|
|
})
|
2025-02-14 23:14:54 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div class="container">
|
|
|
|
<!-- 顶部按钮居中 -->
|
2025-03-16 16:22:14 +08:00
|
|
|
<div v-if="! store.getters.isCertified" style="padding: 20px 0;">请联系管理员进行认证, 认证后可编写博客</div>
|
|
|
|
<div v-else class="top-bar">
|
2025-02-14 23:14:54 +08:00
|
|
|
<button class="create-btn" @click="createNewDraft">新建博客</button>
|
2025-03-13 23:52:31 +08:00
|
|
|
<div v-if="drafts === null">正在加载...</div>
|
2025-02-14 23:14:54 +08:00
|
|
|
</div>
|
|
|
|
<!-- 下面循环渲染草稿展示条 -->
|
|
|
|
<div class="draft-list">
|
|
|
|
<AccountWorkPiece
|
|
|
|
v-for="(item, index) in drafts"
|
|
|
|
:key="index"
|
|
|
|
:cover="item.cover"
|
|
|
|
:title="item.title"
|
2025-03-13 23:52:31 +08:00
|
|
|
:createdTime="item.post_date"
|
|
|
|
:lastModifiedTime="item.edit_date"
|
2025-02-14 23:14:54 +08:00
|
|
|
:isDraft="true"
|
2025-03-13 23:52:31 +08:00
|
|
|
:id="item.id"
|
|
|
|
@refresh="refreshDraft"/>
|
2025-02-14 23:14:54 +08:00
|
|
|
</div>
|
2025-03-13 23:52:31 +08:00
|
|
|
<PagingController v-if="amount > 1" :current-page="currentPage" :amount="amount" :go-page-func="goPage"/>
|
2025-02-14 23:14:54 +08:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.container {
|
|
|
|
width: 100%;
|
2025-02-26 18:27:47 +08:00
|
|
|
height: auto;
|
2025-02-14 23:14:54 +08:00
|
|
|
overflow-y: auto;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
color: #f5f6f7;
|
2025-03-13 23:52:31 +08:00
|
|
|
margin-bottom: 40px;
|
2025-02-14 23:14:54 +08:00
|
|
|
animation: fadeIn 0.3s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-light .container {
|
|
|
|
background-color: #ffffff;
|
|
|
|
color: #333333;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-bar {
|
|
|
|
display: flex;
|
2025-03-13 23:52:31 +08:00
|
|
|
flex-direction: column;
|
2025-02-14 23:14:54 +08:00
|
|
|
justify-content: center;
|
2025-03-13 23:52:31 +08:00
|
|
|
gap: 20px;
|
2025-02-14 23:14:54 +08:00
|
|
|
margin: 20px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.create-btn {
|
|
|
|
padding: 8px 16px;
|
|
|
|
background-color: #3b6ea8;
|
|
|
|
color: #f5f6f7;
|
|
|
|
border: none;
|
|
|
|
border-radius: 4px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2025-03-13 23:52:31 +08:00
|
|
|
|
2025-02-14 23:14:54 +08:00
|
|
|
.create-btn:hover {
|
|
|
|
background-color: #2f5687;
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-light .create-btn {
|
|
|
|
background-color: #ffc107;
|
|
|
|
color: #333333;
|
|
|
|
}
|
2025-03-13 23:52:31 +08:00
|
|
|
|
2025-02-14 23:14:54 +08:00
|
|
|
.theme-light .create-btn:hover {
|
|
|
|
background-color: #e0a806;
|
|
|
|
}
|
|
|
|
|
|
|
|
.draft-list {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 10px;
|
|
|
|
width: 80%;
|
|
|
|
max-width: 800px;
|
2025-03-13 23:52:31 +08:00
|
|
|
margin-bottom: 40px;
|
2025-02-14 23:14:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fadeIn {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|