diff --git a/src/views/user-center/cdr/index.vue b/src/views/user-center/cdr/index.vue index 12f1bbe..558cc1b 100644 --- a/src/views/user-center/cdr/index.vue +++ b/src/views/user-center/cdr/index.vue @@ -37,7 +37,6 @@ const formatDuration = (seconds: number) => { const doGetCdrInfo = async (params: SearchModel) => { try { const response = await fetchCdrHistory(params); - console.log('API Response:', response); const rows = response.data?.rows || []; const total = response.data?.total || 0; return { @@ -47,13 +46,11 @@ const doGetCdrInfo = async (params: SearchModel) => { } }; } catch (error) { - console.error('API Error:', error); return { data: { rows: [], total: 0 }, - error }; } };