Commit 612ccb36 authored by youjie's avatar youjie

no message

parent 2e1a2500
...@@ -712,10 +712,11 @@ ...@@ -712,10 +712,11 @@
clickActive(item) { clickActive(item) {
this.Month = item.Id this.Month = item.Id
if (item.Id == 1) { if (item.Id == 1) {
this.msg.Month = this.Year + '-' + (this.MonthTime > 10 ? this.MonthTime : '0' + this.MonthTime) this.msg.Month = this.Year + '-' + (this.MonthTime >= 10 ? this.MonthTime : '0' + this.MonthTime)
} else { } else {
this.msg.Month = this.Year + '-' + (this.LastMonthTime > 10 ? this.LastMonthTime : '0' + this.LastMonthTime) this.msg.Month = this.Year + '-' + (this.LastMonthTime >= 10 ? this.LastMonthTime : '0' + this.LastMonthTime)
} }
return
this.getList() this.getList()
}, },
// 获取提成列表数据 // 获取提成列表数据
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment