删除前端无用log

This commit is contained in:
CaIon 2024-01-08 11:24:30 +08:00
parent f3124e7252
commit 33b93e1e9a
3 changed files with 3 additions and 3 deletions

View File

@ -287,7 +287,7 @@ const LogsTable = () => {
// data.key = '' + data.id
setLogs(logs);
setLogCount(logs.length + ITEMS_PER_PAGE);
console.log(logCount);
// console.log(logCount);
}
const loadLogs = async (startIdx) => {

View File

@ -307,7 +307,7 @@ const LogsTable = () => {
// data.key = '' + data.id
setLogs(logs);
setLogCount(logs.length + ITEMS_PER_PAGE);
console.log(logCount);
// console.log(logCount);
}
const loadLogs = async (startIdx) => {

View File

@ -131,7 +131,7 @@ const TopUp = () => {
}, []);
const renderAmount = () => {
console.log(amount);
// console.log(amount);
return amount + '元';
}