wiki:app2.2.0/pay

Version 3 (modified by wuyuanbo, 10 years ago) (diff)

--

支付

支付反馈

线上:/appIntf/pay/feedback.jsp

说明

提示用户支付成功或失败的页面

提交方式

post

是否需要登录

true

缓存方式

缓存时间

参数

参数名 参数含义 类型 默认值 是否必须
orderId商品idstring""
common_session_id-string""

返回

打开页面

用户订单列表

线上:/appIntf/order/orderList.jsp

说明

登陆用户的订单列表

提交方式

post

是否需要登录

true

缓存方式

缓存时间

参数

参数名 参数含义 类型 默认值 是否必须
pageNo第几页int1
pageSize一页的数据量int10
type0全部订单;1待付款订单;2待发货订单;3待收货订单;4已完成订单int0
common_session_id-string""

返回

result {
    status: 1,
    msg: '请求成功',
    pageNo: 1,
    pageSize: 10,
    total: 20,
    pageTotal: 2,
    serviceDate: 2015-11-11 11:11:10
    data: [
        {
           orderId: 123456,         //订单id
           orderNo: 20151111123321, //订单id
           enName: "ECCO Men's Dress Moccasin Penny Loafer",        //商品标题
           property: "Size: 42 M EU / 8-8.5 D(M) US|Color: Black",  //商品参数 有些商品没有参数  此项为""
           imgUrl: xxx.xxxx...,           //商品图片
           cnPrice: 123.00,               //人民币单价
           frPrice: 20.00,                //美元单价
           realTariffPrice: 120.00,       //关税
           realExpPrice: 123.00,          //运费
           amountPrice: 100000.00,        //订单总价
           status: 1,                     //订单状态
           pastDate: 2015-11-11 11:11:11, //付款过期时间
           mallId: 123,                   //电商id
           mallName: "美国亚马逊"         //电商名称
        }
    ]
}