Files
yaoayanui/src/components/workflow/Step07Publish.vue
fengchuanhn@gmail.com 7b56c6cfa8 666
2026-05-15 19:17:13 +08:00

34 lines
1.1 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<script setup>
import { useWorkflowStore } from "../../stores/workflow.js";
const workflow = useWorkflowStore();
</script>
<template>
<DashboardCard title="视频发布" step="07" :grow="true">
<div
v-for="(platform, index) in workflow.publishPlatforms"
:key="index"
class="dashboard-platform-row mb-2"
>
<label class="flex shrink-0 items-center gap-2 text-sm" style="min-width: 70px">
<Checkbox v-model="platform.checked" binary />
{{ platform.label }}
</label>
<Select
v-model="platform.account"
placeholder="选择账号"
size="small"
class="min-w-0 flex-1"
/>
</div>
<div class="mt-3 flex gap-2">
<Button label="发布" size="small" class="flex-1" />
<Button label="定时发布" size="small" class="flex-1" />
</div>
<p class="mt-2 text-center text-xs leading-relaxed text-gray-400 opacity-80">
首次发布请手动关闭浏览器内出现的任何弹窗提示说明等防止干扰脚本下次即可流畅运行
</p>
</DashboardCard>
</template>