feat(point-record): add status filter for point record queries

- Change API endpoint from APP_MEMBER to APP_TIK for point record requests
- Add status parameter to filter only confirmed records in frontend
- Update fetchPointRecords function to pass status: 'confirmed' by default
- Modify handleTableChange function signature to accept page and pageSize directly
- Add new business type mappings for AI-related services (dify_chat, voice_tts, tikhub_fetch, forecast_rewrite)
- Remove redundant reason display and status tag from record items
- Add status field to backend query conditions in PointRecordMapper
- Include status parameter in PointRecordPageReqVO with proper schema documentation
This commit is contained in:
2026-02-26 21:41:55 +08:00
parent 9c4d39e29d
commit 3bbb28677b
4 changed files with 17 additions and 12 deletions

View File

@@ -15,5 +15,5 @@ import { API_BASE } from '@gold/config/api'
* @returns {Promise}
*/
export function getPointRecordPage(params = {}) {
return http.get(`${API_BASE.APP_MEMBER}/tik/point-record/page`, { params })
return http.get(`${API_BASE.APP_TIK}/point-record/page`, { params })
}