1
This commit is contained in:
parent
e9b955c31c
commit
6aec469c7a
@ -122,5 +122,26 @@ class OutAppNftController extends BaseController {
|
||||
'info' => $info,
|
||||
));
|
||||
}
|
||||
|
||||
public function nftMetaView()
|
||||
{
|
||||
$nftType = getReqVal('nft_type', '');
|
||||
$netId = getReqVal('net_id', '');
|
||||
$tokenId = getReqVal('token_id', '');
|
||||
$info = array(
|
||||
"name" => "",
|
||||
"description" => "",
|
||||
"image" => "",
|
||||
"attributes" => array(),
|
||||
);
|
||||
switch ($nftType) {
|
||||
case 'hero':
|
||||
{
|
||||
}
|
||||
break;
|
||||
}
|
||||
myself()->_rspData($info);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user