删除所有console.log输出,优化评查结果的表格的显示,添加新的页码获取逻辑

This commit is contained in:
2025-06-02 18:55:00 +08:00
parent 820baa5b22
commit b02978508d
71 changed files with 862 additions and 572 deletions
+5 -5
View File
@@ -93,12 +93,12 @@ export function DateRangePicker({
try {
// 检查并记录showPicker是否可用
const hasShowPicker = typeof inputRef.current.showPicker === 'function';
console.log('showPicker API available:', hasShowPicker);
// console.log('showPicker API available:', hasShowPicker);
// 尝试使用showPicker API
if (hasShowPicker) {
inputRef.current.showPicker();
console.log('showPicker called successfully');
// console.log('showPicker called successfully');
}
} catch (error) {
console.error('Failed to show date picker:', error);
@@ -236,7 +236,7 @@ export function SimpleDateRangePicker({
// 处理日期输入框全局点击
const handleWrapperClick = (inputRef: React.RefObject<HTMLInputElement>) => {
if (inputRef.current) {
console.log('Wrapper clicked, triggering date input');
// console.log('Wrapper clicked, triggering date input');
// 点击整个包装器区域时,触发输入框点击
inputRef.current.focus();
inputRef.current.click();
@@ -244,12 +244,12 @@ export function SimpleDateRangePicker({
try {
// 检查并记录showPicker是否可用
const hasShowPicker = typeof inputRef.current.showPicker === 'function';
console.log('showPicker API available:', hasShowPicker);
// console.log('showPicker API available:', hasShowPicker);
// 尝试使用showPicker API
if (hasShowPicker) {
inputRef.current.showPicker();
console.log('showPicker called successfully');
// console.log('showPicker called successfully');
}
} catch (error) {
console.error('Failed to show date picker:', error);