ソースを参照

购物金

master
huangjiajun 2ヶ月前
コミット
32b59f7a7d
1個のファイルの変更3行の追加1行の削除
  1. +3
    -1
      rule/service_award_dividend/return.go

+ 3
- 1
rule/service_award_dividend/return.go ファイルの表示

@@ -43,14 +43,16 @@ func GetCycle(eg *xorm.Engine) map[string]string {
last := postion - 1
next := postion
types := "now"
types1 := "last"
if postion-1 < 0 { //找出上一周期的时间
last = len(ex) - 1
} else if last == len(ex)-1 { //最后一个了
next = 0
types = "next"
types1 = "now"
}

lastDate := GetDate(now, ex[last], "last")
lastDate := GetDate(now, ex[last], types1)
res["last"] = time.Unix(lastDate, 0).Format("20060102")
nowDate := GetDate(now, ex[next], types)
res["now"] = time.Unix(nowDate, 0).Format("20060102")


読み込み中…
キャンセル
保存