yxk-20260625-巡视整改提升工作台账:
问题清单列表:父节点、是否根节点等无关信息去掉 问题责任领导、问题责任部门的选人选部门组件需要替换 任务清单:去掉操作栏的审批进度
This commit is contained in:
@@ -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);
|
||||
@@ -94,17 +102,17 @@
|
||||
const NODE_TYPE_SPECIFIC = 'specific';
|
||||
const formData = reactive<Record<string, any>>({
|
||||
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<any>({ xs: { span: 24 }, sm: { span: 5 } });
|
||||
@@ -149,7 +157,7 @@
|
||||
return props.formDisabled;
|
||||
});
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 新增
|
||||
*/
|
||||
|
||||
@@ -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),
|
||||
|
||||
Reference in New Issue
Block a user