All Downloads are FREE. Search and download functionalities are using the official Maven repository.

api.ms.mpay.people.log.js Maven / Gradle / Ivy

There is a newer version: 2.2.5
Show newest version
/**
 * 支付日志管理
 */
(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;
}());




© 2015 - 2024 Weber Informatics LLC | Privacy Policy