14 lines
222 B
JavaScript
14 lines
222 B
JavaScript
const api = {
|
|
// 客户统计
|
|
statisticsAll: {
|
|
url: 'kefu/statistics/all',
|
|
method: 'get'
|
|
},
|
|
// 获取当前客服统计
|
|
statisticsIndex: {
|
|
url: 'kefu/statistics/index',
|
|
method: 'get'
|
|
}
|
|
};
|
|
export default api;
|