cyber/src/components/AccountWorkPiece.vue

167 lines
3.6 KiB
Vue
Raw Normal View History

2025-02-14 23:14:54 +08:00
<script setup>
import {defineProps} from 'vue'
import DefaultCover from "./DefaultCover.vue";
import router from "../router/index.js";
import store from "../store/index.js";
import {blogImage} from "../utils/imageResource.js";
import swal from "../utils/sweetalert.js";
import api from "../utils/axios.js";
2025-03-29 10:39:20 +08:00
import {formatGMTToLocal} from "../utils/formatTime.js";
2025-02-14 23:14:54 +08:00
const props = defineProps({
cover: {
type: String,
default: ''
},
title: {
type: String,
default: ''
},
createdTime: {
type: String,
default: ''
},
lastModifiedTime: {
type: String,
default: ''
},
isDraft: {
type: Boolean,
default: false
},
id: {
type: Number,
required: true
2025-02-14 23:14:54 +08:00
}
})
const emit = defineEmits(['refresh']);
2025-02-14 23:14:54 +08:00
// 测试函数,可以根据需求替换
function onEdit() {
store.state.editStore.currentBlogId = props.id;
router.push('/editor');
2025-02-14 23:14:54 +08:00
}
async function onDelete() {
const result = await swal.window('info', '确定删除吗?', '此操作不可撤销', '确实', '取消');
try {
if (result.isConfirmed) {
const response = await api.delete(`/blogs/${props.id}`);
if (response.code === 0) {
swal.tip('success', '删除成功');
emit('refresh', 1);
return;
}
swal.tip('error', '删除失败');
}
} catch {
swal.tip('error', '网络错误');
}
2025-02-14 23:14:54 +08:00
}
2025-02-14 23:14:54 +08:00
function onPermission() {
console.log('权限')
}
</script>
<template>
<div class="work-piece">
<!-- 左侧博客封面 + 标题 -->
<div class="piece-left">
<!-- <img :src="cover" alt="封面" class="cover-image" />-->
2025-03-29 10:39:20 +08:00
<DefaultCover :imageSrc="blogImage(cover)" :text="title" size="60px" class="cover-image"/>
2025-02-14 23:14:54 +08:00
<div class="title-text">{{ title }}</div>
</div>
<!-- 右侧时间和操作按钮 -->
<div class="piece-right">
<!-- 上方时间信息 -->
<div class="times">
2025-03-29 10:39:20 +08:00
<div>创建时间{{ formatGMTToLocal(createdTime) }}</div>
<div>最后修改{{ formatGMTToLocal(lastModifiedTime) }}</div>
2025-02-14 23:14:54 +08:00
</div>
<!-- 下方操作 -->
<div class="actions">
<span class="action-btn" @click="onEdit">编辑</span>
<router-link v-if="!isDraft" class="action-btn" :to="`/blog/${id}`" target="_blank">查看</router-link>
<span class="action-btn" @click="onDelete">删除</span>
2025-02-14 23:14:54 +08:00
<!-- 草稿时不显示权限 -->
<!-- <span-->
<!-- v-if="!isDraft"-->
<!-- class="action-btn"-->
<!-- @click="onPermission"-->
<!-- >-->
<!-- 权限-->
<!-- </span>-->
2025-02-14 23:14:54 +08:00
</div>
</div>
</div>
</template>
<style scoped>
/* 容器:一条“横向卡片” */
.work-piece {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
background-color: #24303f; /* 暗色稍微提亮 */
border-radius: 6px;
padding: 10px;
}
.theme-light .work-piece {
background-color: #f2f2f2;
color: black;
}
/* 左侧 */
.piece-left {
display: flex;
align-items: center;
gap: 12px;
}
2025-02-14 23:14:54 +08:00
.cover-image {
width: 60px;
height: 60px;
object-fit: cover;
border-radius: 4px;
overflow: hidden;
2025-02-14 23:14:54 +08:00
}
2025-02-14 23:14:54 +08:00
.title-text {
font-size: 16px;
font-weight: bold;
}
/* 右侧 */
.piece-right {
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 8px;
}
2025-02-14 23:14:54 +08:00
.times {
opacity: 0.5;
font-size: small;
text-align: right;
}
2025-02-14 23:14:54 +08:00
.actions {
display: flex;
gap: 16px;
}
2025-02-14 23:14:54 +08:00
.action-btn {
font-size: 14px;
opacity: 0.6;
cursor: pointer;
}
2025-02-14 23:14:54 +08:00
.action-btn:hover {
opacity: 0.5;
}
</style>