From 9742faf892200d715ab2bdba467f1eea3cf014b2 Mon Sep 17 00:00:00 2001 From: wsm <8454518+new-twice@user.noreply.gitee.com> Date: Thu, 13 Aug 2026 03:16:15 +0000 Subject: [PATCH] =?UTF-8?q?!151=20style(bg,dq):=20=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?=E5=8C=BA=E5=9F=9F=E9=AB=98=E7=BA=A7=E6=9F=A5=E8=AF=A2=E6=8C=89?= =?UTF-8?q?=E9=92=AE=E8=B0=83=E6=95=B4=E5=88=B0=E9=87=8D=E7=BD=AE=E5=89=8D?= =?UTF-8?q?=EF=BC=8C=E7=BB=9F=E4=B8=80=E5=88=97=E8=A1=A8=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E6=A0=BC=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * style(bg,dq): 查询区域高级查询按钮调整到重置前,统一列表代码格式 * fix(inspectProblem): 年份筛选与表单字段改用年份选择器 * fix(bgpartymatter): 分管所领导下拉按角色跨部门查询 * style(xispeak,inspectTask): 表单整行字段 label 缩窄实现输入框左对齐 * fix(xispeak): 督办状态改读 bpmStatus,修复发起收集流程误置已完成 * fix(xispeak): 导出切 EasyExcel 端点 --- .../DeptRoleUserSelectDropDown.vue | 8 +- .../bg/bgpartymatter/BgPartymatterList.vue | 6 +- src/views/bg/bqtakepulse/BgTakepulseList.vue | 443 ++++++++++-------- src/views/bg/xispeak/BgXiSpeak.api.ts | 3 + src/views/bg/xispeak/BgXiSpeak.data.ts | 5 +- src/views/bg/xispeak/BgXiSpeakList.vue | 83 +--- .../components/BgXiSpeakBPMFeedbackModal.vue | 5 +- .../components/BgXiSpeakFeedbackForm.vue | 11 +- .../bg/xispeak/components/BgXiSpeakForm.vue | 4 +- .../inspectProblem/DqInspectProblemList.vue | 3 +- .../components/DqInspectProblemForm.vue | 2 +- .../dq/inspectTask/DqInspectTaskList.vue | 27 +- .../components/DqInspectTaskForm.vue | 2 +- 13 files changed, 316 insertions(+), 286 deletions(-) diff --git a/src/components/semri/userComponent/DeptRoleUserSelectDropDown.vue b/src/components/semri/userComponent/DeptRoleUserSelectDropDown.vue index 95266f7..6912943 100644 --- a/src/components/semri/userComponent/DeptRoleUserSelectDropDown.vue +++ b/src/components/semri/userComponent/DeptRoleUserSelectDropDown.vue @@ -38,18 +38,16 @@ const modelValue = defineModel('value', { default: '' }); const userList = ref>([]); async function fetchUserList() { - if (!props.deptId) { - userList.value = []; - return; - } try { const params = { - departId: props.deptId, roleId: props.roleId, searchSecurityLevel: 5, pageNo: 1, pageSize: 999, }; + if (props.deptId) { + params.departId = props.deptId; + } const res = await defHttp.get({ url: '/sys/user/queryUserRoleComponentData', params }); const records = res?.records || res?.result?.records || []; userList.value = records.sort((a, b) => (a.sortno ?? Infinity) - (b.sortno ?? Infinity)); diff --git a/src/views/bg/bgpartymatter/BgPartymatterList.vue b/src/views/bg/bgpartymatter/BgPartymatterList.vue index c89efdf..c25821b 100644 --- a/src/views/bg/bgpartymatter/BgPartymatterList.vue +++ b/src/views/bg/bgpartymatter/BgPartymatterList.vue @@ -17,7 +17,7 @@ - + @@ -53,9 +53,9 @@
查询 + 重置 -
@@ -181,7 +181,7 @@ import JDictSelectTag from '/@/components/Form/src/jeecg/components/JDictSelectTag.vue'; import JInput from '/@/components/Form/src/jeecg/components/JInput.vue'; import DeptRoleUserSelectDropDown from '/@/components/semri/userComponent/DeptRoleUserSelectDropDown.vue'; - import { PARTY_COMMITTEE_DEPT_ID, CHARGE_LEADER_ROLE_ID } from '/@/constant/supervision'; + import { CHARGE_LEADER_ROLE_ID } from '/@/constant/supervision'; import { Tooltip } from 'ant-design-vue'; import Icon from '/@/components/Icon/index'; import BgPartymatterModal from './components/BgPartymatterModal.vue'; diff --git a/src/views/bg/bqtakepulse/BgTakepulseList.vue b/src/views/bg/bqtakepulse/BgTakepulseList.vue index 1dadd58..1646256 100644 --- a/src/views/bg/bqtakepulse/BgTakepulseList.vue +++ b/src/views/bg/bqtakepulse/BgTakepulseList.vue @@ -9,7 +9,9 @@ - +
@@ -17,7 +19,14 @@ - + @@ -25,7 +34,16 @@ - + @@ -33,7 +51,15 @@ - + @@ -41,51 +67,79 @@ - +
查询 + 重置 -
- - + + - + @@ -148,22 +206,33 @@ - - + +