diff --git a/src/components/FormDesign/src/components/VFormDesign/index.vue b/src/components/FormDesign/src/components/VFormDesign/index.vue
index 12eee4d4..a88bd7a8 100644
--- a/src/components/FormDesign/src/components/VFormDesign/index.vue
+++ b/src/components/FormDesign/src/components/VFormDesign/index.vue
@@ -102,8 +102,8 @@ function setGlobalConfigState(formItem: IVFormComponent) {
 
 /**
  * 添加属性
- * @param schemas
- * @param index
+ * @param _formItems
+ * @param _index
  */
 function handleAddAttrs(_formItems: IVFormComponent[], _index: number) {}
 
@@ -187,7 +187,7 @@ function handleCopy(item: IVFormComponent = formConfig.value.currentItem as IVFo
 
 /**
  * 添加到表单中
- * @param newIndex {object} 事件对象
+ * @param {newIndex} {object} 事件对象
  * @param schemas {IVFormComponent[]} 表单项列表
  * @param isCopy {boolean} 是否复制
  */
diff --git a/src/components/FormDesign/src/components/VFormDesign/modules/FormComponentPanel.vue b/src/components/FormDesign/src/components/VFormDesign/modules/FormComponentPanel.vue
index ab950c5b..166cc9eb 100644
--- a/src/components/FormDesign/src/components/VFormDesign/modules/FormComponentPanel.vue
+++ b/src/components/FormDesign/src/components/VFormDesign/modules/FormComponentPanel.vue
@@ -18,7 +18,6 @@ const { formConfig } = useFormDesignState()
 
 /**
  * 拖拽完成事件
- * @param newIndex
  */
 function addItem({ newIndex }: any) {
   formConfig.value.schemas = formConfig.value.schemas || []
@@ -77,8 +76,7 @@ const layoutTag = computed(() => {
     .list-main {
       display: flex;
       flex-wrap: wrap;
-      align-content: flex-start;
-      justify-content: flex-start;
+      place-content: flex-start flex-start;
 
       .layout-width {
         width: 100%;
diff --git a/src/components/FormDesign/src/utils/index.ts b/src/components/FormDesign/src/utils/index.ts
index a3696ccb..eebb82e7 100644
--- a/src/components/FormDesign/src/utils/index.ts
+++ b/src/components/FormDesign/src/utils/index.ts
@@ -133,7 +133,7 @@ export const findFormItem: (
 /**
  * 打开json模态框时删除当前项属性
  * @param formConfig {IFormConfig}
- * @returns {IFormConfig}
+ * @returns {IFormConfig} copyFormConfig
  */
 export function removeAttrs(formConfig: IFormConfig): IFormConfig {
   const copyFormConfig = cloneDeep(formConfig)
diff --git a/src/store/modules/errorLog.ts b/src/store/modules/errorLog.ts
index 9d0b592b..0acde4e6 100644
--- a/src/store/modules/errorLog.ts
+++ b/src/store/modules/errorLog.ts
@@ -43,7 +43,7 @@ export const useErrorLogStore = defineStore('app-error-log', {
     /**
      * Triggered after ajax request error
      * @param error
-     * @returns
+     * @return addAjaxErrorInfo
      */
     addAjaxErrorInfo(error) {
       const { useErrorHandle } = projectSetting
diff --git a/src/utils/index.ts b/src/utils/index.ts
index d9c820cf..31b2f937 100644
--- a/src/utils/index.ts
+++ b/src/utils/index.ts
@@ -154,7 +154,7 @@ export function withInstall<T extends CustomComponent>(component: T, alias?: str
  *
  * @param fn 要防抖的函数
  * @param delay 防抖的毫秒数
- * @returns {Function}
+ * @returns {Function} simpleDebounce
  */
 export function simpleDebounce(fn, delay = 100) {
   let timer: any | null = null
diff --git a/src/utils/mitt.ts b/src/utils/mitt.ts
index 67d3e49d..2142c7c8 100644
--- a/src/utils/mitt.ts
+++ b/src/utils/mitt.ts
@@ -39,7 +39,7 @@ export interface Emitter<Events extends Record<EventType, unknown>> {
 /**
  * Mitt: Tiny (~200b) functional event emitter / pubsub.
  * @name mitt
- * @returns {Mitt}
+ * @returns {Mitt} mitt
  */
 export function mitt<Events extends Record<EventType, unknown>>(
   all?: EventHandlerMap<Events>,