diff --git a/src/views/infra/codegen/components/data.ts b/src/views/infra/codegen/components/data.ts
index a81923ae..4062af56 100644
--- a/src/views/infra/codegen/components/data.ts
+++ b/src/views/infra/codegen/components/data.ts
@@ -56,6 +56,16 @@ export const basicInfoSchemas: FormSchema[] = [
     },
     colProps: { span: 12 }
   },
+  {
+    label: '前端类型',
+    field: 'frontType',
+    required: true,
+    component: 'Select',
+    componentProps: {
+      options: getIntDictOptions(DICT_TYPE.INFRA_CODEGEN_FRONT_TYPE)
+    },
+    colProps: { span: 12 }
+  },
   {
     label: '生成场景',
     field: 'scene',