Changes between Version 52 and Version 53 of app2.2.0/order


Ignore:
Timestamp:
12/17/2015 04:19:25 PM (10 years ago)
Author:
wuyuanbo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • app2.2.0/order

    v52 v53  
    358358 
    359359 
     360 
     361 
     362 
     363 
     364 
     365 
     366 
     367 
     368 
     369 
     370 
     371 
     372 
     373 
     374 
     375== 用户订单详情(json) == 
     376 
     377> 线上:/appIntf/order/orderInfo.jsp 
     378 
     379**说明** 
     380 
     381> 返回订单数据 
     382 
     383**提交方式** 
     384 
     385> get 
     386 
     387**是否需要登录** 
     388 
     389> true 
     390 
     391**缓存方式** 
     392 
     393> 无 
     394 
     395**缓存时间** 
     396 
     397> 无 
     398 
     399**参数** 
     400 
     401||= 参数名 =||= 参数含义 =||= 类型 =||= 默认值 =||= 是否必须 =|| 
     402||orderId||订单id||int||0||是|| 
     403||common_session_id(cookie参数)||-||string||""||是|| 
     404 
     405 
     406**返回** 
     407{{{#!java 
     408result { 
     409    status: 1, 
     410    msg: '请求成功', 
     411    serviceDate: '111111111111111111111111', //系统时间 
     412    data: { 
     413           orderId: 123456,                 //订单id 
     414           orderNo: "20151111123321",       //订单编号  对应支付宝字段orderIdVar 
     415           amountPrice: 100000.00,          //订单总价  对应支付宝字段totalPrice 
     416           status: 0,                       //订单状态 
     417           statusDesc: "待付款"             //订单状态描述 
     418           pastDate: 111111111111111111111, //付款过期时间毫秒数 
     419         } 
     420} 
     421}}} 
     422 
     423**返回状态** 
     424||1||请求成功||请求成功|| 
     425||-1||请求失败||后台数据操作错误|| 
     426||-2||未登录||未登录|| 
     427||-3||非法请求!||非post请求|| 
     428--------