3f0815e997
添加分辨率配置选项,支持在项目设置中选择1K/2K/4K分辨率 为任务模型添加logs字段,记录任务执行过程中的详细日志 实现任务日志记录功能,包括时间戳和状态更新 新增多个前端对话框组件:终端日志、历史记录、JSON编辑器等 优化AI服务生成图像接口,支持传入分辨率和宽高比参数 重构任务管理界面,添加折叠功能和日志查看入口
28 lines
482 B
Vue
28 lines
482 B
Vue
<template>
|
|
<div class="header">
|
|
<h2>{{ title }}</h2>
|
|
<div class="actions">
|
|
<el-button type="success" @click="emit('export')">Export Comic</el-button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
defineProps({
|
|
title: String
|
|
})
|
|
const emit = defineEmits(['export'])
|
|
</script>
|
|
|
|
<style scoped>
|
|
.header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
.actions {
|
|
display: flex;
|
|
gap: 10px;
|
|
}
|
|
</style> |