From 7f05453d8c9b29427b3f19a20a452228889522f1 Mon Sep 17 00:00:00 2001 From: Charles7c Date: Mon, 28 Jul 2025 20:16:34 +0800 Subject: [PATCH] =?UTF-8?q?fix(generator):=20=E4=BF=AE=E5=A4=8D=E4=BB=A3?= =?UTF-8?q?=E7=A0=81=E7=94=9F=E6=88=90=E5=89=8D=E7=AB=AF=20API=20=E6=A8=A1?= =?UTF-8?q?=E6=9D=BF=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/templates/frontend/api.ftl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/continew-plugin/continew-plugin-generator/src/main/resources/templates/frontend/api.ftl b/continew-plugin/continew-plugin-generator/src/main/resources/templates/frontend/api.ftl index 5eb2e734..8bf37121 100644 --- a/continew-plugin/continew-plugin-generator/src/main/resources/templates/frontend/api.ftl +++ b/continew-plugin/continew-plugin-generator/src/main/resources/templates/frontend/api.ftl @@ -68,5 +68,5 @@ export function export${classNamePrefix}(query: ${classNamePrefix}Query) { /** @desc 查询${businessName}字典 */ export function list${classNamePrefix}Dict(query?: ${classNamePrefix}Query) { -return http.get(`${BASE_URL}/dict`, query) +return http.get(`${'$'}{BASE_URL}/dict`, query) }