搜索模块的起始日期貌似不生效
我也踩过这个坑( 1 )
FormData
详细描述
截图
代码
—
//search搜索按钮
$scope.search=function () {
$scope.newStartAt=Date.parse($scope.date);//时间戳转换
$scope.newEndAt=Date.parse($scope.date1)+86399999;//加一天减一毫秒,防止起始同一天无数据
console.log($scope.newStartAt);
console.log($scope.newEndAt);
$state.go('frameState.articleList',
{
startAt: $scope.newStartAt||undefined,
endAt: $scope.newEndAt||undefined,
type: $scope.currentType.type,
status: $scope.currentStatus.status,
page: 1
},{reload: true});
};
编辑于2024-11-16