This commit is contained in:
wucongxing 2023-03-11 10:41:08 +08:00
parent 0f098b1df6
commit e5845adf01
2 changed files with 5 additions and 1 deletions

View File

@ -218,6 +218,9 @@ Router::addGroup('/patient', function () {
// 问诊订单取消支付-1未支付
Router::put('/cancel-pay/{order_inquiry_id:\d+}', [InquiryController::class, 'putPatientInquiryOrderCancelPay']);
// 获取药品订单列表-药品订单
Router::post('/8', [CallBackController::class, 'imCallBack']);
});
// 医生数据

View File

@ -57,7 +57,8 @@ class Oss
$response = array();
$response['accessid'] = $this->config['accessKey'];
$response['host'] = "https://" . $this->config['bucket'] . '.' . $this->config['endpoint'];
// $response['host'] = "https://" . $this->config['bucket'] . '.' . $this->config['endpoint'];
$response['host'] = config('alibaba.oss.custom_domain_name');
$response['policy'] = $base64_policy;
$response['signature'] = $signature;
$response['expire'] = $end;