X垃圾嫌疑用户 - 修复分页功能

This commit is contained in:
2025-09-29 14:46:28 +08:00
parent 17869f42b5
commit 840b9f217b

View File

@@ -237,6 +237,14 @@ const confirmExport2Excel = async () => {
});
}
};
const handleSizeChange = (val) => {
formData.pageSize = val;
getData();
};
const handleCurrentChange = (val) => {
formData.pageNo = val;
getData();
};
</script>
<style lang="less" scoped>