From d73677fa39f24c17d81507fcbf920f2960c60c8f Mon Sep 17 00:00:00 2001 From: yangjie Date: Wed, 30 Apr 2025 17:26:49 +0800 Subject: [PATCH] =?UTF-8?q?fix-gen-code-webtype:=20=E5=89=8D=E7=AB=AF?= =?UTF-8?q?=E4=BB=A3=E7=A0=81=E7=94=9F=E6=88=90=E6=97=B6,=E5=B0=91?= =?UTF-8?q?=E4=BA=86=E5=89=8D=E7=AB=AF=E7=B1=BB=E5=9E=8B=E5=AD=97=E6=AE=B5?= =?UTF-8?q?,=E5=AF=BC=E8=87=B4contentConfig=EF=BC=8CdialogConfig=EF=BC=8Cs?= =?UTF-8?q?earchConfig=E6=97=A0=E6=B3=95=E8=87=AA=E5=8A=A8=E7=94=9F?= =?UTF-8?q?=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../tool/gen/config/genInfoFormConfig.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/views/tool/gen/config/genInfoFormConfig.js b/src/views/tool/gen/config/genInfoFormConfig.js index fb4b9f4..9468e3d 100644 --- a/src/views/tool/gen/config/genInfoFormConfig.js +++ b/src/views/tool/gen/config/genInfoFormConfig.js @@ -37,6 +37,25 @@ export default (otherConfig = {}) => { }, ], }, + { + label: '前端类型', + field: 'tplWebType', + type: 'select', + options: [ + { + label: 'Vue2 Element UI 模版', + value: 'element-ui', + }, + { + label: 'Vue3 Element Plus 模版', + value: 'element-plus', + }, + { + label: 'Vue3 Element Plus 优化版模板', + value: 'lmw', + }, + ], + }, { label: '生成包路径', field: 'packageName', -- Gitee