This commit is contained in:
aozhiwei 2022-02-22 16:13:47 +08:00
parent 91e7e6163d
commit 49cdfe5dc3
2 changed files with 3 additions and 0 deletions

View File

@ -27,6 +27,7 @@ class Market(object):
'url': 'webapp/index.php?c=Market&a=auth', 'url': 'webapp/index.php?c=Market&a=auth',
'params': [ 'params': [
['account', '', '钱包账号'], ['account', '', '钱包账号'],
['tips', '', 'tips'],
['nonce', '', 'nonce'], ['nonce', '', 'nonce'],
['signature', '', '签名'], ['signature', '', '签名'],
['net_id', '', '网络id'], ['net_id', '', '网络id'],

View File

@ -469,11 +469,13 @@ class MarketController extends BaseController {
public function auth() public function auth()
{ {
$account = getReqVal('account', ''); $account = getReqVal('account', '');
$tips = getReqVal('tips', '') ;
$nonce = getReqVal('nonce', ''); $nonce = getReqVal('nonce', '');
$signature = getReqVal('signature', ''); $signature = getReqVal('signature', '');
$params = array( $params = array(
'c' => 'BcService', 'c' => 'BcService',
'a' => 'authVerifySignature', 'a' => 'authVerifySignature',
'tips' => $tips,
'nonce' => $nonce, 'nonce' => $nonce,
'signature' => $signature 'signature' => $signature
); );