|
|
|
@ -28,7 +28,7 @@
|
|
|
|
|
<select id="game-select" name="game_id" class="reselect select_gallery" style="width: 220px;" >
|
|
|
|
|
<option value="0">请选择游戏</option>
|
|
|
|
|
<volist name="games" id="game">
|
|
|
|
|
<option value="{$game.game_id}" <if condition="I('game_id') === $game['id']">selected</if>>{$game.game_name}</option>
|
|
|
|
|
<option value="{$game.game_id}" <if condition="I('game_id') === $game['game_id']">selected</if>>{$game.game_name}</option>
|
|
|
|
|
</volist>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
@ -47,22 +47,22 @@
|
|
|
|
|
<option value="2" <if condition="I('sdk_version') === '2'">selected</if>>IOS</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<if condition="$grand_id eq 0">
|
|
|
|
|
<if condition="$parent_id eq 0">
|
|
|
|
|
<div class="form-group normal_space">
|
|
|
|
|
<select id="group-select" name="promote_id" class="reselect select_gallery" style="width: 220px;" >
|
|
|
|
|
<option value="0">请选择推广员</option>
|
|
|
|
|
<volist name="promotes" id="promote">
|
|
|
|
|
<option ba-id="{$promote.id}" value="{$promote.id}">{$promote.account}</option>
|
|
|
|
|
<select id="group-select" name="headman_promote_id" class="reselect select_gallery" style="width: 220px;" >
|
|
|
|
|
<option value="0">请选择组长</option>
|
|
|
|
|
<volist name="groupPromotes" id="promote">
|
|
|
|
|
<option ba-id="{$promote.id}" value="{$promote.id}" <if condition="I('headman_promote_id') == $promote['id']">selected</if>>{$promote.account}</option>
|
|
|
|
|
</volist>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
</if>
|
|
|
|
|
<if condition="$parent_id eq 0">
|
|
|
|
|
<if condition="$grand_id eq 0">
|
|
|
|
|
<div class="form-group normal_space">
|
|
|
|
|
<select id="promote-select" name="headman_promote_id" class="reselect select_gallery" style="width: 220px;" >
|
|
|
|
|
<option value="0">请选择组长</option>
|
|
|
|
|
<volist name="groupPromotes" id="promote">
|
|
|
|
|
<option ba-id="{$promote.id}" value="{$promote.id}">{$promote.account}</option>
|
|
|
|
|
<select id="promote-select" name="promote_id" class="reselect select_gallery" style="width: 220px;" >
|
|
|
|
|
<option value="0">请选择推广员</option>
|
|
|
|
|
<volist name="promotes" id="promote">
|
|
|
|
|
<option ba-id="{$promote.id}" value="{$promote.id}" <if condition="I('promote_id') == $promote['id']">selected</if>>{$promote.account}</option>
|
|
|
|
|
</volist>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|