Browse Source

feat: codegen 支持配置前端 UI 类型

main
xingyuv 2 years ago
parent
commit
bfb8d6487b
  1. 10
      src/views/infra/codegen/components/data.ts

10
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',