🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
**请求方式:** POST **请求地址:** `/taxi.php/payh5` **Content-Type:** application/json **参数说明:** | 参数 | 参数类型 | 必须 | 说明| | ----------- | ------------------------------ | ------------ | --- | | uuid | String | yes | 登录获取的uuid | | totalFee | Integer | yes | 预估费用接口返回的freeze_price | | from_longitude | String | yes | 出发地经度 | | from_latitude | String | yes | 出发地纬度| | to_longitude | String | yes | 目的地经度 | | to_latitude | String | yes | 目的地纬度 | | car_type | String | yes | 服务车型,多种车型用英文逗号分隔,如 1,2 ,1 出租车(暂无该车型);2 新能源;3 舒适型;4 豪华型;5 商务型| | passenger_phone | String | no | 乘车人手机号,不填表示给自己叫车| | passenger_name | String | no |乘车人姓名| | estimate_price| String | yes | 预估费用,单位为分| | estimate_price_key| String | yes | 预估费用接口返回的price_key| | city_code | String | yes | 城市编码| | order_type | String | yes | 订单类型 1 实时单; 2 预约订单| | dynamic_rule_id | String | no | 动态折扣ID| | departure_time | String | no | 出发时间,非实时单必填(格式:yyyy-MM-dd HH:mm:ss),预约单出发时间必须大于等于当前时间30分钟 | | start_name | String | yes |出发点名称(最多16个字)| | end_name | String | yes |目的地名称(最多16个字)| | order_longitude | String | yes | 下单地经度| | order_latitude | String | yes | 下单地纬度 | | extra_info | String | no |下单时给司机展示的备注信息| **请求包结构体:** ~~~ { "uuid ": "905b4d14-4d41-4be0-95e0-4fd039e1879e", "totalFee": "1111" } ~~~ **返回信息** | 参数 | 参数类型 | 必须 | 说明| | ----------- | ------------------------------ | ------------ | --- | | order_no | String | yes |订单号| | payh5_url | String | yes |支付地址| **返回示例:** ``` { "errcode": 0, "errmsg": "ok", "data": { "order_no": "20200707919911266", "payh5_url":"", } } ```