修改路由,报表统计bug
This commit is contained in:
parent
afbd5c362c
commit
b8a3cbfeff
|
|
@ -769,7 +769,7 @@ const baseRoutes = [
|
|||
},
|
||||
{
|
||||
path: 'zfsjzbb',
|
||||
name: '_zfsjzbb',
|
||||
|
||||
component: () => import('@views/dtsjygl/zfsjzbb.vue'),
|
||||
meta: {
|
||||
title: '执法数据周报表'
|
||||
|
|
|
|||
|
|
@ -243,7 +243,9 @@ function caseEventClick(row, column, cell, event) {
|
|||
|| (colProp === "tbrs" && row[colProp] > 0) || (colProp === "tczds" && row[colProp] > 0)) {
|
||||
let query = Object.assign(queryParams.value, {industryType: row.industry_type, statisticDate: row.tjsjd})
|
||||
dialogConfig3.value.data = query
|
||||
|
||||
dialogConfig3.value.show = true
|
||||
dialogConfig3.value.mode = 'detail'
|
||||
dialogConfig3.value.title = '填报详情'
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -60,8 +60,7 @@
|
|||
<script setup>
|
||||
import {reactive, toRefs, getCurrentInstance, watch, computed, ref, nextTick} from '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 {ElMessage} from 'element-plus'
|
||||
|
||||
|
|
|
|||
|
|
@ -37,7 +37,10 @@ public class StatisticController {
|
|||
* @param
|
||||
* @return 执法周报表统计
|
||||
*/
|
||||
|
||||
@GetMapping("/statisticByWeekForm")
|
||||
public Result<List> statisticByWeekForm(CaseQuery query, @CurrentUser RemoteUserInfo user) {
|
||||
return Ok.of(statisticService.statisticByWeekForm(query,user));
|
||||
}
|
||||
|
||||
/**
|
||||
* 执法周报表统计查看監管企业数详情
|
||||
|
|
|
|||
Loading…
Reference in New Issue