Skip to content

Commit

Permalink
Merge pull request eee555#24 from putianyi889/patch-21
Browse files Browse the repository at this point in the history
bug fix
  • Loading branch information
eee555 authored May 1, 2024
2 parents b243130 + 3f268f8 commit edfed9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions front_end/src/views/VideoView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,8 @@ const handleCurrentChange = (val: number) => {
}
const offsetIndex = (index: number) => {
return state.CurrentPage > 1 ? index + 1 + (state.CurrentPage - 1) * state.PageSize :
[..."🥇🥈🥉🏅🏅🏅🏅🏅🏅🏅", 11, 12, 13, 14, 15, 16, 17, 18, 19, 20][index];
return (state.CurrentPage > 1 || index > 9) ? index + 1 + (state.CurrentPage - 1) * state.PageSize :
[..."🥇🥈🥉🏅🏅🏅🏅🏅🏅🏅"][index];
}
// 根据配置,刷新当前页面的录像表
Expand Down

0 comments on commit edfed9a

Please sign in to comment.