c7bad83496
Add WordPress as an enterprise-site CMS type alongside pbootcms, and let schedule tasks auto-publish generated articles to enterprise sites. - WordPress connection/publisher service and tests; register wordpress media platform and relax cms_type CHECK constraint - New publish_enterprise_site_targets JSONB column on schedule_tasks with array type constraint; thread targets through scheduler dispatch, prompt/KOL generation, and worker - Admin UI: enterprise-site targets in generate/schedule/publish flows, KOL package form, MediaView, and i18n strings Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
25 lines
531 B
Vue
25 lines
531 B
Vue
<script setup lang="ts">
|
|
import zhCN from 'ant-design-vue/es/locale/zh_CN'
|
|
|
|
import ImageUploadProgressOverlay from '@/components/ImageUploadProgressOverlay.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<a-config-provider
|
|
:locale="zhCN"
|
|
:theme="{
|
|
token: {
|
|
colorPrimary: '#1677ff',
|
|
borderRadius: 6,
|
|
colorBgLayout: '#f0f2f5',
|
|
zIndexPopupBase: 3000,
|
|
},
|
|
}"
|
|
>
|
|
<a-app class="app-root">
|
|
<router-view />
|
|
<ImageUploadProgressOverlay />
|
|
</a-app>
|
|
</a-config-provider>
|
|
</template>
|