From 48ffd4c4aa0a4275d4ccbc1d3f513e0343dd28f1 Mon Sep 17 00:00:00 2001 From: "jlj05024111@163.com" Date: Mon, 28 Apr 2025 21:03:53 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E6=9B=B4=E6=96=B0=E9=9D=A2=E6=9D=BF?= =?UTF-8?q?=E9=A1=B9=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/panel-component/panel-app-title/panel-app-title.tsx | 6 +++--- src/panel-component/panel-tab-panel/panel-tab-panel.tsx | 6 +++--- .../view-content-panel-container.tsx | 8 ++++---- .../view-footer-panel-container.tsx | 8 ++++---- .../view-header-panel-container.tsx | 8 ++++---- 5 files changed, 18 insertions(+), 18 deletions(-) diff --git a/src/panel-component/panel-app-title/panel-app-title.tsx b/src/panel-component/panel-app-title/panel-app-title.tsx index 1610cec9af..d6c77e2e30 100644 --- a/src/panel-component/panel-app-title/panel-app-title.tsx +++ b/src/panel-component/panel-app-title/panel-app-title.tsx @@ -11,7 +11,7 @@ import { PanelAppTitleController } from './panel-app-title.controller'; import './panel-app-title.scss'; /** - * 面板应用标题 + * 应用标题 * @primary * @description 用于绘制应用logo和应用标题,提供点击标题跳转首页的能力。 */ @@ -19,14 +19,14 @@ export const PanelAppTitle = defineComponent({ name: 'IBizPanelAppTitle', props: { /** - * @description 面板应用标题模型数据 + * @description 应用标题模型数据 */ modelData: { type: Object as PropType, required: true, }, /** - * @description 面板应用标题控制器 + * @description 应用标题控制器 */ controller: { type: PanelAppTitleController, diff --git a/src/panel-component/panel-tab-panel/panel-tab-panel.tsx b/src/panel-component/panel-tab-panel/panel-tab-panel.tsx index 81fce52e5f..ba3abd3c5b 100644 --- a/src/panel-component/panel-tab-panel/panel-tab-panel.tsx +++ b/src/panel-component/panel-tab-panel/panel-tab-panel.tsx @@ -5,7 +5,7 @@ import { PanelTabPanelController } from './panel-tab-panel.controller'; import './panel-tab-panel.scss'; /** - * 面板分页部件 + * 分页部件 * @primary * @description 可显示多个分页,每个分页有自己的内容。 */ @@ -13,14 +13,14 @@ export const PanelTabPanel = defineComponent({ name: 'IBizPanelTabPanel', props: { /** - * @description 面板分页部件模型数据 + * @description 分页部件模型数据 */ modelData: { type: Object as PropType, required: true, }, /** - * @description 面板分页部件控制器 + * @description 分页部件控制器 */ controller: { type: PanelTabPanelController, diff --git a/src/panel-component/view-content-panel-container/view-content-panel-container.tsx b/src/panel-component/view-content-panel-container/view-content-panel-container.tsx index 6e9a0c4618..9dd2fe394a 100644 --- a/src/panel-component/view-content-panel-container/view-content-panel-container.tsx +++ b/src/panel-component/view-content-panel-container/view-content-panel-container.tsx @@ -10,22 +10,22 @@ import { useRoute } from 'vue-router'; import './view-content-panel-container.scss'; /** - * 视图内容容器 + * 面板容器(视图内容区) * @primary - * @description 用于包裹视图布局主体内容。 + * @description 用于视图内容区的绘制。 */ export const ViewContentPanelContainer: Component = defineComponent({ name: 'IBizViewContentPanelContainer', props: { /** - * @description 视图内容容器模型数据 + * @description 容器模型数据 */ modelData: { type: Object as PropType, required: true, }, /** - * @description 视图内容容器控制器 + * @description 容器控制器 */ controller: { type: PanelContainerController, diff --git a/src/panel-component/view-footer-panel-container/view-footer-panel-container.tsx b/src/panel-component/view-footer-panel-container/view-footer-panel-container.tsx index 8143e01113..ddda862e6f 100644 --- a/src/panel-component/view-footer-panel-container/view-footer-panel-container.tsx +++ b/src/panel-component/view-footer-panel-container/view-footer-panel-container.tsx @@ -7,22 +7,22 @@ import { PropType, defineComponent, computed } from 'vue'; import './view-footer-panel-container.scss'; /** - * 视图底部容器 + * 面板容器(视图底部) * @primary - * @description 用于包裹视图布局底部内容。 + * @description 用于绘制视图底部内容。 */ export const ViewFooterPanelContainer = defineComponent({ name: 'IBizViewFooterPanelContainer', props: { /** - * @description 视图底部容器模型数据 + * @description 容器模型数据 */ modelData: { type: Object as PropType, required: true, }, /** - * @description 视图底部容器控制器 + * @description 容器控制器 */ controller: { type: PanelContainerController, diff --git a/src/panel-component/view-header-panel-container/view-header-panel-container.tsx b/src/panel-component/view-header-panel-container/view-header-panel-container.tsx index 6b8a67eebe..f2a26d7438 100644 --- a/src/panel-component/view-header-panel-container/view-header-panel-container.tsx +++ b/src/panel-component/view-header-panel-container/view-header-panel-container.tsx @@ -9,22 +9,22 @@ import { useRoute } from 'vue-router'; import { useViewStack } from '../../util'; /** - * 视图头部容器 + * 面板容器(视图头部) * @primary - * @description 用于包裹视图布局头部内容。 + * @description 用于绘制视图头部内容。 */ export const ViewHeaderPanelContainer = defineComponent({ name: 'IBizViewHeaderPanelContainer', props: { /** - * @description 视图头部容器模型数据 + * @description 容器模型数据 */ modelData: { type: Object as PropType, required: true, }, /** - * @description 视图头部容器控制器 + * @description 容器控制器 */ controller: { type: PanelContainerController, -- Gitee