if(this._view && this._tableInfo.hasOwnProperty('players'))
{
let data = this._tableInfo;
alert(param.players[0].uid +' '+App.uid +' '+param.players[0].gold);
for (var key in data.players) {
if(data.players[key].uid ==App.uid)
{
this._ownerGold = data.players[key].gold;
break;
}
}
}