| | |
| | | // 注册方法 |
| | | export function register(data) { |
| | | return request({ |
| | | url: '/register', |
| | | url: '/system/user/addAgency', |
| | | headers: { |
| | | isToken: false |
| | | }, |
| | |
| | | method: 'get', |
| | | timeout: 20000 |
| | | }) |
| | | } |
| | | |
| | | // 获取字典 |
| | | export function getDict(type) { |
| | | return request({ |
| | | url: '/system/dictType/getDictDataByType', |
| | | headers: { |
| | | isToken: false |
| | | }, |
| | | method: 'get', |
| | | params: type |
| | | }) |
| | | } |
| | | |
| | | // 删除图片 |
| | | export function delPic(path) { |
| | | return request({ |
| | | url: '/system/common/removeFile', |
| | | headers: { |
| | | isToken: false |
| | | }, |
| | | method: 'delete', |
| | | params: path, |
| | | timeout: 20000 |
| | | }) |
| | | } |