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