2016-12-27 12:00:45 +08:00
|
|
|
<style>
|
|
|
|
body{
|
|
|
|
height: auto !important;
|
|
|
|
}
|
|
|
|
</style>
|
2016-12-12 20:34:28 +08:00
|
|
|
<template>
|
2016-12-23 12:24:48 +08:00
|
|
|
<row>
|
|
|
|
<i-col span="12">
|
|
|
|
<date-picker type="date" placeholder="选择日期" style="width: 200px"></date-picker>
|
|
|
|
</i-col>
|
|
|
|
<i-col span="12">
|
|
|
|
<date-picker type="daterange" placement="bottom-end" placeholder="选择日期" style="width: 200px"></date-picker>
|
|
|
|
</i-col>
|
2016-12-26 14:50:39 +08:00
|
|
|
<i-col span="12">
|
2016-12-27 12:00:45 +08:00
|
|
|
<time-picker :value="value" placeholder="选择时间" format="HH:mm:ss" :hide-disabled-options="false" :disabled-hours="[1,2]" style="width: 168px"></time-picker>
|
2016-12-26 14:50:39 +08:00
|
|
|
</i-col>
|
2016-12-23 12:24:48 +08:00
|
|
|
</row>
|
2016-12-12 20:34:28 +08:00
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
2016-12-27 12:00:45 +08:00
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
value: '2016-12-12 03:03:03'
|
|
|
|
}
|
|
|
|
}
|
2016-12-12 20:34:28 +08:00
|
|
|
}
|
2016-12-22 15:08:05 +08:00
|
|
|
</script>
|