1
This commit is contained in:
parent
f0380ec20a
commit
41cf561327
@ -373,9 +373,13 @@ class BattleController extends BaseAuthedController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public function getBattleHistory(){
|
public function getBattleHistory(){
|
||||||
|
$accountId = getReqVal('target_id', 0);
|
||||||
$room_mode = getReqVal('room_mode', 0);
|
$room_mode = getReqVal('room_mode', 0);
|
||||||
$pvp_mode = getReqVal('pvp_mode', 0);
|
$pvp_mode = getReqVal('pvp_mode', 0);
|
||||||
$singleList = BattleSettlement::getSingleList($room_mode,$pvp_mode);
|
if (!$accountId){
|
||||||
|
$accountId = myself()->_getAccountId();
|
||||||
|
}
|
||||||
|
$singleList = BattleSettlement::getSingleList($accountId,$room_mode,$pvp_mode);
|
||||||
$historyList = BattleHistory::orderBy($singleList,'desc');
|
$historyList = BattleHistory::orderBy($singleList,'desc');
|
||||||
// print_r($data);die;
|
// print_r($data);die;
|
||||||
// $historyList = BattleHistory::orderBy(BattleHistory::getMyBattleHistoryByMode($mode),'desc');
|
// $historyList = BattleHistory::orderBy(BattleHistory::getMyBattleHistoryByMode($mode),'desc');
|
||||||
|
@ -68,13 +68,13 @@ class BattleSettlement extends BaseModel
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function getSingleList($roomMode, $matchMode)
|
public static function getSingleList($accountId,$roomMode, $matchMode)
|
||||||
{
|
{
|
||||||
$rows = SqlHelper::ormSelect
|
$rows = SqlHelper::ormSelect
|
||||||
(myself()->_getSelfMysql(),
|
(myself()->_getSelfMysql(),
|
||||||
't_battle_settlement_single',
|
't_battle_settlement_single',
|
||||||
array(
|
array(
|
||||||
'account_id' => myself()->_getAccountId(),
|
'account_id' => $accountId,
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
$pvpMatchList = array();
|
$pvpMatchList = array();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user