From baa2e69cdf16b70c7cd4c0fab5fda0d574e7c84c Mon Sep 17 00:00:00 2001 From: xingyu Date: Sat, 12 Aug 2023 18:31:16 +0800 Subject: [PATCH] fix: vben codegen --- .../src/main/resources/codegen/vue3_vben/views/data.ts.vm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/vue3_vben/views/data.ts.vm b/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/vue3_vben/views/data.ts.vm index 1cd976b3c..7f56964ed 100644 --- a/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/vue3_vben/views/data.ts.vm +++ b/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/vue3_vben/views/data.ts.vm @@ -30,7 +30,7 @@ export const columns: BasicColumn[] = [ { title: '${comment}', dataIndex: '${javaField}', - width: 160 + width: 160, }, #end #end @@ -61,7 +61,7 @@ export const searchFormSchema: FormSchema[] = [ #elseif($column.htmlType == "datetime") component: 'RangePicker', #end - colProps: { span: 8 } + colProps: { span: 8 }, }, #end #end @@ -72,7 +72,7 @@ export const createFormSchema: FormSchema[] = [ label: '编号', field: 'id', show: false, - component: 'Input' + component: 'Input', }, #foreach($column in $columns) #if ($column.createOperation) @@ -146,7 +146,7 @@ export const updateFormSchema: FormSchema[] = [ label: '编号', field: 'id', show: false, - component: 'Input' + component: 'Input', }, #foreach($column in $columns) #if ($column.updateOperation)