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.
20 lines
380 B
20 lines
380 B
import request from '@/utils/request'
|
|
|
|
// 上课记录
|
|
export function classBeginLogList(query) {
|
|
return request({
|
|
url: '/api/sc/account/log/list/classBeginLogList',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
// 充值记录
|
|
export function payLogList(query) {
|
|
return request({
|
|
url: '/api/sc/account/log/list/payLogList',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|