|
...
|
...
|
@@ -15,6 +15,7 @@ use App\Models\User\ProjectMenu as ProjectMenuModel; |
|
|
|
use App\Models\User\ProjectRole as ProjectRoleModel;
|
|
|
|
use App\Models\User\User;
|
|
|
|
use Illuminate\Support\Facades\Cache;
|
|
|
|
use Illuminate\Support\Facades\Hash;
|
|
|
|
|
|
|
|
/***
|
|
|
|
* 当前为公共类
|
|
...
|
...
|
@@ -345,7 +346,7 @@ class ComController extends BaseController |
|
|
|
die();
|
|
|
|
$param = [
|
|
|
|
'prod_desc'=>$this->param['keyword'],
|
|
|
|
'token'=>$token,
|
|
|
|
'token'=>Hash::check($token),
|
|
|
|
'total'=>$this->param['now'] ?? 10,
|
|
|
|
];
|
|
|
|
$lists = http_post($url,$param);
|
...
|
...
|
|