| | |
| | | params |
| | | }) |
| | | } |
| | | // 导出 |
| | | export function download (params) { |
| | | return request({ |
| | | url: '/api/webEnumController/exportEnumTypes', |
| | | method: 'get', |
| | | headers: {'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8'}, |
| | | responseType: 'blob', |
| | | params |
| | | }) |
| | | } |
| | | |
| | | // 下载导入模板 |
| | | export function downloadTemplate (params) { |
| | | return request({ |
| | | url: '/api/webEnumController/downloadEnumTemplate', |
| | | method: 'get', |
| | | headers: {'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8'}, |
| | | responseType: 'blob', |
| | | params |
| | | }) |
| | | } |
| | | |
| | | // 停用启用 |
| | | export function stopProcessTemp(params) { |
| | | return request({ |
| | | url: "/api/userQueryController/stopUsers", |
| | | method: "post", |
| | | params |
| | | }); |
| | | } |