简要描述:

  • 原型:门店余额

请求URL:

GET/plugin.store-cashier.frontend.store.balance.home.index
参数名 是否必须 类型 说明
store_id true int 门店id

返回示例:

错误时返回:

{
    "result": 0,
    "msg": "参数错误",
    "data": []
}
{
    "result": 0,
    "msg": "未开启门店余额插件",
    "data": []
}
{
    "result": 0,
    "msg": "未找到门店信息",
    "data": []
}

正确时返回:

{
	"result": 1,
	"msg": "ok",
	"data": {
		"title": "余额",
		"store_name": "111",
		"member_balance": "100.00",
		"show_button": 1
	}
}

返回参数说明:

参数名 类型 说明
title str 余额名称
store_name str 门店名称
member_balance float 会员拥有该门店的余额数量
show_button int 1:显示充值按钮0:不显示充值按钮