Browse Source

更新发货提醒搜索默认时间最近六个月

hejq 7 years ago
parent
commit
5c3793f140
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main/webapp/resources/js/index/app.js

+ 1 - 1
src/main/webapp/resources/js/index/app.js

@@ -7141,7 +7141,7 @@ define(['toaster', 'charts', 'ngTable', 'common/services', 'common/directives',
         /* 时间筛选初始化*/
         var fromDate = new Date();
         var toDate = new Date();
-        fromDate.setMonth(fromDate.getMonth() - 1);
+        fromDate.setMonth(fromDate.getMonth() - 6);
         fromDate.setHours(0, 0, 0, 0);
         toDate.setHours(23, 59, 59, 999);
         $scope.condition.dateFrom = fromDate;