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 1610cec9afcbfa5baa81bc3769ce67e8412f11f2..d6c77e2e30d93dc1644701151b935921d58ef29f 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 81fce52e5f943bcaccb1ccf8a4ac09f1683aa2bf..ba3abd3c5b0e79efaf339c9fcdd2980a8dc75396 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 6e9a0c46184e8059f54dbeeb3cc6fee95d7d8992..9dd2fe394abc89d1d76cb724f7fbb9102a326160 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 8143e01113adb370c711050dbf0e6839f2be7a62..ddda862e6ffff478bc081d7c1e045a524fdbf76b 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 6b8a67eebe62725b3ea2ae15f597e08b8a0535ea..f2a26d7438cd3ae13922df4323f08f7391ca438d 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,