zhouwenxuan
2023-12-21 2603776911f8acfe970f8d79c2f57f2e5c22791d
src/api/user.js
@@ -191,4 +191,25 @@
        method: 'post',
        data: data
    })
}
}
//下载区划对照表
export function downLoadArea(){
    return request({
        url: '/sys/districtInfo/getDistrictInfoExcel',
        method: 'get',
        responseType: 'blob'
    })
}
// 导入用户表
export function importUserFile(data){
    return request({
        headers: {
            "Content-Type": "multipart/form-data",
        },
        url: '/account/user/importNew',
        method: 'post',
        data: data
    })
}