yxk-20260708
实际完成时间,修改为实际完成日期
This commit is contained in:
@@ -183,7 +183,7 @@ export const bgPartymatterFeedbackColumns: BasicColumn[] = [
|
|||||||
dataIndex: 'actualExect'
|
dataIndex: 'actualExect'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '实际完成时间',
|
title: '实际完成日期',
|
||||||
align:"center",
|
align:"center",
|
||||||
dataIndex: 'actualTime',
|
dataIndex: 'actualTime',
|
||||||
width: 155,
|
width: 155,
|
||||||
|
|||||||
@@ -54,8 +54,8 @@
|
|||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :span="12">
|
<a-col :span="12">
|
||||||
<a-form-item label="实际完成时间" name="actualTime">
|
<a-form-item label="实际完成日期" name="actualTime">
|
||||||
<a-date-picker v-model:value="formData.actualTime" value-format="YYYY-MM-DD" style="width: 100%" allow-clear />
|
<a-date-picker v-model:value="formData.actualTime" value-format="YYYY-MM-DD" placeholder="请选择实际完成日期" style="width: 100%" allow-clear />
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :span="24">
|
<a-col :span="24">
|
||||||
|
|||||||
@@ -343,7 +343,7 @@
|
|||||||
customRender: ({ text }) => (!text ? '' : String(text).slice(0, 10)),
|
customRender: ({ text }) => (!text ? '' : String(text).slice(0, 10)),
|
||||||
},
|
},
|
||||||
{ title: '实际执行情况', dataIndex: 'actualExect', align: 'center', width: 280 },
|
{ title: '实际执行情况', dataIndex: 'actualExect', align: 'center', width: 280 },
|
||||||
{ title: '实际完成时间', dataIndex: 'actualTime', align: 'center', width: 180, customRender: ({ text }) => (!text ? '' : String(text).slice(0, 10)) },
|
{ title: '实际完成日期', dataIndex: 'actualTime', align: 'center', width: 180, customRender: ({ text }) => (!text ? '' : String(text).slice(0, 10)) },
|
||||||
{ title: '完成状态', dataIndex: 'bpmStatus', align: 'center', width: 120, customRender: ({ record }) => record?.bpmStatus_dictText || record?.bpmStatus },
|
{ title: '完成状态', dataIndex: 'bpmStatus', align: 'center', width: 120, customRender: ({ record }) => record?.bpmStatus_dictText || record?.bpmStatus },
|
||||||
{ title: '附件', dataIndex: 'id', key: 'attachments', align: 'left', width: 340 },
|
{ title: '附件', dataIndex: 'id', key: 'attachments', align: 'left', width: 340 },
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -40,8 +40,8 @@
|
|||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :span="12">
|
<a-col :span="12">
|
||||||
<a-form-item label="实际完成时间" v-bind="validateInfos.actualTime" id="BgPartymatterFeedback-actualTime" name="actualTime">
|
<a-form-item label="实际完成日期" v-bind="validateInfos.actualTime" id="BgPartymatterFeedback-actualTime" name="actualTime">
|
||||||
<a-date-picker placeholder="请选择实际完成时间" v-model:value="formData.actualTime" value-format="YYYY-MM-DD" style="width: 100%" allow-clear />
|
<a-date-picker placeholder="请选择实际完成日期" v-model:value="formData.actualTime" value-format="YYYY-MM-DD" style="width: 100%" allow-clear />
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :span="12">
|
<a-col :span="12">
|
||||||
|
|||||||
@@ -204,7 +204,7 @@ export const bgTakepulseFeedbackColumns: JVxeColumn[] = [
|
|||||||
defaultValue:'',
|
defaultValue:'',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '实际完成时间',
|
title: '实际完成日期',
|
||||||
key: 'actualTime',
|
key: 'actualTime',
|
||||||
type: JVxeTypes.date,
|
type: JVxeTypes.date,
|
||||||
width:"200px",
|
width:"200px",
|
||||||
@@ -287,7 +287,7 @@ export const superQuerySchema = {
|
|||||||
planExect: {title: '计划完成目标',order: 4,view: 'textarea', type: 'string',},
|
planExect: {title: '计划完成目标',order: 4,view: 'textarea', type: 'string',},
|
||||||
planTime: {title: '计划完成日期',order: 5,view: 'date', type: 'string',},
|
planTime: {title: '计划完成日期',order: 5,view: 'date', type: 'string',},
|
||||||
actualExect: {title: '实际执行情况',order: 6,view: 'textarea', type: 'string',},
|
actualExect: {title: '实际执行情况',order: 6,view: 'textarea', type: 'string',},
|
||||||
actualTime: {title: '实际完成时间',order: 7,view: 'date', type: 'string',},
|
actualTime: {title: '实际完成日期',order: 7,view: 'date', type: 'string',},
|
||||||
actSt: {title: '调整落实措施及执行情况',order: 8,view: 'textarea', type: 'string',},
|
actSt: {title: '调整落实措施及执行情况',order: 8,view: 'textarea', type: 'string',},
|
||||||
bpmStatus: {title: '完成状态',order: 9,view: 'text', type: 'string',},
|
bpmStatus: {title: '完成状态',order: 9,view: 'text', type: 'string',},
|
||||||
proposerConfirm: {title: '提出人确认',order: 10,view: 'text', type: 'string',},
|
proposerConfirm: {title: '提出人确认',order: 10,view: 'text', type: 'string',},
|
||||||
|
|||||||
@@ -229,7 +229,7 @@
|
|||||||
customRender: ({ text }) => (!text ? '' : String(text).slice(0, 10)),
|
customRender: ({ text }) => (!text ? '' : String(text).slice(0, 10)),
|
||||||
},
|
},
|
||||||
{ title: '实际执行情况', dataIndex: 'actualExect', align: 'left', width: 280 },
|
{ title: '实际执行情况', dataIndex: 'actualExect', align: 'left', width: 280 },
|
||||||
{ title: '实际完成时间', dataIndex: 'actualTime', align: 'center', width: 155, customRender: ({ text }) => (!text ? '' : String(text).slice(0, 10)) },
|
{ title: '实际完成日期', dataIndex: 'actualTime', align: 'center', width: 155, customRender: ({ text }) => (!text ? '' : String(text).slice(0, 10)) },
|
||||||
{ title: '调整落实措施及执行情况', dataIndex: 'actSt', align: 'left', width: 260 },
|
{ title: '调整落实措施及执行情况', dataIndex: 'actSt', align: 'left', width: 260 },
|
||||||
{
|
{
|
||||||
title: '完成状态',
|
title: '完成状态',
|
||||||
|
|||||||
@@ -27,8 +27,8 @@
|
|||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :span="12">
|
<a-col :span="12">
|
||||||
<a-form-item label="实际完成时间" name="actualTime">
|
<a-form-item label="实际完成日期" name="actualTime">
|
||||||
<a-date-picker v-model:value="formData.actualTime" value-format="YYYY-MM-DD" style="width: 100%" allow-clear />
|
<a-date-picker v-model:value="formData.actualTime" value-format="YYYY-MM-DD" placeholder="请选择实际完成日期" style="width: 100%" allow-clear />
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :span="24">
|
<a-col :span="24">
|
||||||
|
|||||||
@@ -369,7 +369,7 @@
|
|||||||
customRender: ({ text }) => (!text ? '' : String(text).slice(0, 10)),
|
customRender: ({ text }) => (!text ? '' : String(text).slice(0, 10)),
|
||||||
},
|
},
|
||||||
{ title: '实际执行情况', dataIndex: 'actualExect', align: 'left', width: 280 },
|
{ title: '实际执行情况', dataIndex: 'actualExect', align: 'left', width: 280 },
|
||||||
{ title: '实际完成时间', dataIndex: 'actualTime', align: 'center', width: 155, customRender: ({ text }) => (!text ? '' : String(text).slice(0, 10)) },
|
{ title: '实际完成日期', dataIndex: 'actualTime', align: 'center', width: 155, customRender: ({ text }) => (!text ? '' : String(text).slice(0, 10)) },
|
||||||
{ title: '调整落实措施及执行情况', dataIndex: 'actSt', align: 'left', width: 260 },
|
{ title: '调整落实措施及执行情况', dataIndex: 'actSt', align: 'left', width: 260 },
|
||||||
{ title: '完成状态', dataIndex: 'bpmStatus', align: 'center', width: 95, customRender: ({ record }) => record?.bpmStatus_dictText || record?.bpmStatus },
|
{ title: '完成状态', dataIndex: 'bpmStatus', align: 'center', width: 95, customRender: ({ record }) => record?.bpmStatus_dictText || record?.bpmStatus },
|
||||||
{ title: '附件', dataIndex: 'id', key: 'attachments', align: 'left', width: 340 },
|
{ title: '附件', dataIndex: 'id', key: 'attachments', align: 'left', width: 340 },
|
||||||
|
|||||||
Reference in New Issue
Block a user