修改多点未处理情况

This commit is contained in:
2023-07-19 13:37:38 +08:00
parent fc48be5b8a
commit 4ff12d600e
3 changed files with 15 additions and 18 deletions
+8 -11
View File
@@ -377,26 +377,23 @@ class TestController extends AbstractController
}
$options = [
"jump_wxa" => [
"path" => "pages/expertDetail/expertDetail",
'json' => [
"path" => "pages/index/index",
"query" => "doctor_id=539452507563012096",
"expire_type" => 1,
"expire_interval" => 1,
"env_version" => $env_version,
],
"expire_type" => 1,
"expire_interval" => 1,
]
];
$Wechat = new Wechat(1);
$result = $Wechat->createUrlScheme($options);
$result = $Wechat->createUrlLink($options);
dump($result);
$options = [
"scheme" => $result['openlink']
"url_link" => $result['url_link']
];
$result = $Wechat->getUrlScheme($options);
$result = $Wechat->getUrlLink($options);
dump($result);
}
}
+1 -1
View File
@@ -722,7 +722,7 @@ class DoctorAuthService extends BaseService
}
if (empty($doctor_info_data)) {
return success();
return fail(HttpEnumCode::HTTP_ERROR,"请您修改后再提交");
}
Db::beginTransaction();