$account, "bind_biz_type" => 0, "path_data_list" => [ [ "path" => "pages/order/detail", "path_type" => 1 ], [ "path" => "pages/order/detail", "path_type" => 2 ], [ "path" => "pages/order/detail", "path_type" => 3 ] ] ]; return Http::asJson()->withHeaders($this->header)->post($this->gateway."api/apps/trade/v2/toolkit/update_merchant_path/", $param)->array(); } /** * 查下用户订单 * @param string $account * @param string $openId * @return array */ public function queryOrder(string $account = "",string $openId = ""): array { $param = [ "account_id" => $account, "open_id" => $openId, "biz_type" => 1, ]; return Http::asJson()->withHeaders($this->header)->post($this->gateway."api/trade/v2/fulfillment/query_user_certificates/", $param)->array(); } }