This commit is contained in:
aozhiwei 2024-06-03 17:43:08 +08:00
parent e9b955c31c
commit 6aec469c7a

View File

@ -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);
}
}