|
@@ -48,6 +48,7 @@ var vm = new Vue({
|
|
|
dValue: '',
|
|
|
pShow: false,
|
|
|
curDate: '',
|
|
|
+ maxTime: '',
|
|
|
points: [],
|
|
|
years: '',
|
|
|
months: '',
|
|
@@ -70,6 +71,7 @@ var vm = new Vue({
|
|
|
this.months = parseInt(new Date().getMonth() + 1)
|
|
|
this.dValue = this.years + '年' + this.months + '月'
|
|
|
this.curDate = new Date()
|
|
|
+ this.maxTime = new Date(this.years, this.months - 1)
|
|
|
this.subPoint()
|
|
|
this.onLoad()
|
|
|
},
|
|
@@ -110,9 +112,7 @@ var vm = new Vue({
|
|
|
if (this.listInfo.pageNum === 1) {
|
|
|
if (r.data.total || r.data.total === 0) {
|
|
|
this.listInfo.total = r.data.total
|
|
|
- this.showUpTip = false
|
|
|
} else {
|
|
|
- this.showUpTip = true
|
|
|
this.listInfo.finished = true
|
|
|
}
|
|
|
}
|