简要描述:

  • 代付订单查询

请求域名:

请求URL:

GET:route=order.another-pay-detail

同route=order.detail

参数:

参数名 是否必须 类型 说明

返回示例:

正确时返回:

  {
    "result": 1,
	 "msg":'',
    "data": [
	    {
		    price:3000
			goods_price:3000,
			goods_total:1
			has_many_order_goods: [
			    price:3000,
				title:商品,
				total:1
				thumb:xxx
			]
	    }
	]
  }

错误时返回:

  {
    "result": 0,
	 "msg":'订单不存在',
    "data": []
  }

返回参数说明:

参数名 类型 说明
price decimal 商品总价
goods_price decimal 商品单价
goods_total int 商品总数
has_many_order_goods->title 商品名称
has_many_order_goods->thumb 商品图片

备注:

  • 更多返回错误代码请看首页的错误代码描述