api.ms.mpay.people.log.js Maven / Gradle / Ivy
/**
* 支付日志管理
*/
(function() {
/**
* 交易日志列表
* 查询用户交易日志记录,例如:在会员中心,用户查询自己调支付记录
* @param data
* @param func
* @returns
*/
function list(data,func) {
ms.http.get(ms.base + "/people/mpay/payLog/list.do",data,{
}).then(func, function(err){
console.log(err)
})
}
/**
* 查询用户交易日志记录详情
* @param data
* @param func
* @returns
*/
function get(data,func) {
ms.http.get(ms.base + "/people/mpay/payLog/get.do",data
).then(func, function(err){
console.log(err)
})
}
let people = {
}
let log = {
list:list,
get:get
}
window.ms.mpay.people = people;
window.ms.mpay.people.log = log;
}());