Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
token
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wallet
token
Commits
9a7e2e8f
Commit
9a7e2e8f
authored
Jan 16, 2019
by
ZhuChunYang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提币审核列表排序
parent
692a6f2a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
CoinReleaseCheckController.php
backend/controllers/CoinReleaseCheckController.php
+2
-2
No files found.
backend/controllers/CoinReleaseCheckController.php
View file @
9a7e2e8f
...
@@ -83,7 +83,7 @@ class CoinReleaseCheckController extends BaseController
...
@@ -83,7 +83,7 @@ class CoinReleaseCheckController extends BaseController
$datas
=
$datas
->
andFilterWhere
([
'<='
,
'create_time'
,
$model
->
end_time
]);
$datas
=
$datas
->
andFilterWhere
([
'<='
,
'create_time'
,
$model
->
end_time
]);
}
}
$count
=
$datas
->
count
();
$count
=
$datas
->
count
();
$datas
=
$datas
->
limit
(
$limit
)
->
offset
((
$page
-
1
)
*
$limit
)
->
asArray
()
->
all
();
$datas
=
$datas
->
limit
(
$limit
)
->
offset
((
$page
-
1
)
*
$limit
)
->
orderBy
(
'id desc'
)
->
asArray
()
->
all
();
//获取操作次数
//获取操作次数
//提出地址
//提出地址
$addresses
=
array_values
(
array_unique
(
array_column
(
$datas
,
'to_address'
)));
$addresses
=
array_values
(
array_unique
(
array_column
(
$datas
,
'to_address'
)));
...
@@ -141,7 +141,7 @@ class CoinReleaseCheckController extends BaseController
...
@@ -141,7 +141,7 @@ class CoinReleaseCheckController extends BaseController
$query
=
$query
->
andFilterWhere
([
'<='
,
'create_time'
,
$model
->
end_time
]);
$query
=
$query
->
andFilterWhere
([
'<='
,
'create_time'
,
$model
->
end_time
]);
}
}
$count
=
$query
->
count
();
$count
=
$query
->
count
();
$datas
=
$query
->
limit
(
$limit
)
->
offset
((
$page
-
1
)
*
$limit
)
->
asArray
()
->
all
();
$datas
=
$query
->
limit
(
$limit
)
->
offset
((
$page
-
1
)
*
$limit
)
->
orderBy
(
'id desc'
)
->
asArray
()
->
all
();
//获取审核员id
//获取审核员id
$check_ids
=
array_column
(
$datas
,
'check_first_uid'
);
$check_ids
=
array_column
(
$datas
,
'check_first_uid'
);
$check_ids
=
array_unique
(
array_values
(
array_merge
(
$check_ids
,
array_column
(
$datas
,
'check_second_uid'
))));
$check_ids
=
array_unique
(
array_values
(
array_merge
(
$check_ids
,
array_column
(
$datas
,
'check_second_uid'
))));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment