优化执法数据周报表,解决统计分析模块bug
This commit is contained in:
parent
48f35be891
commit
afbd5c362c
|
|
@ -243,9 +243,7 @@ function caseEventClick(row, column, cell, event) {
|
||||||
|| (colProp === "tbrs" && row[colProp] > 0) || (colProp === "tczds" && row[colProp] > 0)) {
|
|| (colProp === "tbrs" && row[colProp] > 0) || (colProp === "tczds" && row[colProp] > 0)) {
|
||||||
let query = Object.assign(queryParams.value, {industryType: row.industry_type, statisticDate: row.tjsjd})
|
let query = Object.assign(queryParams.value, {industryType: row.industry_type, statisticDate: row.tjsjd})
|
||||||
dialogConfig3.value.data = query
|
dialogConfig3.value.data = query
|
||||||
dialogConfig3.value.show = true
|
|
||||||
dialogConfig3.value.mode = 'detail'
|
|
||||||
dialogConfig3.value.title = '填报详情'
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -48,7 +48,10 @@
|
||||||
<el-table-column label="立案日期" prop="fillingDate" min-width="150"></el-table-column>
|
<el-table-column label="立案日期" prop="fillingDate" min-width="150"></el-table-column>
|
||||||
<el-table-column label="承办人" prop="caseHandler" min-width="150"></el-table-column>
|
<el-table-column label="承办人" prop="caseHandler" min-width="150"></el-table-column>
|
||||||
<el-table-column label="结案日期" prop="caseClosingDate" min-width="150"></el-table-column>
|
<el-table-column label="结案日期" prop="caseClosingDate" min-width="150"></el-table-column>
|
||||||
|
<template #tableControlColumn="{ data: r }">
|
||||||
|
<el-link type="primary" @click="handleDetail(r.data.row)" title="转交">导出案卷</el-link>
|
||||||
|
<!-- <el-link v-if="r.data.row.downUrl" type="primary" @click="downloadFile(r.data.row)" title="下载案卷">案卷制作</el-link>-->
|
||||||
|
</template>
|
||||||
<template #dialogContent="{ dialogConfig: dialog }">
|
<template #dialogContent="{ dialogConfig: dialog }">
|
||||||
<document-list :dialogConfig="dialog.data" :documents="dialog.documents"></document-list>
|
<document-list :dialogConfig="dialog.data" :documents="dialog.documents"></document-list>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -37,10 +37,7 @@ public class StatisticController {
|
||||||
* @param
|
* @param
|
||||||
* @return 执法周报表统计
|
* @return 执法周报表统计
|
||||||
*/
|
*/
|
||||||
@GetMapping("/statisticByWeekForm")
|
|
||||||
public Result<List> statisticByWeekForm(CaseQuery query, @CurrentUser RemoteUserInfo user) {
|
|
||||||
return Ok.of(statisticService.statisticByWeekForm(query,user));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 执法周报表统计查看監管企业数详情
|
* 执法周报表统计查看監管企业数详情
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue