|
@@ -1,9 +1,13 @@
|
|
|
<template>
|
|
|
- <div class="picker-title" style="display: flex;align-items: center;justify-content: space-between;margin: 10px 0px;">
|
|
|
- <p style="margin:0">{{ title }}</p>
|
|
|
- <div style="width:460px;display: flex;justify-content: flex-end;">
|
|
|
- <period-date-picker :start="date[0]" :end="date[1]" size="mini" width="125px" @timeReturned="time($event)" />
|
|
|
- </div>
|
|
|
+ <div class="picker-title" style="width:100%;margin:10px 0px">
|
|
|
+ <el-row>
|
|
|
+ <el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12">
|
|
|
+ <p style="margin:0">{{ title }}</p>
|
|
|
+ </el-col>
|
|
|
+ <el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" style="display: flex;justify-content: flex-end;">
|
|
|
+ <period-date-picker :start="date[0]" :end="date[1]" size="mini" width="125px" @timeReturned="time($event)" />
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
</div>
|
|
|
</template>
|
|
|
|