This commit is contained in:
aozhiwei 2022-11-03 18:33:37 +08:00
parent 41eed022f5
commit 3fd99ce02a
2 changed files with 2 additions and 2 deletions

View File

@ -98,8 +98,7 @@ class BlockChain(object):
'group': 'BlockChain',
'url': 'webapp/index.php?c=BlockChain&a=shardMixByUser',
'params': [
['token_id1', 0, 'tokenid1'],
['token_id2', 0, 'tokenid2'],
['token_ids', '', 'token_ids多个用|分割'],
],
'response': [
_common.RspHead(),

View File

@ -168,6 +168,7 @@ class BlockChainController extends BaseAuthedController {
public function shardMixByUser()
{
$tokenIds = explode('|', getReqVal('token_ids', ''));
}