build: continew-starter 2.10.0 => 2.11.0

1.SaToken 升级适配
2.DictField 注解 => DictModel
3.BaseIdResp => IdResp
4.CRUD 删除接口由 URL 传参重构为请求体传参
5.访问日志打印问题修复等
This commit is contained in:
2025-04-13 18:00:17 +08:00
parent 240d6fcb01
commit 82d8dc3985
15 changed files with 47 additions and 54 deletions

View File

@@ -57,7 +57,7 @@ export function update${classNamePrefix}(data: any, id: string) {
/** @desc 删除${businessName} */
export function delete${classNamePrefix}(id: string) {
return http.del(`${'$'}{BASE_URL}/${'$'}{id}`)
return http.del(`${'$'}{BASE_URL}/`, { ids: [id] })
}
/** @desc 导出${businessName} */