|
|
|
@ -49,12 +49,13 @@
|
|
|
|
|
<tr>
|
|
|
|
|
<td class="l">玩家账号:</td>
|
|
|
|
|
<td class="r" >
|
|
|
|
|
<select id="user_id" name="user_id">
|
|
|
|
|
<option value="0">请选择账号</option>
|
|
|
|
|
<volist name=":get_user_play_group_list()" id="vo">
|
|
|
|
|
<option value="{$vo.user_id}" account="{$vo.user_account}">{$vo.user_account}</option>
|
|
|
|
|
</volist>
|
|
|
|
|
</select>
|
|
|
|
|
<!-- <select id="user_id" name="user_id">-->
|
|
|
|
|
<!-- <option value="0">请选择账号</option>-->
|
|
|
|
|
<!-- <volist name=":get_user_play_group_list()" id="vo">-->
|
|
|
|
|
<!-- <option value="{$vo.user_id}" account="{$vo.user_account}">{$vo.user_account}</option>-->
|
|
|
|
|
<!-- </volist>-->
|
|
|
|
|
<!-- </select>-->
|
|
|
|
|
<input type="text" class="txt" id="user_id" name="user_id"/>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
@ -144,7 +145,7 @@ $(function(){
|
|
|
|
|
//$(".balance").text($('#user_id option:selected').attr('coin-balance')+'平台币');
|
|
|
|
|
$('#user_id').change(function(){
|
|
|
|
|
//$(".balance").text($('#user_id option:selected').attr('coin-balance')+'平台币');
|
|
|
|
|
var user_id = $('#user_id option:selected').attr('value');
|
|
|
|
|
var user_id = $('#user_id').val();
|
|
|
|
|
if(this.value !="请选择账号"){
|
|
|
|
|
|
|
|
|
|
getUserPlayGameName(user_id);
|
|
|
|
|