Commit ad184da8 by yangfangfang

消息提醒

parent c455e0c3
...@@ -2049,7 +2049,7 @@ ...@@ -2049,7 +2049,7 @@
$scope.list = data; $scope.list = data;
$scope.noreadList = $scope.list.filter(function(item){ $scope.noreadList = $scope.list.filter(function(item){
return item.isRead === false; return item.isRead != true;
}) })
}); });
...@@ -2072,7 +2072,7 @@ ...@@ -2072,7 +2072,7 @@
$scope.isDetail = true; $scope.isDetail = true;
$scope.noreadList = $scope.list.filter(function(item){ $scope.noreadList = $scope.list.filter(function(item){
return item.isRead === false; return item.isRead != true;
}) })
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment