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
11b7b9f0
...
11b7b9f0be88fa9c27c75fcc2585f3ae6fe471a3
authored
2022-12-07 14:36:07 +0800
by
lemon
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
填写上传人
1 parent
d548177c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
4 deletions
app/Services/PropertyTrackService.php
app/Services/PropertyTrackService.php
View file @
11b7b9f
...
...
@@ -252,9 +252,6 @@ class PropertyTrackService extends Service
*/
public
function
fileSave
()
{
var_dump
(
$this
->
request
->
get
(
'identifier'
));
exit
();
try
{
$fileTypes
=
$this
->
request
->
input
(
'file_types'
);
...
...
@@ -263,7 +260,7 @@ class PropertyTrackService extends Service
$upload_user
=
''
;
if
(
$this
->
request
->
input
(
'from'
)
==
1
)
{
$upload_user
=
$this
->
request
->
get
(
'identifier'
)
->
user_id
;
$upload_user
=
$this
->
request
->
get
(
'identifier'
)
?
$this
->
request
->
get
(
'identifier'
)
->
user_id
:
''
;
}
elseif
(
$this
->
request
->
input
(
'from'
)
==
2
)
{
$upload_user
=
PropertyShare
::
query
()
->
where
([
'id'
=>
$this
->
request
->
get
(
'id'
)])
->
pluck
(
'phone'
)
->
first
();
}
...
...
Please
register
or
sign in
to post a comment