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
a373bf13
Commit
a373bf13
authored
Mar 26, 2020
by
shajiaiming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
e09fb5b6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
28 deletions
+17
-28
RecommendCoinController.php
api/controllers/RecommendCoinController.php
+14
-26
WalletCoin.php
common/models/psources/WalletCoin.php
+1
-1
WalletRecommendCoin.php
common/models/psources/WalletRecommendCoin.php
+2
-1
No files found.
api/controllers/RecommendCoinController.php
View file @
a373bf13
...
...
@@ -34,37 +34,25 @@ class RecommendCoinController extends BaseController
$recommend_coin
=
WalletRecommendCoin
::
find
()
->
where
([
'category_id'
=>
$category
[
'id'
]])
->
all
();
$items
=
[];
foreach
(
$recommend_coin
as
$coin
)
{
$temp
[
'id'
]
=
$coin
->
coin
[
'id'
];
$temp
[
'icon'
]
=
$coin
->
coin
[
'icon'
];
$temp
[
'name'
]
=
$coin
->
coin
[
'name'
];
$temp
[
'platform'
]
=
$coin
->
coin
[
'platform'
];
$temp
[
'chain'
]
=
$coin
->
coin
[
'chain'
];
$temp
[
'treaty'
]
=
$coin
->
coin
[
'treaty'
];
$nickname
=
json_decode
(
$coin
->
coin
[
'nickname'
],
true
);
$temp
[
'nickname'
]
=
isset
(
$nickname
[
$this
->
lang
])
?
$nickname
[
$this
->
lang
]
:
''
;
$introduce
=
json_decode
(
$coin
->
coin
[
'introduce'
],
true
);
$temp
[
'introduce'
]
=
isset
(
$introduce
[
$this
->
lang
])
?
$introduce
[
$this
->
lang
]
:
''
;
array_push
(
$items
,
$temp
);
if
(
!
empty
(
$recommend_coin
))
{
foreach
(
$recommend_coin
as
$coin
)
{
$temp
[
'id'
]
=
$coin
->
coin
[
'id'
];
$temp
[
'icon'
]
=
$coin
->
coin
[
'icon'
];
$temp
[
'name'
]
=
$coin
->
coin
[
'name'
];
$temp
[
'platform'
]
=
$coin
->
coin
[
'platform'
];
$temp
[
'chain'
]
=
$coin
->
coin
[
'chain'
];
$temp
[
'treaty'
]
=
$coin
->
coin
[
'treaty'
];
$nickname
=
json_decode
(
$coin
->
coin
[
'nickname'
],
true
);
$temp
[
'nickname'
]
=
isset
(
$nickname
[
$this
->
lang
])
?
$nickname
[
$this
->
lang
]
:
''
;
$introduce
=
json_decode
(
$coin
->
coin
[
'introduce'
],
true
);
$temp
[
'introduce'
]
=
isset
(
$introduce
[
$this
->
lang
])
?
$introduce
[
$this
->
lang
]
:
''
;
array_push
(
$items
,
$temp
);
}
}
$category
[
'items'
]
=
$items
;
}
$this
->
data
=
$recommend_category
[
0
][
'items'
];
// //获取行情信息
// $coin_names = array_column($result, 'name');
// $coin_names = array_merge($coin_names, array_column($result, 'chain'));
// $coin_quotations = ExchangeBusiness::getQuatationByNames($coin_names);
//
// $ticker = ['low' => 0, 'high' => 0, 'last' => 0, 'open' => 0, 'vol' => 0, 'rmb' => 0, 'usd' => 0];
// foreach ($result as $key => &$val) {
// $val['chain_quotation'] = isset($coin_quotations[strtoupper($val['chain'])]) ? $coin_quotations[strtoupper($val['chain'])] : [];
// $result[$key] = array_merge($val, isset($coin_quotations[strtoupper($val['name'])]) ? $coin_quotations[strtoupper($val['name'])] : $ticker);
// $val['chain_rmb'] = isset($val['chain_quotation']['rmb']) ? $val['chain_quotation']['rmb'] : 0;
// $val['chain_usd'] = isset($val['chain_quotation']['usd']) ? $val['chain_quotation']['usd'] : 0;
// }
//
// $this->data = $result;
doEnd
:
return
[
'code'
=>
$this
->
code
,
'data'
=>
$this
->
data
,
'msg'
=>
$this
->
msg
];
...
...
common/models/psources/WalletCoin.php
View file @
a373bf13
...
...
@@ -15,7 +15,7 @@ class WalletCoin extends BaseActiveRecord
public
static
function
tableName
()
{
return
'{{
wallet_
coin}}'
;
return
'{{coin}}'
;
}
public
function
attributes
()
...
...
common/models/psources/WalletRecommendCoin.php
View file @
a373bf13
...
...
@@ -19,6 +19,6 @@ class WalletRecommendCoin extends BaseActiveRecord
public
function
getCoin
()
{
return
$this
->
hasOne
(
Wallet
Coin
::
className
(),
[
'id'
=>
'cid'
])
->
select
([
'id'
,
'icon'
,
'name'
,
'introduce'
,
'nickname'
,
'platform'
,
'chain'
,
'treaty'
])
->
asArray
();
return
$this
->
hasOne
(
Coin
::
className
(),
[
'id'
=>
'cid'
])
->
select
([
'id'
,
'icon'
,
'name'
,
'introduce'
,
'nickname'
,
'platform'
,
'chain'
,
'treaty'
])
->
asArray
();
}
}
\ No newline at end of file
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