style: rename some element and class

This commit is contained in:
Wzp-2008 2023-12-03 17:17:25 +08:00
parent 8dbb0c862e
commit b24103ea7f

View File

@ -110,7 +110,7 @@
</el-table>
<!-- 分页组件 -->
<el-pagination
@current-change="HandleCurrentChange"
@current-change="handlerPageChange"
:current-page="currentPage"
:page-sizes="[20]"
:page-size="20"
@ -284,7 +284,7 @@ const parserByteSize = (byte: number): string => {
return (byte / 1024 / 1024 / 1024 / 1024).toFixed(2) + "TB";
}
//
const HandleCurrentChange = (val: number) => {
const handlerPageChange = (val: number) => {
currentPage.value = val;
showAllFiles();
};