|
@@ -45,10 +45,9 @@
|
|
|
</el-select>
|
|
|
</div>
|
|
|
<div class="station">
|
|
|
- 时间
|
|
|
+ 时间:
|
|
|
<div class="">
|
|
|
<el-date-picker
|
|
|
- v-if="tabIndex == 0"
|
|
|
size="mini"
|
|
|
v-model="pickerTimer"
|
|
|
type="date"
|
|
@@ -58,7 +57,7 @@
|
|
|
@change="historyTimer = pickerTimer"
|
|
|
>
|
|
|
</el-date-picker>
|
|
|
- <el-date-picker
|
|
|
+ <!-- <el-date-picker v-if="tabIndex == 0"
|
|
|
v-if="tabIndex == 1"
|
|
|
size="mini"
|
|
|
v-model="pickerTimer"
|
|
@@ -77,7 +76,7 @@
|
|
|
placeholder="选择年份"
|
|
|
popper-class="date-select"
|
|
|
>
|
|
|
- </el-date-picker>
|
|
|
+ </el-date-picker> -->
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="but">
|
|
@@ -156,6 +155,7 @@
|
|
|
:prop="item.code"
|
|
|
:label="item.title"
|
|
|
align="center"
|
|
|
+ show-overflow-tooltip
|
|
|
>
|
|
|
<template #header="scope">
|
|
|
<div>
|
|
@@ -330,14 +330,14 @@ export default {
|
|
|
// 切换tab
|
|
|
tabSelect(index) {
|
|
|
this.tabIndex = index;
|
|
|
- if (this.tabIndex == 0) {
|
|
|
- this.pickerTimer = dayjs().format("YYYY-MM-DD");
|
|
|
- } else if (this.tabIndex == 1) {
|
|
|
- this.pickerTimer = dayjs().format("YYYY-MM");
|
|
|
- } else if (this.tabIndex == 2) {
|
|
|
- this.pickerTimer = dayjs().format("YYYY");
|
|
|
- }
|
|
|
- this.historyTimer = dayjs().format("YYYY-MM-DD");
|
|
|
+ // if (this.tabIndex == 0) {
|
|
|
+ // this.pickerTimer = dayjs().format("YYYY-MM-DD");
|
|
|
+ // } else if (this.tabIndex == 1) {
|
|
|
+ // this.pickerTimer = dayjs().format("YYYY-MM");
|
|
|
+ // } else if (this.tabIndex == 2) {
|
|
|
+ // this.pickerTimer = dayjs().format("YYYY");
|
|
|
+ // }
|
|
|
+ // this.historyTimer = dayjs().format("YYYY-MM-DD");
|
|
|
this.page.currentPage = 1;
|
|
|
this.seachData();
|
|
|
},
|