yxk-20260625-巡视整改提升工作台账:
问题清单列表:父节点、是否根节点等无关信息去掉 问题责任领导、问题责任部门的选人选部门组件需要替换 任务清单:去掉操作栏的审批进度
This commit is contained in:
@@ -8,7 +8,8 @@ export const columns: BasicColumn[] = [
|
|||||||
{
|
{
|
||||||
title: '问题名称',
|
title: '问题名称',
|
||||||
align: 'left',
|
align: 'left',
|
||||||
dataIndex: 'problemName'
|
dataIndex: 'problemName',
|
||||||
|
width: '320px',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '类型',
|
title: '类型',
|
||||||
@@ -43,16 +44,16 @@ export const columns: BasicColumn[] = [
|
|||||||
align: 'center',
|
align: 'center',
|
||||||
dataIndex: 'secretLevel_dictText'
|
dataIndex: 'secretLevel_dictText'
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
title: '父节点ID',
|
// title: '父节点ID',
|
||||||
align: 'center',
|
// align: 'center',
|
||||||
dataIndex: 'pid'
|
// dataIndex: 'pid'
|
||||||
},
|
// },
|
||||||
{
|
// {
|
||||||
title: '是否有子节点',
|
// title: '是否有子节点',
|
||||||
align: 'center',
|
// align: 'center',
|
||||||
dataIndex: 'hasChild'
|
// dataIndex: 'hasChild'
|
||||||
},
|
// },
|
||||||
|
|
||||||
{
|
{
|
||||||
title: '问题编码/分类字典值',
|
title: '问题编码/分类字典值',
|
||||||
|
|||||||
@@ -55,12 +55,18 @@
|
|||||||
</a-col>
|
</a-col>
|
||||||
<a-col v-if="isSpecificNode" :span="24">
|
<a-col v-if="isSpecificNode" :span="24">
|
||||||
<a-form-item label="问题责任领导" v-bind="validateInfos.questionResLeader" id="DqInspectProblemForm-questionResLeader" name="questionResLeader">
|
<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-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col v-if="isSpecificNode" :span="24">
|
<a-col v-if="isSpecificNode" :span="24">
|
||||||
<a-form-item label="问题责任部门" v-bind="validateInfos.questionResDept" id="DqInspectProblemForm-questionResDept" name="questionResDept">
|
<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-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
</a-row>
|
</a-row>
|
||||||
@@ -80,6 +86,8 @@
|
|||||||
import {loadTreeData, parentOptions, saveOrUpdateDict} from '../DqInspectProblem.api';
|
import {loadTreeData, parentOptions, saveOrUpdateDict} from '../DqInspectProblem.api';
|
||||||
import { Form } from 'ant-design-vue';
|
import { Form } from 'ant-design-vue';
|
||||||
import JFormContainer from '/@/components/Form/src/container/JFormContainer.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 useForm = Form.useForm;
|
||||||
const formRef = ref();
|
const formRef = ref();
|
||||||
const isUpdate = ref(true);
|
const isUpdate = ref(true);
|
||||||
|
|||||||
@@ -10,9 +10,9 @@
|
|||||||
<JInput v-model:value="queryParam.improveMeasure" />
|
<JInput v-model:value="queryParam.improveMeasure" />
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :lg="6">
|
<a-col :lg="7">
|
||||||
<a-form-item name="measureResLeader">
|
<a-form-item name="measureResLeader">
|
||||||
<template #label><span title="措施责任领导">措施责任</span></template>
|
<template #label><span title="措施责任领导">措施责任领导</span></template>
|
||||||
<SzDeptUserModal
|
<SzDeptUserModal
|
||||||
v-model:value="queryParam.measureResLeader"
|
v-model:value="queryParam.measureResLeader"
|
||||||
placeholder="请选择措施责任领导"
|
placeholder="请选择措施责任领导"
|
||||||
@@ -20,9 +20,9 @@
|
|||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<template v-if="toggleSearchStatus">
|
<template v-if="toggleSearchStatus">
|
||||||
<a-col :lg="6">
|
<a-col :lg="7">
|
||||||
<a-form-item name="measureResDept">
|
<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 />
|
<SzSelectDept v-model:value="queryParam.measureResDept" :multiple="true" checkStrictly allow-clear />
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
@@ -292,10 +292,10 @@
|
|||||||
confirm: handleDelete.bind(null, record),
|
confirm: handleDelete.bind(null, record),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
label: '审批进度',
|
// label: '审批进度',
|
||||||
onClick: handlePreviewPic.bind(null, record),
|
// onClick: handlePreviewPic.bind(null, record),
|
||||||
},
|
// },
|
||||||
{
|
{
|
||||||
label: '查询督办流程',
|
label: '查询督办流程',
|
||||||
onClick: handleQueryProcess.bind(null, record),
|
onClick: handleQueryProcess.bind(null, record),
|
||||||
|
|||||||
Reference in New Issue
Block a user