You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
279 B
12 lines
279 B
11 months ago
|
import request from './request'
|
||
|
/**
|
||
|
* @description 数据统计
|
||
|
*/
|
||
|
export function getStatisticList(data) {
|
||
|
return request.get('statistics/all_data', data)
|
||
|
}
|
||
|
// 惠通宝转让记录
|
||
|
export function getHuitongbao(data) {
|
||
|
return request.get('user/huitong_list', data)
|
||
|
}
|