Merge remote-tracking branch 'origin/dev' into feature/springdoc

This commit is contained in:
xingyu
2022-12-21 22:46:52 +08:00
68 changed files with 3812 additions and 2122 deletions

View File

@ -4,6 +4,7 @@ import lombok.*;
#foreach ($column in $columns)
#if (${column.javaType} == "LocalDateTime")
import java.time.LocalDateTime;
#break
#end
#end
import io.swagger.annotations.*;

View File

@ -34,9 +34,9 @@ const crudSchemas = reactive<VxeCrudSchema>({
#if ("" != $dictType)## 有数据字典
dictType: DICT_TYPE.$dictType.toUpperCase(),
#if (${column.javaType.toLowerCase()} == "long" || ${column.javaType.toLowerCase()} == "integer")
dictData: 'number',
dictClass: 'number',
#else
dictData: 'string',
dictClass: 'string',
#end
#end
#if (!$column.createOperation && !$column.updateOperation)
@ -78,10 +78,7 @@ const crudSchemas = reactive<VxeCrudSchema>({
},
#elseif($column.htmlType == "imageUpload")## 图片上传
form: {
component: 'UploadImg',
componentProps: {
limit: 1
}
component: 'UploadImg' // 单图上传多图为UploadImgs
},
#elseif($column.htmlType == "fileUpload")## 图片上传
form: {