|
@@ -192,14 +192,14 @@ export default {
|
|
|
// 初次加载当月数据(列表、图)
|
|
|
getThisMonthData() {
|
|
|
this.$nextTick(() => {
|
|
|
- let nowDate = new Date()
|
|
|
- let date = {
|
|
|
- year: nowDate.getFullYear(),
|
|
|
- month: nowDate.getMonth() + 1
|
|
|
- }
|
|
|
- if (date.month >= 1 && date.month <= 9) {
|
|
|
- date.month = '0' + date.month
|
|
|
- }
|
|
|
+ // let nowDate = new Date()
|
|
|
+ // let date = {
|
|
|
+ // year: nowDate.getFullYear(),
|
|
|
+ // month: nowDate.getMonth() + 1
|
|
|
+ // }
|
|
|
+ // if (date.month >= 1 && date.month <= 9) {
|
|
|
+ // date.month = '0' + date.month
|
|
|
+ // }
|
|
|
//this.defaultMonth = date.year + '-' + date.month
|
|
|
|
|
|
//this.queryParam.startYearMonth = this.defaultMonth
|