|
|
@@ -57,9 +57,8 @@ class TestController extends BaseController
|
|
|
$statusName = '出错了';
|
|
|
if ($response['retCode'] == '000000') {
|
|
|
$checkResult = $response['respData']['checkResult'] ?? '';
|
|
|
- echo $checkResult;die;
|
|
|
$statusName = '未确认';
|
|
|
- if ($checkResult == 'AUTHORIZE_STATE_AUTHORIZED ') {
|
|
|
+ if ($checkResult == 'AUTHORIZE_STATE_AUTHORIZED') {
|
|
|
$statusName = '已确认';
|
|
|
}
|
|
|
}
|
|
|
@@ -84,7 +83,7 @@ class TestController extends BaseController
|
|
|
if ($response['retCode'] == '000000') {
|
|
|
$checkResult = $response['respData']['checkResult'] ?? '';
|
|
|
$statusName = '未确认';
|
|
|
- if ($checkResult == 'AUTHORIZED ') {
|
|
|
+ if ($checkResult == 'AUTHORIZED') {
|
|
|
$statusName = '已确认';
|
|
|
}
|
|
|
}
|