This commit is contained in:
2025-09-22 17:21:08 +08:00
parent 3a250e8d73
commit 0bc7cf2f66
2 changed files with 7 additions and 7 deletions

View File

@@ -95,7 +95,7 @@
width="70%"
top="5vh"
>
<plan-content-editor
<plan-detail
v-if="detailsVisible"
:plan-id="selectedPlanIdForDetails"
/>
@@ -113,14 +113,14 @@
import { Refresh } from '@element-plus/icons-vue';
import apiClient from '../api/index.js';
import PlanForm from './PlanForm.vue';
import PlanContentEditor from './PlanContentEditor.vue'; // 导入新组件
import PlanDetail from './PlanDetail.vue'; // 导入新组件
import cronParser from 'cron-parser';
export default {
name: 'PlanList',
components: {
PlanForm,
PlanContentEditor, // 注册新组件
PlanDetail, // 注册新组件
Refresh
},
data() {