autoCode.js 573 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
import service from '@/utils/request'
// @Tags api
// @Summary 分页获取角色列表
// @Security ApiKeyAuth
// @accept application/json
// @Produce application/json
// @Param data body modelInterface.PageInfo true "分页获取用户列表"
// @Success 200 {string} json "{"success":true,"data":{},"msg":"获取成功"}"
// @Router /api/getApiList [post]
// {
//  page     int
//	pageSize int
// }
export const createTemp = (data) => {
    return service({
        url: "/autoCode/createTemp",
        method: 'post',
Mr.奇淼('s avatar
Mr.奇淼( 已提交
18 19
        data,
        responseType: 'blob'
20 21
    })
}