zhanghua
2023-08-15 7b45fab748a678fef1a42d88b62d618513699978
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import http from "@/http";
import {exportTeamInfo, importTeamInfo} from "@/api/system/portal/teamConstruction";
 
export default {
    getDepartmentList: () => {
        return http.get('/sccg/sccg_region/getTree');
    },
    //导出
}
export function exportUser(params) {
    return http.downloadFile('/sccg/admin/export', params);
}
export function importUser(params) {
    return http.uploadFile('/sccg/admin/import', params);
}