Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Cong.Zhao
/
musician-api.hikoon.com
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
ee9c9972
...
ee9c9972ffb38d975500c53ae627ae6372f169ea
authored
2022-12-08 14:56:40 +0800
by
lemon
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
增加排序
1 parent
105eb1ca
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
app/Services/PropertyTrackService.php
app/Services/PropertyTrackService.php
View file @
ee9c997
...
...
@@ -90,7 +90,7 @@ class PropertyTrackService extends Service
public
function
file
()
{
$trackFiles
=
PropertyTrackFile
::
query
()
->
with
(
'ptfTypes.type:id,type_name,remark'
)
->
where
([
'pt_id'
=>
$this
->
request
->
input
(
'track_id'
)])
->
paginate
(
$this
->
pageSize
);
->
orderByDesc
(
'id'
)
->
paginate
(
$this
->
pageSize
);
return
Response
::
success
(
$trackFiles
);
}
...
...
Please
register
or
sign in
to post a comment