!151 style(bg,dq): 查询区域高级查询按钮调整到重置前,统一列表代码格式

* style(bg,dq): 查询区域高级查询按钮调整到重置前,统一列表代码格式
* fix(inspectProblem): 年份筛选与表单字段改用年份选择器
* fix(bgpartymatter): 分管所领导下拉按角色跨部门查询
* style(xispeak,inspectTask): 表单整行字段 label 缩窄实现输入框左对齐
* fix(xispeak): 督办状态改读 bpmStatus,修复发起收集流程误置已完成
* fix(xispeak): 导出切 EasyExcel 端点
This commit is contained in:
wsm
2026-08-13 03:16:15 +00:00
parent 5f2eee8d2a
commit 9742faf892
13 changed files with 316 additions and 286 deletions
+17 -10
View File
@@ -11,7 +11,15 @@
</a-col>
<a-col :xl="5" :lg="6" :md="8" :sm="12">
<a-form-item label="分管所领导" name="chargeLeaderId">
<DeptRoleUserSelectDropDown v-model:value="queryParam.chargeLeaderId" :deptId="PARTY_COMMITTEE_DEPT_ID" :roleId="CHARGE_LEADER_ROLE_ID" placeholder="请选择分管所领导" allow-clear style="width: 100%" @change="reload" />
<DeptRoleUserSelectDropDown
v-model:value="queryParam.chargeLeaderId"
:deptId="PARTY_COMMITTEE_DEPT_ID"
:roleId="CHARGE_LEADER_ROLE_ID"
placeholder="请选择分管所领导"
allow-clear
style="width: 100%"
@change="reload"
/>
</a-form-item>
</a-col>
<a-col :xl="5" :lg="6" :md="8" :sm="12">
@@ -31,27 +39,28 @@
<a-col :xl="6" :lg="6" :md="8" :sm="12">
<div class="table-page-search-submitButtons">
<a-button type="primary" preIcon="ant-design:search-outlined" @click="reload">查询</a-button>
<a-button preIcon="ant-design:reload-outlined" @click="searchReset">重置</a-button>
<!-- 高级查询 -->
<super-query :config="superQueryConfig" @search="handleSuperQuery" />
<a-button preIcon="ant-design:reload-outlined" @click="searchReset">重置</a-button>
</div>
</a-col>
</a-row>
</a-form>
</div>
<!--引用表格-->
<BasicTable @register="registerTable" :rowSelection="rowSelection" @fetch-success="onFetchSuccess" :rowClassName="(r) => r.bpmStatus ? 'status-row-' + r.bpmStatus : ''">
<BasicTable
@register="registerTable"
:rowSelection="rowSelection"
@fetch-success="onFetchSuccess"
:rowClassName="(r) => (r.bpmStatus ? 'status-row-' + r.bpmStatus : '')"
>
<!--插槽:table标题-->
<template #tableTitle>
<a-button type="primary" v-auth="'dqinspecttask:dq_inspect_task:add'" @click="handleAdd" preIcon="ant-design:plus-outlined"> 新增</a-button>
<a-button type="primary" v-auth="'dqinspecttask:dq_inspect_task:exportXls'" preIcon="ant-design:export-outlined" @click="onExportXls">
导出</a-button
>
<j-upload-button
type="primary"
v-auth="'dqinspecttask:dq_inspect_task:importExcel'"
preIcon="ant-design:import-outlined"
@click="onImportXls"
<j-upload-button type="primary" v-auth="'dqinspecttask:dq_inspect_task:importExcel'" preIcon="ant-design:import-outlined" @click="onImportXls"
>导入</j-upload-button
>
<a-button
@@ -608,8 +617,6 @@
setTableData([...getDataSource()]);
}
}
</script>
<style lang="less" scoped>
.jeecg-basic-table-form-container {