From dbd0dad9da23997cc9cd413d449a5867b61694e2 Mon Sep 17 00:00:00 2001
From: ye1023 <12588209+ye1023@user.noreply.gitee.com>
Date: Thu, 25 Jun 2026 10:24:45 +0800
Subject: [PATCH] =?UTF-8?q?yxk-20260625-=E5=B7=A1=E8=A7=86=E6=95=B4?=
=?UTF-8?q?=E6=94=B9=E6=8F=90=E5=8D=87=E5=B7=A5=E4=BD=9C=E5=8F=B0=E8=B4=A6?=
=?UTF-8?q?=EF=BC=9A=20=E9=97=AE=E9=A2=98=E6=B8=85=E5=8D=95=E5=88=97?=
=?UTF-8?q?=E8=A1=A8=EF=BC=9A=E7=88=B6=E8=8A=82=E7=82=B9=E3=80=81=E6=98=AF?=
=?UTF-8?q?=E5=90=A6=E6=A0=B9=E8=8A=82=E7=82=B9=E7=AD=89=E6=97=A0=E5=85=B3?=
=?UTF-8?q?=E4=BF=A1=E6=81=AF=E5=8E=BB=E6=8E=89=20=E9=97=AE=E9=A2=98?=
=?UTF-8?q?=E8=B4=A3=E4=BB=BB=E9=A2=86=E5=AF=BC=E3=80=81=E9=97=AE=E9=A2=98?=
=?UTF-8?q?=E8=B4=A3=E4=BB=BB=E9=83=A8=E9=97=A8=E7=9A=84=E9=80=89=E4=BA=BA?=
=?UTF-8?q?=E9=80=89=E9=83=A8=E9=97=A8=E7=BB=84=E4=BB=B6=E9=9C=80=E8=A6=81?=
=?UTF-8?q?=E6=9B=BF=E6=8D=A2=20=E4=BB=BB=E5=8A=A1=E6=B8=85=E5=8D=95?=
=?UTF-8?q?=EF=BC=9A=E5=8E=BB=E6=8E=89=E6=93=8D=E4=BD=9C=E6=A0=8F=E7=9A=84?=
=?UTF-8?q?=E5=AE=A1=E6=89=B9=E8=BF=9B=E5=BA=A6?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../inspectProblem/DqInspectProblem.data.ts | 23 +++++++------
.../components/DqInspectProblemForm.vue | 34 ++++++++++++-------
.../dq/inspectTask/DqInspectTaskList.vue | 16 ++++-----
3 files changed, 41 insertions(+), 32 deletions(-)
diff --git a/src/views/dq/inspectProblem/DqInspectProblem.data.ts b/src/views/dq/inspectProblem/DqInspectProblem.data.ts
index 949a14e..8cfd0a0 100644
--- a/src/views/dq/inspectProblem/DqInspectProblem.data.ts
+++ b/src/views/dq/inspectProblem/DqInspectProblem.data.ts
@@ -8,7 +8,8 @@ export const columns: BasicColumn[] = [
{
title: '问题名称',
align: 'left',
- dataIndex: 'problemName'
+ dataIndex: 'problemName',
+ width: '320px',
},
{
title: '类型',
@@ -43,16 +44,16 @@ export const columns: BasicColumn[] = [
align: 'center',
dataIndex: 'secretLevel_dictText'
},
- {
- title: '父节点ID',
- align: 'center',
- dataIndex: 'pid'
- },
- {
- title: '是否有子节点',
- align: 'center',
- dataIndex: 'hasChild'
- },
+ // {
+ // title: '父节点ID',
+ // align: 'center',
+ // dataIndex: 'pid'
+ // },
+ // {
+ // title: '是否有子节点',
+ // align: 'center',
+ // dataIndex: 'hasChild'
+ // },
{
title: '问题编码/分类字典值',
diff --git a/src/views/dq/inspectProblem/components/DqInspectProblemForm.vue b/src/views/dq/inspectProblem/components/DqInspectProblemForm.vue
index f5fc7f4..3e45f4d 100644
--- a/src/views/dq/inspectProblem/components/DqInspectProblemForm.vue
+++ b/src/views/dq/inspectProblem/components/DqInspectProblemForm.vue
@@ -55,12 +55,18 @@
-
+
+
-
+
+
+
@@ -80,6 +86,8 @@
import {loadTreeData, parentOptions, saveOrUpdateDict} from '../DqInspectProblem.api';
import { Form } from 'ant-design-vue';
import JFormContainer from '/@/components/Form/src/container/JFormContainer.vue';
+ import SzDeptUserModal from "@/components/semri/deptUserComponent/SzDeptUserModal.vue";
+ import SzSelectDept from "@/components/Form/src/jeecg/components/SzSelectDept.vue";
const useForm = Form.useForm;
const formRef = ref();
const isUpdate = ref(true);
@@ -94,17 +102,17 @@
const NODE_TYPE_SPECIFIC = 'specific';
const formData = reactive>({
id: '',
- secretLevel: '',
- year: '',
- pid: '',
- hasChild: '',
- nodeType: '',
- problemName: '',
- problemCode: '',
+ secretLevel: '',
+ year: '',
+ pid: '',
+ hasChild: '',
+ nodeType: '',
+ problemName: '',
+ problemCode: '',
sortNo: undefined,
- inspectAdvice: '',
- questionResLeader: '',
- questionResDept: '',
+ inspectAdvice: '',
+ questionResLeader: '',
+ questionResDept: '',
});
const { createMessage } = useMessage();
const labelCol = ref({ xs: { span: 24 }, sm: { span: 5 } });
@@ -149,7 +157,7 @@
return props.formDisabled;
});
-
+
/**
* 新增
*/
diff --git a/src/views/dq/inspectTask/DqInspectTaskList.vue b/src/views/dq/inspectTask/DqInspectTaskList.vue
index c41f6cc..f1293c3 100644
--- a/src/views/dq/inspectTask/DqInspectTaskList.vue
+++ b/src/views/dq/inspectTask/DqInspectTaskList.vue
@@ -10,9 +10,9 @@
-
+
- 措施责任
+ 措施责任领导
-
+
- 措施责任
+ 措施责任部门
@@ -292,10 +292,10 @@
confirm: handleDelete.bind(null, record),
},
},
- {
- label: '审批进度',
- onClick: handlePreviewPic.bind(null, record),
- },
+ // {
+ // label: '审批进度',
+ // onClick: handlePreviewPic.bind(null, record),
+ // },
{
label: '查询督办流程',
onClick: handleQueryProcess.bind(null, record),