|
@@ -26,6 +26,7 @@
|
|
|
<el-form-item label="选择时间:">
|
|
|
<el-date-picker
|
|
|
v-model="timedate"
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
type="daterange"
|
|
|
range-separator="至"
|
|
|
start-placeholder="开始日期"
|
|
@@ -452,7 +453,7 @@ export default {
|
|
|
tableSwitch:false,
|
|
|
value: '',
|
|
|
value2: '',
|
|
|
- timedate: ['Fri Jan 01 2021 00:00:00 GMT+0800','Mon Jan 04 2021 00:00:00 GMT+0800'],
|
|
|
+ timedate: [],
|
|
|
multipleSelection:[],
|
|
|
multipleSelection1:[],
|
|
|
multipleSelection2:[],
|
|
@@ -475,6 +476,8 @@ export default {
|
|
|
fdcName2:'',
|
|
|
sortInOrde2:[],
|
|
|
getTableData:[],
|
|
|
+ updateTime:'',
|
|
|
+ updateTime1:'',
|
|
|
}
|
|
|
},
|
|
|
filters: {
|
|
@@ -561,8 +564,26 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
FiveLossTableData1(){
|
|
|
- this.beginDate = this.timedate[0];
|
|
|
- this.endDate = this.timedate[1];
|
|
|
+ const nowDate = new Date();
|
|
|
+ const date = {
|
|
|
+ year: nowDate.getFullYear(),
|
|
|
+ month: nowDate.getMonth() + 1,
|
|
|
+ date: nowDate.getDate(),
|
|
|
+ }
|
|
|
+ const newmonth = date.month>10?date.month:'0'+date.month
|
|
|
+ const day = date.date>10?date.date:'0'+date.date
|
|
|
+ const day1 = date.date>10?date.date - 1:'0'+date.date
|
|
|
+ this.updateTime = date.year + '-' + newmonth + '-' + day
|
|
|
+ this.updateTime1 = date.year + '-' + newmonth + '-' + day1
|
|
|
+ if(this.timedate == ''){
|
|
|
+ this.timedate[0] = this.updateTime1;
|
|
|
+ this.timedate[1] = this.updateTime;
|
|
|
+ this.beginDate = this.timedate[0];
|
|
|
+ this.endDate = this.timedate[1];
|
|
|
+ }else{
|
|
|
+ this.beginDate = this.timedate[0];
|
|
|
+ this.endDate = this.timedate[1];
|
|
|
+ }
|
|
|
var interValueLineData = new URLSearchParams();
|
|
|
interValueLineData.append('pageNum',this.currentPage2);
|
|
|
interValueLineData.append('pageSize',this.pagesize);
|
|
@@ -573,13 +594,26 @@ export default {
|
|
|
interValueLineData.append('endDate',this.endDate);
|
|
|
interValueLineData.append('wpId',this.value);
|
|
|
this.$http.post('/contrast/benchmarkZjWtList',interValueLineData).then((res) => {
|
|
|
+ console.log(res)
|
|
|
this.fdcLineData = res.data.data;
|
|
|
})
|
|
|
this.FiveLossTableData2();
|
|
|
},
|
|
|
FiveLossTableData2(){
|
|
|
- this.beginDate = this.timedate[0];
|
|
|
- this.endDate = this.timedate[1];
|
|
|
+ // const newmonth = date.month>10?date.month:'0'+date.month
|
|
|
+ // const day = date.date>10?date.date:'0'+date.date
|
|
|
+ // const day1 = date.date>10?date.date - 1:'0'+date.date
|
|
|
+ // this.updateTime = date.year + '-' + newmonth + '-' + day
|
|
|
+ // this.updateTime1 = date.year + '-' + newmonth + '-' + day1
|
|
|
+ if(this.timedate == ''){
|
|
|
+ this.timedate[0] = this.updateTime1;
|
|
|
+ this.timedate[1] = this.updateTime;
|
|
|
+ this.beginDate = this.timedate[0];
|
|
|
+ this.endDate = this.timedate[1];
|
|
|
+ }else{
|
|
|
+ this.beginDate = this.timedate[0];
|
|
|
+ this.endDate = this.timedate[1];
|
|
|
+ }
|
|
|
if(this.value2.length > 0){
|
|
|
this.tableSwitch = true;
|
|
|
}else{
|