From b08ca3eab18fade7395874a099d200341112e6fd Mon Sep 17 00:00:00 2001 From: ye1023 <12588209+ye1023@user.noreply.gitee.com> Date: Thu, 28 May 2026 10:46:50 +0800 Subject: [PATCH] =?UTF-8?q?yxk-20260527-=E5=B7=A1=E8=A7=86=E6=95=B4?= =?UTF-8?q?=E6=94=B9=E6=8F=90=E5=8D=87=E5=8F=B0=E8=B4=A6=EF=BC=8C=E9=97=AE?= =?UTF-8?q?=E9=A2=98=E6=B8=85=E5=8D=95=E6=A0=91=E5=BD=A2=E7=BB=93=E6=9E=84?= =?UTF-8?q?=E6=94=B9=E9=80=A0=20=E7=82=B9=E5=87=BB=E6=9F=90=E4=B8=80?= =?UTF-8?q?=E8=A1=8C=E5=B0=B1=E8=83=BD=E5=B1=95=E5=BC=80=E6=88=96=E8=80=85?= =?UTF-8?q?=E6=94=B6=E8=B5=B7=E6=A0=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../inspectProblem/DqInspectProblem.data.ts | 73 +++++------ .../inspectProblem/DqInspectProblemList.vue | 122 ++++++++++++++---- 2 files changed, 132 insertions(+), 63 deletions(-) diff --git a/src/views/dq/inspectProblem/DqInspectProblem.data.ts b/src/views/dq/inspectProblem/DqInspectProblem.data.ts index f164775..949a14e 100644 --- a/src/views/dq/inspectProblem/DqInspectProblem.data.ts +++ b/src/views/dq/inspectProblem/DqInspectProblem.data.ts @@ -5,6 +5,11 @@ import { render } from '/@/utils/common/renderUtils'; import { getWeekMonthQuarterYear } from '/@/utils'; //列表数据 export const columns: BasicColumn[] = [ + { + title: '问题名称', + align: 'left', + dataIndex: 'problemName' + }, { title: '类型', align: 'center', @@ -13,42 +18,6 @@ export const columns: BasicColumn[] = [ return render.renderDict(text, 'super_dq_ins_type'); }, }, - { - title: '密级', - align: 'center', - dataIndex: 'secretLevel_dictText' - }, - { - title: '年份', - align: 'center', - dataIndex: 'year_dictText' - }, - { - title: '父节点ID', - align: 'center', - dataIndex: 'pid' - }, - { - title: '是否有子节点', - align: 'center', - dataIndex: 'hasChild' - }, - - { - title: '问题名称', - align: 'left', - dataIndex: 'problemName' - }, - { - title: '问题编码/分类字典值', - align: 'center', - dataIndex: 'problemCode' - }, - { - title: '排序', - align: 'center', - dataIndex: 'sortNo' - }, { title: '巡视建议', align: 'center', @@ -64,6 +33,38 @@ export const columns: BasicColumn[] = [ align: 'center', dataIndex: 'questionResDept_dictText' }, + { + title: '年份', + align: 'center', + dataIndex: 'year_dictText' + }, + { + title: '密级', + align: 'center', + dataIndex: 'secretLevel_dictText' + }, + { + title: '父节点ID', + align: 'center', + dataIndex: 'pid' + }, + { + title: '是否有子节点', + align: 'center', + dataIndex: 'hasChild' + }, + + { + title: '问题编码/分类字典值', + align: 'center', + dataIndex: 'problemCode' + }, + { + title: '排序', + align: 'center', + dataIndex: 'sortNo' + }, + ]; // 高级查询数据 diff --git a/src/views/dq/inspectProblem/DqInspectProblemList.vue b/src/views/dq/inspectProblem/DqInspectProblemList.vue index 589979f..ed357ee 100644 --- a/src/views/dq/inspectProblem/DqInspectProblemList.vue +++ b/src/views/dq/inspectProblem/DqInspectProblemList.vue @@ -4,21 +4,22 @@