Commit a81cc75f authored by renjintao's avatar renjintao

index detail time

parent ff7f46f4
......@@ -30,14 +30,14 @@
<Col :span="8">
<FormItem label>
<span style="float:left">计划起止日期:&nbsp;</span>
<DateRange :timeValue="timeValuePlan">
<DateRange v-model="timeValuePlan">
</DateRange>
</FormItem>
</Col>
<Col :span="8">
<FormItem label>
<span style="float:left">实际起止日期:&nbsp;</span>
<DateRange :timeValue="timeValue"></DateRange>
<DateRange v-model="timeValue"></DateRange>
</FormItem>
</Col>
</Row>
......
......@@ -184,7 +184,7 @@ export default {
render: (h, params) => {
return h('DateRange', {
props: {
timeValue: {
value: {
startDate: params.row.plansToStartDate,
endDate: params.row.plansToEndTime,
}
......@@ -201,7 +201,7 @@ export default {
render: (h, params) => {
return h('DateRange', {
props: {
timeValue: {
value: {
startDate: params.row.startDate,
endDate: params.row.endDate,
}
......
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