yxk-20260420-党委会添加密级字段
This commit is contained in:
@@ -8,7 +8,12 @@ export const columns: BasicColumn[] = [
|
||||
{
|
||||
title: '年份',
|
||||
align:"center",
|
||||
dataIndex: 'year'
|
||||
dataIndex: 'year',
|
||||
},
|
||||
{
|
||||
title: '密级',
|
||||
align:"center",
|
||||
dataIndex: 'secretLevel_dictText',
|
||||
},
|
||||
{
|
||||
title: '序号',
|
||||
@@ -71,7 +76,7 @@ export const columns: BasicColumn[] = [
|
||||
{
|
||||
title: '紧急程度',
|
||||
align:"center",
|
||||
dataIndex: 'urgencyLevel'
|
||||
dataIndex: 'urgencyLevel',
|
||||
},
|
||||
{
|
||||
title: '是否需要所办领导审批',
|
||||
|
||||
@@ -9,6 +9,11 @@
|
||||
<a-input v-model:value="formData.year" placeholder="请输入年份" allow-clear ></a-input>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="12">
|
||||
<a-form-item label="密级" v-bind="validateInfos.secretLevel" id="BgPartymatterForm-secretLevel" name="secretLevel">
|
||||
<a-input v-model:value="formData.secretLevel" placeholder="请输入密级" allow-clear ></a-input>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="12">
|
||||
<a-form-item label="序号" v-bind="validateInfos.number" id="BgPartymatterForm-number" name="number">
|
||||
<a-input v-model:value="formData.number" placeholder="请输入序号" allow-clear ></a-input>
|
||||
@@ -100,7 +105,7 @@
|
||||
import { saveOrUpdate } from '../BgPartymatter.api';
|
||||
import { Form } from 'ant-design-vue';
|
||||
import JFormContainer from '/@/components/Form/src/container/JFormContainer.vue';
|
||||
|
||||
|
||||
const props = defineProps({
|
||||
formDisabled: { type: Boolean, default: false },
|
||||
formData: { type: Object, default: () => ({}) },
|
||||
@@ -110,22 +115,22 @@
|
||||
const emit = defineEmits(['register', 'ok']);
|
||||
const formData = reactive<Record<string, any>>({
|
||||
id: '',
|
||||
year: '',
|
||||
number: '',
|
||||
matterTime: '',
|
||||
title: '',
|
||||
content: '',
|
||||
matterCode: '',
|
||||
responDeptid: '',
|
||||
actualExect: '',
|
||||
bpmStatus: '',
|
||||
superviseCount: '',
|
||||
deadline: '',
|
||||
urgencyLevel: '',
|
||||
isNeedAppro: '',
|
||||
isNeedSuoleader: '',
|
||||
suoleaderid: '',
|
||||
delFlag: '',
|
||||
year: '',
|
||||
number: '',
|
||||
matterTime: '',
|
||||
title: '',
|
||||
content: '',
|
||||
matterCode: '',
|
||||
responDeptid: '',
|
||||
actualExect: '',
|
||||
bpmStatus: '',
|
||||
superviseCount: '',
|
||||
deadline: '',
|
||||
urgencyLevel: '',
|
||||
isNeedAppro: '',
|
||||
isNeedSuoleader: '',
|
||||
suoleaderid: '',
|
||||
delFlag: '',
|
||||
});
|
||||
const { createMessage } = useMessage();
|
||||
const labelCol = ref<any>({ xs: { span: 24 }, sm: { span: 5 } });
|
||||
@@ -170,7 +175,7 @@
|
||||
}
|
||||
return false
|
||||
});
|
||||
|
||||
|
||||
/**
|
||||
* 新增
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user