新增物流回调,新增删除常用语

This commit is contained in:
2023-03-23 14:05:24 +08:00
parent ac382e288c
commit 593b7956b3
10 changed files with 141 additions and 22 deletions
+3 -3
View File
@@ -32,9 +32,9 @@ class Prescription
public function __construct(){
// 请求地址
$this->api_url = "http://49.233.3.200:6304/api/thridapi/";
$this->client_id = "ZD-004";
$this->client_secret = "0baa5927164710b9f800bf33546b6da3";
$this->api_url = config('prescription_platform.api_url');
$this->client_id = config('prescription_platform.client_id');
$this->client_secret = config('prescription_platform.client_secret');
$this->container = ApplicationContext::getContainer();
$this->client = $this->container->get(Client::class);
}