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);
| }
|
|