chore: 优化代码生成模板
This commit is contained in:
parent
dc9273132d
commit
def831f2dc
@ -22,7 +22,7 @@ export interface ${classNamePrefix}DetailResp {
|
|||||||
updateUserString: string
|
updateUserString: string
|
||||||
</#if>
|
</#if>
|
||||||
}
|
}
|
||||||
export interface ${classNamePrefix}Query extends PageQuery {
|
export interface ${classNamePrefix}Query {
|
||||||
<#if fieldConfigs??>
|
<#if fieldConfigs??>
|
||||||
<#list fieldConfigs as fieldConfig>
|
<#list fieldConfigs as fieldConfig>
|
||||||
<#if fieldConfig.showInQuery>
|
<#if fieldConfig.showInQuery>
|
||||||
@ -30,10 +30,12 @@ export interface ${classNamePrefix}Query extends PageQuery {
|
|||||||
</#if>
|
</#if>
|
||||||
</#list>
|
</#list>
|
||||||
</#if>
|
</#if>
|
||||||
|
sort: Array<string>
|
||||||
}
|
}
|
||||||
|
export interface ${classNamePrefix}PageQuery extends ${classNamePrefix}Query, PageQuery {}
|
||||||
|
|
||||||
/** @desc 查询${businessName}列表 */
|
/** @desc 查询${businessName}列表 */
|
||||||
export function list${classNamePrefix}(query: ${classNamePrefix}Query) {
|
export function list${classNamePrefix}(query: ${classNamePrefix}PageQuery) {
|
||||||
return http.get<PageRes<${classNamePrefix}Resp[]>>(`${'$'}{BASE_URL}`, query)
|
return http.get<PageRes<${classNamePrefix}Resp[]>>(`${'$'}{BASE_URL}`, query)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -88,7 +88,7 @@ const columns: TableInstanceColumns[] = [
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
const queryForm: ${classNamePrefix}Query = reactive({
|
const queryForm = reactive<${classNamePrefix}Query>({
|
||||||
<#list fieldConfigs as fieldConfig>
|
<#list fieldConfigs as fieldConfig>
|
||||||
<#if fieldConfig.showInQuery>
|
<#if fieldConfig.showInQuery>
|
||||||
${fieldConfig.fieldName}: undefined,
|
${fieldConfig.fieldName}: undefined,
|
||||||
|
Loading…
Reference in New Issue
Block a user