Commit f16103cc authored by renjintao's avatar renjintao

detail

parent 8f7fdcf4
......@@ -29,14 +29,14 @@
</Col>
<Col :span="8">
<FormItem label>
<span style="float:left">计划起止日期:&nbsp;</span>
<span style="float:left">计划日期:&nbsp;</span>
<DateRange v-model="timeValuePlan" mode='d'>
</DateRange>
</FormItem>
</Col>
<Col :span="8">
<FormItem label>
<span style="float:left">实际起止日期:&nbsp;</span>
<span style="float:left">实际日期:&nbsp;</span>
<DateRange v-model="timeValue"></DateRange>
</FormItem>
</Col>
......
......@@ -167,36 +167,30 @@ export default {
},
{
key: "startDate",
title: '计划起止日期',
title: '实际日期',
align: "center",
high: true,
width: 280,
render: (h, params) => {
return h('DateRange', {
props: {
value: {
startDate: params.row.plansToStartDate,
endDate: params.row.plansToEndTime,
},
mode: 'd'
value: params.row,
}
})
}
},
{
key: "startDate",
title: '实际起止日期',
title: '计划日期',
align: "center",
high: true,
width: 280,
render: (h, params) => {
return h('DateRange', {
props: {
value: {
startDate: params.row.startDate,
endDate: params.row.endDate,
},
mode: 'd'
value: params.row,
start: "plansToStartDate",
start: "plansToEndTime",
}
})
}
......
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