工作组导入导出
This commit is contained in:
@@ -804,3 +804,223 @@ export function upFile(data) {
|
||||
data
|
||||
})
|
||||
}
|
||||
// 工作组协会信息数据统计导出
|
||||
export function exportAssocInfos(params) {
|
||||
return axios({
|
||||
url: '/api/wgdCensusZ/wgd-assoc-info/exportAllAssocInfos',
|
||||
params,
|
||||
method: 'get',
|
||||
responseType: 'blob',
|
||||
header: {
|
||||
'content-type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
}
|
||||
// 工作组参与外部标准制修订信息统计导出
|
||||
export function exportAllWbxds(params) {
|
||||
return axios({
|
||||
url: '/api/wgdCensusLeo/wgd-wbxd/exportAllWbxds',
|
||||
params,
|
||||
method: 'get',
|
||||
responseType: 'blob',
|
||||
header: {
|
||||
'content-type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
}
|
||||
// 工作组委员信息数据统计导出
|
||||
export function exportAllCommiInfos(params) {
|
||||
return axios({
|
||||
url: '/api/wgdCensusZ/wgd-commi-info/exportAllCommiInfos',
|
||||
params,
|
||||
method: 'get',
|
||||
responseType: 'blob',
|
||||
header: {
|
||||
'content-type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
}
|
||||
// 工作组协会费用信息统计导出
|
||||
export function exportAllAssocCosts(params) {
|
||||
return axios({
|
||||
url: '/api/wgdCensusZ/wgd-assoc-cost/exportAllAssocCosts',
|
||||
params,
|
||||
method: 'get',
|
||||
responseType: 'blob',
|
||||
header: {
|
||||
'content-type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
}
|
||||
// 工作组参与外部协会会议统计导出
|
||||
export function exportAllWbtjs(params) {
|
||||
return axios({
|
||||
url: '/api/wgdCensusLeo/wgd-wbtj/exportAllWbtjs',
|
||||
params,
|
||||
method: 'get',
|
||||
responseType: 'blob',
|
||||
header: {
|
||||
'content-type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
}
|
||||
// 工作组参会费用信息统计导出
|
||||
export function exportAllMeetCosts(params) {
|
||||
return axios({
|
||||
url: '/api/wgdCensusZ/wgd-meet-cost/exportAllMeetCosts',
|
||||
params,
|
||||
method: 'get',
|
||||
responseType: 'blob',
|
||||
header: {
|
||||
'content-type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
}
|
||||
// 工作组采购费用信息统计导出
|
||||
export function exportAllCgfys(params) {
|
||||
return axios({
|
||||
url: '/api/wgdCensusLeo/wgd-cgfy/exportAllCgfys',
|
||||
params,
|
||||
method: 'get',
|
||||
responseType: 'blob',
|
||||
header: {
|
||||
'content-type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
}
|
||||
// 工作组参与外部标准制修订费用统计导出
|
||||
export function exportAllExReviseCost(params) {
|
||||
return axios({
|
||||
url: '/api/wgdCensusZ/wgd-ex-revise-cost/exportAllExReviseCost',
|
||||
params,
|
||||
method: 'get',
|
||||
responseType: 'blob',
|
||||
header: {
|
||||
'content-type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
}
|
||||
// 工作组翻译费用信息统计导出
|
||||
export function exportAllFyfys(params) {
|
||||
return axios({
|
||||
url: '/api/wgdCensusLeo/wgd-fyfy/exportAllFyfys',
|
||||
params,
|
||||
method: 'get',
|
||||
responseType: 'blob',
|
||||
header: {
|
||||
'content-type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
}
|
||||
// 工作组标准制修订补助资金收支统计收入表导出
|
||||
export function exportAllSrbs(params) {
|
||||
return axios({
|
||||
url: '/api/wgdCensusLeo/wgd-srb/exportAllSrbs',
|
||||
params,
|
||||
method: 'get',
|
||||
responseType: 'blob',
|
||||
header: {
|
||||
'content-type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
}
|
||||
// 工作组标准制修订补助资金收支统计支出表导出
|
||||
export function exportAllZcbs(params) {
|
||||
return axios({
|
||||
url: '/api/wgdCensusLeo/wgd-zcb/exportAllZcbs',
|
||||
params,
|
||||
method: 'get',
|
||||
responseType: 'blob',
|
||||
header: {
|
||||
'content-type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
}
|
||||
// 协会信息数据统计导入
|
||||
export function importAllAssocInfos(data) {
|
||||
return axios({
|
||||
url: '/api/wgdCensusZ/wgd-assoc-info/importAllAssocInfos',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 委员信息数据统计导入
|
||||
export function importAllCommiInfos(data) {
|
||||
return axios({
|
||||
url: '/api/wgdCensusZ/wgd-commi-info/importAllCommiInfos',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 参与外部协会会议统计导入
|
||||
export function importAllAllWbtjs(data) {
|
||||
return axios({
|
||||
url: '/api/wgdCensusLeo/wgd-wbtj/importAllAllWbtjs',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 参与外部标准制修订信息统计导入
|
||||
export function importAllWbxds(data) {
|
||||
return axios({
|
||||
url: '/api/wgdCensusLeo/wgd-wbxd/importAllWbxds',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
// 协会费用信息统计导入
|
||||
export function importAssocCosts(data) {
|
||||
return axios({
|
||||
url: '/api/wgdCensusZ/wgd-assoc-cost/importAssocCosts',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
//参会费用信息统计导入
|
||||
export function importMeetCost(data) {
|
||||
return axios({
|
||||
url: '/api/wgdCensusZ/wgd-meet-cost/importMeetCost',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
//参与外部标准制修订费用统计导入
|
||||
export function importExReviseCost(data) {
|
||||
return axios({
|
||||
url: '/api/wgdCensusZ/wgd-ex-revise-cost/importExReviseCost',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
//采购费用信息统计导入
|
||||
export function importAllCgfys(data) {
|
||||
return axios({
|
||||
url: '/api/wgdCensusLeo/wgd-cgfy/importAllCgfys',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
//翻译费用信息统计导入
|
||||
export function importAllFyfys(data) {
|
||||
return axios({
|
||||
url: '/api/wgdCensusLeo/wgd-fyfy/importAllFyfys',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
//标准制修订补助资金收支统计收入表导入
|
||||
export function importAllSrbs(data) {
|
||||
return axios({
|
||||
url: '/api/wgdCensusLeo/wgd-srb/importAllSrbs',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
//标准制修订补助资金收支统计支出表导入
|
||||
export function importAllZcbs(data) {
|
||||
return axios({
|
||||
url: '/api/wgdCensusLeo/wgd-zcb/importAllZcbs',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user