This commit is contained in:
aozhiwei 2022-11-07 12:42:45 +08:00
parent 117da727f6
commit cacc026d13

View File

@ -413,7 +413,27 @@ class BlockChainController extends BaseAuthedController {
public function unplugChip() public function unplugChip()
{ {
$type = getReqVal('type', '');
$tokenId = getReqVal('token_id', '');
$chipIds = explode('|', getReqVal('chips_ids', ''));
switch ($type) {
case 1:
{
}
break;
case 2:
{
}
break;
default:
{
myself()->_rspErr(101, 'type paramater error');
}
break;
}
} }
private function internalActivate721Nft($tokenId, $tokenType, $itemUniId, $itemId) private function internalActivate721Nft($tokenId, $tokenType, $itemUniId, $itemId)