改样式

This commit is contained in:
2025-09-22 17:16:05 +08:00
parent a67f55d7c8
commit 3a250e8d73
2 changed files with 19 additions and 15 deletions

View File

@@ -18,7 +18,7 @@
<template #header>
<div class="card-header">
<span>{{ plan.name }} - 内容</span>
<el-button class="button" text>操作按钮</el-button>
<el-button class="button" @click="handleEdit">编辑</el-button>
</div>
</template>
<div v-if="plan.content_type === 'tasks'">
@@ -112,6 +112,10 @@ export default {
this.loading = false;
}
},
handleEdit() {
// Placeholder for future implementation
this.$message.info('编辑功能正在开发中');
},
editTask(task) {
console.log('编辑任务:', task);
this.$message.info('编辑任务功能正在开发中');