Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
PaoPao
/
serviceWork
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
74c0cec8
...
74c0cec811f76080fa6a59cb2b7343c3844272a1
authored
2024-05-27 16:11:42 +0800
by
杨俊
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fix(develop): 修复报错
1 parent
1a0913cc
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
2 deletions
app/Http/Container/AppSection/Controllers/IndexController.php
app/Http/Container/AppSection/Controllers/IndexController.php
View file @
74c0cec
...
...
@@ -88,9 +88,8 @@ public function bandList(Request $request)
if
(
$page
===
1
)
{
//查询符合条件活动
$data
=
$query
->
get
([
'id'
]);
dd
(
$data
);
//插入有序集合中
if
(
!
empty
(
$data
))
{
if
(
$data
->
isNotEmpty
(
))
{
Redis
::
client
()
->
del
(
$key
);
Redis
::
client
()
->
zAdd
(
$key
,
...
$data
->
map
(
fn
(
Project
$item
)
=>
[
random_int
(
50
,
200
),
$item
->
getKey
()])
->
flatten
()
->
toArray
());
Redis
::
client
()
->
expire
(
$key
,
2
*
60
*
60
);
...
...
Please
register
or
sign in
to post a comment