作者 唐旭辉

修正 时间格式化错误

@@ -443,7 +443,7 @@ func (c *OrderInfoController) PageListOrderReal() { @@ -443,7 +443,7 @@ func (c *OrderInfoController) PageListOrderReal() {
443 c.ResponseError(errors.New("UpdateTimeBegin 时间格式错误")) 443 c.ResponseError(errors.New("UpdateTimeBegin 时间格式错误"))
444 return 444 return
445 } 445 }
446 - updateTimeBegin = t.Format("2006-01-02 15:04:05+07") 446 + updateTimeBegin = t.Format("2006-01-02 15:04:05-07")
447 } 447 }
448 } 448 }
449 if len(param.UpdateTime) > 1 { 449 if len(param.UpdateTime) > 1 {
@@ -454,8 +454,8 @@ func (c *OrderInfoController) PageListOrderReal() { @@ -454,8 +454,8 @@ func (c *OrderInfoController) PageListOrderReal() {
454 return 454 return
455 } 455 }
456 //设定时间边界 456 //设定时间边界
457 - t.Add(86399 * time.Second)  
458 - updateTimeEnd = t.Format("2006-01-02 15:04:05+07") 457 + t = t.Add(86399 * time.Second)
  458 + updateTimeEnd = t.Format("2006-01-02 15:04:05-07")
459 } 459 }
460 } 460 }
461 companyId := c.GetUserCompany() 461 companyId := c.GetUserCompany()