基础功能、图片上传

This commit is contained in:
2025-05-12 16:13:46 +08:00
parent 8e30209540
commit 4f2e662b7d
16 changed files with 533 additions and 211 deletions

View File

@@ -372,7 +372,7 @@ if (!function_exists('money_format')) {
if (!function_exists('ase_password')) {
function ase_password($password): string
{
return sha1($password. config('cc.configs.ase.slate'));
return sha1($password. config('nl.configs.ase.slate'));
}
}
@@ -380,7 +380,7 @@ if (!function_exists('ase_password')) {
if (!function_exists('cc_get_project_url')) {
function cc_get_project_url(): string
{
$url = config('cc.configs.project_url');
$url = config('nl.configs.project_url');
if (empty($url)) {
$url = request()->root(true);
}