简要描述:

-待打款记录

请求URL:

&route=plugin.period-return.frontend.log.payment-log

请求参数说明:

参数名 类型 是否必需 说明

返回示例:

正确时返回:

{
	data: {list: [{id: 1, amount: "0.1", amount_total: "0.2", type: 0,created_at:"2022-03-10 12:00:00"}]},
	msg: "ok",
	result: 1,
}

list参数说明:仓库数据:

参数名 类型 说明
id int 仓库ID
amount float 变动金额
amount_total float 累计金额
type int 类型:0累计,1打款(打款的金额需要显示为负数)

错误时返回:

{
    "result": 0,
    "msg": "暂无仓库选择,请联系管理员!",
    "data": []
}