修改路由,报表统计bug

This commit is contained in:
jiangzongtao 2025-07-25 19:01:52 +08:00
parent afbd5c362c
commit b8a3cbfeff
4 changed files with 9 additions and 5 deletions

View File

@ -769,7 +769,7 @@ const baseRoutes = [
}, },
{ {
path: 'zfsjzbb', path: 'zfsjzbb',
name: '_zfsjzbb',
component: () => import('@views/dtsjygl/zfsjzbb.vue'), component: () => import('@views/dtsjygl/zfsjzbb.vue'),
meta: { meta: {
title: '执法数据周报表' title: '执法数据周报表'

View File

@ -243,7 +243,9 @@ 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 = '填报详情'
} }
} }

View File

@ -60,8 +60,7 @@
<script setup> <script setup>
import {reactive, toRefs, getCurrentInstance, watch, computed, ref, nextTick} from 'vue' import {reactive, toRefs, getCurrentInstance, watch, computed, ref, nextTick} from 'vue'
import browser from '@/components/Browser.vue' import browser from '@/components/Browser.vue'
import documentList from '@pages/xzzfgl/caseMan/DocumentList.vue'
import caseApi from '@/api/lawenforcement/Case'
import documentApi from '@/api/lawenforcement/Document.js' import documentApi from '@/api/lawenforcement/Document.js'
import {ElMessage} from 'element-plus' import {ElMessage} from 'element-plus'

View File

@ -37,7 +37,10 @@ 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));
}
/** /**
* 执法周报表统计查看監管企业数详情 * 执法周报表统计查看監管企业数详情