Przeglądaj źródła

更新我的推荐询价列表的时间展示方法

hejq 8 lat temu
rodzic
commit
d7968b9bb2
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      src/main/webapp/resources/js/index/app.js

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

@@ -24389,7 +24389,7 @@ define(['toaster', 'charts', 'ngTable', 'common/services', 'common/directives',
         // 是否已过期
         $scope.isOverDue = function (date) {
             if (date) {
-                var timestamp = new Date().getTime();
+                var timestamp = new Date().getTime() + 60000;
                 if (date > timestamp) {
                     return false;
                 } else {