Skip to content
On this page

6.3 查询订单列表(分页)

接口说明:

MethodURLContentType
GET/api/v1/order/page_listapplication/json

请求参数说明:

字段名类型是否必填示例值描述
searchContentString"ORDER2025080400001"搜索内容(单号)
statusString"ALL"订单状态 全部:ALL,待审核:WA,待发货:WD,待收货:WC,完成:F,取消:C
pageNumint1当前页号
pageSizeint20页大小

返回参数说明:


请求数据示例:

/api/v1/order/page_list?pageNum=1&pageSize=20&status=ALL

返回数据示例:

参数类型说明描述
pageNumint当前页号
pageSizeint页大小
pageTotalint总条数
pageCountint分页总数量
itemsJSON 数组商品信息集合
orderCodestring订单号
orderAmountdecimal订单金额
orderStatusStrstring订单状态描述
creationTimestring订单创建时间
pointAmountstring积分
productslist商品列表
-- skustring商品编码
-- skuNamestring商品名称
-- quantityint数量
-- pricedecimal单价
-- totalPricedecimal总价
json
{
  "success": true,
  "code": "000",
  "message": "成功",
  "data": {
    "pageNum": 1,
    "pageSize": 5,
    "pageTotal": 33,
    "pageCount": 7,
    "items": [
      {
        "orderCode": "CG20241104101338001",
        "orderAmount": 6.300000,
        "orderStatusStr": "待审核",
        "creationTime": "2024-11-04 10:13:39",
        "pointAmount": "441",
        "products": [
          {
            "sku": "WF1439844",
            "skuName": "水之密语 净润臻养旅行套装 (洗发50ml+护发50ml+沐浴啫喱50ml)",
            "quantity": 1,
            "price": 6.3,
            "totalPrice": 6.3
          }
        ]
      },
      {
        "orderCode": "CG20241031200132001",
        "orderAmount": 1.000000,
        "orderStatusStr": "待审核",
        "creationTime": "2024-10-31 20:01:32",
        "pointAmount": "70",
        "products": [
          {
            "sku": "WF2158147",
            "skuName": "佳乐赢 企业定制  牛皮纸专用袋子(残损币袋) JLY-023 92*180mm  1000个/箱   10箱起订 1000个/箱",
            "quantity": 1,
            "price": 1.0,
            "totalPrice": 1.0
          }
        ]
      },
      {
        "orderCode": "CG20241031191005001",
        "orderAmount": 6.300000,
        "orderStatusStr": "待审核",
        "creationTime": "2024-10-31 19:10:06",
        "pointAmount": "504",
        "products": [
          {
            "sku": "WF1439844",
            "skuName": "水之密语 净润臻养旅行套装 (洗发50ml+护发50ml+沐浴啫喱50ml)",
            "quantity": 1,
            "price": 6.3,
            "totalPrice": 6.3
          }
        ]
      },
      {
        "orderCode": "CG20241029145040001",
        "orderAmount": 9.900000,
        "orderStatusStr": "待审核",
        "creationTime": "2024-10-29 14:50:40",
        "pointAmount": "495",
        "products": [
          {
            "sku": "WF1096133",
            "skuName": "水之密语 净润臻养旅行套装 (洗发50ml+护发50ml+沐浴啫喱50ml)",
            "quantity": 1,
            "price": 9.9,
            "totalPrice": 9.9
          }
        ]
      },
      {
        "orderCode": "CG20241029144209001",
        "orderAmount": 9.900000,
        "orderStatusStr": "待审核",
        "creationTime": "2024-10-29 14:42:10",
        "pointAmount": "495",
        "products": [
          {
            "sku": "WF1096133",
            "skuName": "水之密语 净润臻养旅行套装 (洗发50ml+护发50ml+沐浴啫喱50ml)",
            "quantity": 1,
            "price": 9.9,
            "totalPrice": 9.9
          }
        ]
      }
    ]
  }
}