Commit 79fc2568 authored by “lixuyan”'s avatar “lixuyan”

修改计划开始时间

parent 8bff6e51
......@@ -156,11 +156,11 @@ export default {
'children': [
{
'items': [
{
'fieldName': 'extStandPositionId',
'operator': 'EQ',
'value': this.searchFormData.postion
},
// {
// 'fieldName': 'extStandPositionId',
// 'operator': 'EQ',
// 'value': this.searchFormData.postion
// },
{
'fieldName': 'isValid',
'operator': 'EQ',
......
......@@ -199,8 +199,16 @@ export default {
{ title: '工时', key: 'extProcessPlan.workHour', align: 'left' },
{ title: '计划员', key: 'planner.name', align: 'left' },
{ title: '工艺员', key: 'extProcessPlan.noteName', align: 'left' },
{ title: '计划开始', key: 'scheduledStart', align: 'left' },
{ title: '计划结束', key: 'scheduledEnd', align: 'left' }
{ title: '计划开始', key: 'scheduledStart', align: 'left',
formatter(row, column) {
return row.scheduledStart ? row.scheduledStart.substr(0, 10) : ''
}
},
{ title: '计划结束', key: 'scheduledEnd', align: 'left',
formatter(row, column) {
return row.scheduledEnd ? row.scheduledEnd.substr(0, 10) : ''
}
}
],
tableData: [],
pagination: {
......
......@@ -256,8 +256,15 @@ export default {
{ title: '工时', key: 'extProcessPlan.workHour', align: 'left' },
{ title: '计划员', key: 'planner.name', align: 'left' },
{ title: '工艺员', key: 'extProcessPlan.noteName', align: 'left' },
{ title: '计划开始', key: 'scheduledStart', align: 'left' },
{ title: '计划结束', key: 'scheduledEnd', align: 'left' }
{ title: '计划开始', key: 'scheduledStart', align: 'left',
formatter(row, column) {
return row.scheduledStart ? row.scheduledStart.substr(0, 10) : ''
} },
{ title: '计划结束', key: 'scheduledEnd', align: 'left',
formatter(row, column) {
return row.scheduledEnd ? row.scheduledEnd.substr(0, 10) : ''
}
}
],
tableData: [],
pagination: {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment