src/api/user.js
@@ -200,6 +200,18 @@ }) } // 导入通讯录 export function importUser(data){ return request({ headers: { "Content-Type": "multipart/form-data", }, url: '/org/user/import', method: 'post', data: data }) } //下载区划对照表 export function downLoadArea(){ return request({ @@ -265,3 +277,19 @@ data: data }) } export function getExportData(id){ return request({ url: '/org/user/export/' + id, method: 'post', }) } export function getOrgData(id){ return request({ url: '/org/structure/findByDistrictId/' + id, method: 'get', }) }