12345678910111213141516171819202122232425262728 |
- <template>
- <div class="groupunreviewed-all">
- <div>团组未审核数据</div>
- <div class="rvsreport-haed">
- <el-date-picker @change="datechange" style="width:350px" v-model="value2" type="daterange" align="left"
- unlink-panels range-separator="至" start-placeholder="开始日期" end-placeholder="结束日期"
- :picker-options="pickerOptions">
- </el-date-picker>
- <el-button @click="Skeclick" type="primary">生 成</el-button>
- </div>
- </div>
- </template>
- <script>
- export default {
-
- }
- </script>
- <style>
- .groupunreviewed-all{
- background-color: #fff;
- padding: 10px;
- box-shadow: 0 0 5px #0005;
- border-radius: 10px;
- height: 100%;
- min-height: 840px;
- min-width: 1400px;
- }
- </style>
|