Просмотр исходного кода

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

hejq 8 лет назад
Родитель
Сommit
d7968b9bb2
1 измененных файлов с 1 добавлено и 1 удалено
  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) {
         $scope.isOverDue = function (date) {
             if (date) {
             if (date) {
-                var timestamp = new Date().getTime();
+                var timestamp = new Date().getTime() + 60000;
                 if (date > timestamp) {
                 if (date > timestamp) {
                     return false;
                     return false;
                 } else {
                 } else {