From 483ac77bad3afee6660d416cdf34f22b0306bcc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BA=84=E6=96=B0=E4=BC=9F?= <1152856986@qq.com> Date: Tue, 15 Mar 2022 13:33:29 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B7=A5=E4=BD=9C=E7=BB=84=E5=AF=BC=E5=85=A5?= =?UTF-8?q?=E5=AF=BC=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/process.js | 220 ++++++++++++++++++ .../dataStatis/miniPages/expendSubsidy.vue | 116 +++++++-- .../dataStatis/miniPages/inComeSubsidy.vue | 103 +++++++- .../dataStatis/page/listOfMeeting.vue | 106 ++++++++- .../dataStatis/page/listOfMember.vue | 106 ++++++++- .../dataStatis/page/listOfSociety.vue | 115 ++++++++- .../dataStatis/page/listOfStandard.vue | 105 ++++++++- .../dataStatis/pages/attendCost.vue | 104 ++++++++- .../dataStatis/pages/purchaseCost.vue | 102 +++++++- .../dataStatis/pages/reviseCost.vue | 105 ++++++++- .../dataStatis/pages/societyCost.vue | 105 ++++++++- .../dataStatis/pages/translateCost.vue | 101 +++++++- 12 files changed, 1341 insertions(+), 47 deletions(-) diff --git a/src/api/process.js b/src/api/process.js index 873a4600a..b582172ae 100644 --- a/src/api/process.js +++ b/src/api/process.js @@ -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 + }) +} diff --git a/src/pages/regulatoryRepository/dataStatis/miniPages/expendSubsidy.vue b/src/pages/regulatoryRepository/dataStatis/miniPages/expendSubsidy.vue index 8075b5417..e1e0fb8df 100644 --- a/src/pages/regulatoryRepository/dataStatis/miniPages/expendSubsidy.vue +++ b/src/pages/regulatoryRepository/dataStatis/miniPages/expendSubsidy.vue @@ -20,8 +20,8 @@
新增 - - + 导入 + 导出 批量删除
@@ -149,18 +149,37 @@ - - - + + + + +
将文件拖到此处,或点击上传
+
+
+ + + + + + + + + + @@ -170,6 +189,7 @@