🐛 修复代码生成模块的bug

This commit is contained in:
smallchill 2019-01-22 09:57:30 +08:00
parent 717ee7da58
commit 6f9d326dfd

View File

@ -29,6 +29,6 @@ export async function detail(params) {
export async function genCodes(params) {
return request('/api/blade-develop/code/gen-code', {
method: 'POST',
body: params,
body: func.toFormData(params),
});
}