mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-08-27 19:20:03 +08:00
发布v2.2.10版本,更新内容请查看:https://github.com/bufanyun/hotgo/tree/v2.0/docs/guide-zh-CN/addon-version-upgrade.md
This commit is contained in:
75
server/resource/generate/default/curd/web.api.ts.template
Normal file
75
server/resource/generate/default/curd/web.api.ts.template
Normal file
@@ -0,0 +1,75 @@
|
||||
import { http, jumpExport } from '@/utils/http/axios';
|
||||
|
||||
// 获取@{.tableComment}列表
|
||||
export function List(params) {
|
||||
return http.request({
|
||||
url: '/@{.apiPrefix}/list',
|
||||
method: 'get',
|
||||
params,
|
||||
});
|
||||
}
|
||||
@{ if eq .options.Step.HasDel true }
|
||||
// 删除/批量删除@{.tableComment}
|
||||
export function Delete(params) {
|
||||
return http.request({
|
||||
url: '/@{.apiPrefix}/delete',
|
||||
method: 'POST',
|
||||
params,
|
||||
});
|
||||
}
|
||||
@{end}
|
||||
@{ if eq .options.Step.HasEdit true }
|
||||
// 添加/编辑@{.tableComment}
|
||||
export function Edit(params) {
|
||||
return http.request({
|
||||
url: '/@{.apiPrefix}/edit',
|
||||
method: 'POST',
|
||||
params,
|
||||
});
|
||||
}
|
||||
@{end}
|
||||
@{ if eq .options.Step.HasStatus true }
|
||||
// 修改@{.tableComment}状态
|
||||
export function Status(params) {
|
||||
return http.request({
|
||||
url: '/@{.apiPrefix}/status',
|
||||
method: 'POST',
|
||||
params,
|
||||
});
|
||||
}
|
||||
@{end}
|
||||
@{ if eq .options.Step.HasSwitch true }
|
||||
// 操作@{.tableComment}开关
|
||||
export function Switch(params) {
|
||||
return http.request({
|
||||
url: '/@{.apiPrefix}/switch',
|
||||
method: 'POST',
|
||||
params,
|
||||
});
|
||||
}
|
||||
@{end}
|
||||
@{ if eq .options.Step.HasView true }
|
||||
// 获取@{.tableComment}指定详情
|
||||
export function View(params) {
|
||||
return http.request({
|
||||
url: '/@{.apiPrefix}/view',
|
||||
method: 'GET',
|
||||
params,
|
||||
});
|
||||
}
|
||||
@{end}
|
||||
@{ if eq .options.Step.HasMaxSort true }
|
||||
// 获取@{.tableComment}最大排序
|
||||
export function MaxSort() {
|
||||
return http.request({
|
||||
url: '/@{.apiPrefix}/maxSort',
|
||||
method: 'GET',
|
||||
});
|
||||
}
|
||||
@{end}
|
||||
@{ if eq .options.Step.HasExport true }
|
||||
// 导出@{.tableComment}
|
||||
export function Export(params) {
|
||||
jumpExport('/@{.apiPrefix}/export', params);
|
||||
}
|
||||
@{end}
|
Reference in New Issue
Block a user