🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
**简要描述:** - 发货信息 **请求URL:** - `/adminapi/order.order/deliveryInfo` **请求方式:** - GET **参数:** |参数名 |必选 |类型 |说明 | | ------ | ------ | ------ |------ | |id |是 |int |订单id | **返回示例** ``` { "code": 1, "show": 0, "msg": "", "data": { "order_goods": [ { "id": 1, "order_id": 1, "goods_name": "木杆铅笔 儿童铅笔", "goods_price": "2099.00", "discount_price": "0.00", "goods_num": 1, "total_pay_price": "1099.00", "goods_image": "http://www.likeshopb2cv3.localhost//uploads/images/background/20201210/956e95bc35d0a8005255889036e9aae5.png", "spec_value_str": "默认", "pay_price": 1099 }, { "id": 2, "order_id": 1, "goods_name": "木杆铅笔 儿童铅笔", "goods_price": "400.00", "discount_price": "0.00", "goods_num": 1, "total_pay_price": "400.00", "goods_image": "http://www.likeshopb2cv3.localhost//uploads/images/background/20201210/956e95bc35d0a8005255889036e9aae5.png", "spec_value_str": "默认", "pay_price": 400 }, { "id": 4, "order_id": 1, "goods_name": "木杆铅笔 儿童铅笔", "goods_price": "400.00", "discount_price": "0.00", "goods_num": 1, "total_pay_price": "400.00", "goods_image": "http://www.likeshopb2cv3.localhost//uploads/images/background/20201210/956e95bc35d0a8005255889036e9aae5.png", "spec_value_str": "默认", "pay_price": 400 } ], "delivery_address": "北京北京市朝阳区天上人间111", "contact": "木子", "mobile": "17306643985", "express": [ { "id": 1, "name": "防晒爽肤水" }, { "id": 2, "name": "11111" }, { "id": 3, "name": "顺丰" } ] } } ``` **返回参数: |参数名 |类型 |说明 | | ------ | ------ | ------ |------ | |order_goods |array |订单商品 | |-goods_name |string |商品名称 | |-goods_price |float |商品价格 | |-discount_price |float |优惠金额 | |-goods_num |int |购买数量 | |-total_pay_price |float |小计 | |-goods_image |string |商品图片 | |-spec_value_str |string |商品规格 | |-pay_price |float |实付价格 | |delivery_address |string |收货地址 | |contact |string |收货人 | |mobile |string |收货人手机号码 | |express |array |物流公司 | |-id |int |物流公司id | |-name |string |物流公司名称 |