yxk-20260625-巡视整改提升工作台账:

问题清单列表:父节点、是否根节点等无关信息去掉
问题责任领导、问题责任部门的选人选部门组件需要替换
任务清单:去掉操作栏的审批进度
This commit is contained in:
ye1023
2026-06-25 10:24:45 +08:00
parent 4c4de1e288
commit dbd0dad9da
3 changed files with 41 additions and 32 deletions
@@ -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: '问题编码/分类字典值',
@@ -55,12 +55,18 @@
</a-col>
<a-col v-if="isSpecificNode" :span="24">
<a-form-item label="问题责任领导" v-bind="validateInfos.questionResLeader" id="DqInspectProblemForm-questionResLeader" name="questionResLeader">
<j-select-dept v-model:value="formData.questionResLeader" :multiple="true" checkStrictly allow-clear />
<SzDeptUserModal
v-model:value="formData.questionResLeader"
placeholder="请选择问题责任领导"
/>
<!-- <j-select-dept v-model:value="formData.questionResLeader" :multiple="true" checkStrictly allow-clear />-->
</a-form-item>
</a-col>
<a-col v-if="isSpecificNode" :span="24">
<a-form-item label="问题责任部门" v-bind="validateInfos.questionResDept" id="DqInspectProblemForm-questionResDept" name="questionResDept">
<j-select-user v-model:value="formData.questionResDept" allow-clear />
<SzSelectDept v-model:value="formData.questionResDept" :multiple="true" checkStrictly allow-clear />
<!-- <j-select-user v-model:value="formData.questionResDept" allow-clear />-->
</a-form-item>
</a-col>
</a-row>
@@ -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);
@@ -10,9 +10,9 @@
<JInput v-model:value="queryParam.improveMeasure" />
</a-form-item>
</a-col>
<a-col :lg="6">
<a-col :lg="7">
<a-form-item name="measureResLeader">
<template #label><span title="措施责任领导">措施责任</span></template>
<template #label><span title="措施责任领导">措施责任领导</span></template>
<SzDeptUserModal
v-model:value="queryParam.measureResLeader"
placeholder="请选择措施责任领导"
@@ -20,9 +20,9 @@
</a-form-item>
</a-col>
<template v-if="toggleSearchStatus">
<a-col :lg="6">
<a-col :lg="7">
<a-form-item name="measureResDept">
<template #label><span title="措施责任部门">措施责任</span></template>
<template #label><span title="措施责任部门">措施责任部门</span></template>
<SzSelectDept v-model:value="queryParam.measureResDept" :multiple="true" checkStrictly allow-clear />
</a-form-item>
</a-col>
@@ -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),