Files
WashCar/src/Action/BaseAction.php
2021-06-29 16:20:44 +08:00

26 lines
524 B
PHP

<?php
namespace XuanChen\WashCar\Action;
class BaseAction extends Init
{
/**
* Notes: 免登陆
* @Author: 玄尘
* @Date : 2021/6/29 10:49
* @param string $method
* @return array
*/
public function getUnLoginUrl($method = 'POST')
{
$url = $this->config['baseUri'] . '/v2/h5/redirect/autoLogin/commonReturnUrl';
$params = $this->getParams();
$this->http($url, $params, $method);
return $this->getResponse();
}
}