企业查询增加高级查询条件、完善查询功能

This commit is contained in:
chenlinlin 2025-06-06 17:29:34 +08:00
parent 398baa8c37
commit 920d387c81
8 changed files with 13 additions and 4 deletions

View File

@ -488,7 +488,7 @@ const baseRoutes = [
path: '/fxczfgl',
name: 'fxczfgl',
component: SviLayout,
meta: {title: '非现场执法管理},
meta: {title: '非现场执法'},
children: [
{
path: 'index',

View File

@ -842,6 +842,7 @@
}
},
},
{
"gncdbh": "A-610100000000-0005_0664",
"name": "送达业务统计",

View File

@ -46,7 +46,7 @@
},
{
"gncdbh": 9,
"name": "统计报表",
"name": "统计分析",
"icon": "zyyy_rzzx",
"path": "/tjbb/zflatj",
"router": true

View File

@ -204,6 +204,13 @@ function reset(query) {
handleQuery()
}
function getCurrentQuarter() {
const now = new Date()
const quarter = Math.floor(now.getMonth() / 3) + 1;
queryParams.value.Jd = queryParams.value.Jd === undefined ? quarter : queryParams.value.Jd
}
const {componentLoading, queryParams, permissions, tableConfig, apiConfig, dialogConfig, actions} = toRefs(state)
const broTable = ref(null)

View File

@ -146,6 +146,7 @@
<div class="cvi-dialog-footer">
<el-button @click="dialogConfig.actions.handleClose">取消</el-button>
<el-button type="primary" @click="dialogConfig.actions.handleDialogOk">确定</el-button>
<!-- <el-button type="success" @click="dialogConfig.actions.handleDocument">在线巡查文书</el-button>-->
</div>
</template>
</el-dialog>

View File

@ -216,7 +216,7 @@ public class CaseController {
}
/**
* 执法立案统计
* 执法立案统计不分页
*
* @param query
* @return 查询执法立案统计结果

View File

@ -19,6 +19,7 @@ public class OnlinePatrolDto {
private String createUserName;//录入人名称
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private LocalDateTime createTime;//录入时间
private String approvalStatus;//审批状态
private String approvalUserId;//审批人id
private String approvalUserName;//审批人名称

View File

@ -16,5 +16,4 @@ public class OnlinePatrolQuery extends BaseQuery {
private String industryType;
private String unitName;
private String unifiedSocialCode;
}