zhouwx
2024-08-19 3cc4abeb92d11d7a8b365928c5aa9452679fe06c
src/api/list.js
@@ -68,4 +68,21 @@
        url: '/attachment/delete/' + id,
        method: 'get'
    })
}
// 获取30天总体用量
export function getTotalStatistics(){
    return request({
        url: '/statistics/sms/countByTime',
        method: 'get'
    })
}
// 获取各地总体用量
export function getTotalStatisticsByArea(data){
    return request({
        url: '/statistics/sms/count',
        method: 'post',
        data: data
    })
}