From cecf903a6af49e413501758a68a352be58cb720a Mon Sep 17 00:00:00 2001 From: gongjiale <942894820@qq.com> Date: Wed, 23 Nov 2022 17:25:00 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E9=9C=80=E6=B1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- back/src/views/modules/assetReport/index.vue | 57 +++++++++++++++----- 1 file changed, 45 insertions(+), 12 deletions(-) diff --git a/back/src/views/modules/assetReport/index.vue b/back/src/views/modules/assetReport/index.vue index 1626112a..f9a1b841 100644 --- a/back/src/views/modules/assetReport/index.vue +++ b/back/src/views/modules/assetReport/index.vue @@ -30,6 +30,8 @@ + + 日期: - + + 提供部门: - + + 申请部门: + + - 类型: + 资源类型: + + + + - 名称: + 资源名称: - - - + + + 审核状态: + + + + + + + + + + {{ $t("query") }} @@ -133,13 +153,16 @@ :href=" exportExcel + '?' + - dataForm + + exportExcelCondition + '&token=' + token " >导出全部 + + +
+ import Cookies from 'js-cookie' - +import qs from 'qs' export default { data() { return { + exportExcelCondition:'', token: Cookies.get('ucsToken'), //导出全部 exportExcel: CONFIGITEM.configData[CONFIGITEM.version].apiURL + '/processForm/tabilityapplication/exportFundStatementTable', @@ -236,6 +266,7 @@ export default { applyDept: "", resourceType: "", resourceName: "", + applyResult:"", pageNum:1, pageSize:10, }, @@ -266,8 +297,9 @@ export default { price=Math.round(price / 10000); this.saveMoney=price.toFixed(1) this.total=Number(res.data.data.total); - }); - }, + this.exportExcelCondition = qs.stringify(this.dataForm) + }) + }, handleCurrentChange(val) { this.currentPage = val; this.init(); @@ -280,6 +312,7 @@ export default { this.dataForm.resourceName = ""; this.dataForm.applyDept = ""; this.dataForm.provideDept = ""; + this.dataForm.applyResult=""; this.currentPage = 1; this.init(); },