mirror of
https://github.com/continew-org/continew-admin.git
synced 2025-09-09 08:57:16 +08:00
73 lines
2.0 KiB
Plaintext
73 lines
2.0 KiB
Plaintext
import http from '@/utils/http'
|
|
import type { LabelValueState } from '@/types/global'
|
|
|
|
const BASE_URL = '/${apiModuleName}/${apiName}'
|
|
|
|
export interface ${classNamePrefix}Resp {
|
|
<#if fieldConfigs??>
|
|
<#list fieldConfigs as fieldConfig>
|
|
<#if fieldConfig.showInList>
|
|
${fieldConfig.fieldName}: string
|
|
</#if>
|
|
</#list>
|
|
createUserString: string
|
|
updateUserString: string
|
|
disabled: boolean
|
|
</#if>
|
|
}
|
|
export interface ${classNamePrefix}DetailResp {
|
|
<#if fieldConfigs??>
|
|
<#list fieldConfigs as fieldConfig>
|
|
${fieldConfig.fieldName}: string
|
|
</#list>
|
|
createUserString: string
|
|
updateUserString: string
|
|
</#if>
|
|
}
|
|
export interface ${classNamePrefix}Query {
|
|
<#if fieldConfigs??>
|
|
<#list fieldConfigs as fieldConfig>
|
|
<#if fieldConfig.showInQuery>
|
|
${fieldConfig.fieldName}: string | undefined
|
|
</#if>
|
|
</#list>
|
|
</#if>
|
|
sort: Array<string>
|
|
}
|
|
export interface ${classNamePrefix}PageQuery extends ${classNamePrefix}Query, PageQuery {}
|
|
|
|
/** @desc 查询${businessName}列表 */
|
|
export function list${classNamePrefix}(query: ${classNamePrefix}PageQuery) {
|
|
return http.get<PageRes<${classNamePrefix}Resp[]>>(BASE_URL, query)
|
|
}
|
|
|
|
/** @desc 查询${businessName}详情 */
|
|
export function get${classNamePrefix}(id: string) {
|
|
return http.get<${classNamePrefix}DetailResp>(`${'$'}{BASE_URL}/${'$'}{id}`)
|
|
}
|
|
|
|
/** @desc 新增${businessName} */
|
|
export function add${classNamePrefix}(data: any) {
|
|
return http.post(BASE_URL, data)
|
|
}
|
|
|
|
/** @desc 修改${businessName} */
|
|
export function update${classNamePrefix}(data: any, id: string) {
|
|
return http.put(`${'$'}{BASE_URL}/${'$'}{id}`, data)
|
|
}
|
|
|
|
/** @desc 删除${businessName} */
|
|
export function delete${classNamePrefix}(id: string) {
|
|
return http.del(BASE_URL, { ids: [id] })
|
|
}
|
|
|
|
/** @desc 导出${businessName} */
|
|
export function export${classNamePrefix}(query: ${classNamePrefix}Query) {
|
|
return http.download(`${'$'}{BASE_URL}/export`, query)
|
|
}
|
|
|
|
/** @desc 查询${businessName}字典 */
|
|
export function list${classNamePrefix}Dict(query?: ${classNamePrefix}Query) {
|
|
return http.get<LabelValueState[]>(`${'$'}{BASE_URL}/dict`, query)
|
|
}
|