applyed.html 3.38 KB
{template 'common/header'}
<ul class="nav nav-tabs">
	<li {if $op == 'display'}class="active"{/if}><a href="{php echo $this->createWebUrl('commission', array('op'=>'display'))}">佣金审核提现操作</a></li>
	<li {if $op == 'applyed'}class="active"{/if}><a href="{php echo $this->createWebUrl('commission', array('op'=>'applyed'))}">已结算订单</a></li>
	<li {if $op == 'invalid'}class="active"{/if}><a href="{php echo $this->createWebUrl('commission', array('op'=>'invalid'))}">审核无效</a></li>
	<li {if $op == 'list'}class="active"{/if}><a href="{php echo create_url('site/entry', array('do' => 'zhifu', 'op' => 'list','m' => 'wwx_fxxt','uniacid'=>$_W['uniacid']))}">代理提现报表</a></li>
</ul>

<div class="main">
	<div class="panel panel-info">
		<div class="panel-heading">筛选</div>
		<div class="panel-body">
			<form action="./index.php" method="get" class="form-horizontal" role="form" id="form1">
				<input type="hidden" name="c" value="site" />
				<input type="hidden" name="a" value="entry" />
				<input type="hidden" name="m" value="wwx_fxxt" />
				<input type="hidden" name="do" value="commission" />
				<input type="hidden" name="op" value="applyed" />
				<input type="hidden" name="opp" value="sort" />
				<div class="form-group">
					<label class="col-xs-12 col-sm-2 col-md-2 col-lg-1 control-label">真实姓名</label>
					<div class="col-sm-8 col-lg-9 col-xs-12">
						<input class="form-control" name="realname" id="" type="text" value="{$sort['realname']}" placeholder="可查询会员姓名 /昵称">
					</div>
				</div> 
				<div class="form-group">
					<label class="col-xs-12 col-sm-2 col-md-2 col-lg-1 control-label">手机号码</label>
					<div class="col-sm-8 col-lg-9 col-xs-12">
						<input class="form-control" name="mobile" id="" type="text" value="{$sort['mobile']}" placeholder="可查询手机号">
					</div>
				</div> 
				<div class="form-group">        <input type="submit" name="submit" value="搜  索" class="btn btn-primary"></div>
			</form>
		</div>
	</div>



	<div class="panel panel-default">
		<div class="panel-heading">佣金结算订单:<span class="label label-success"><?php echo $total;?></span> 单</div>
		<div class="panel-body table-responsive">
			<form action="" method="post" onsubmit="">
				<table class="table table-hover">
					<thead class="navbar-inner">
						<tr>
							<th style="width:150px;">真实姓名</th>
							<th style="width:80px;">手机号码</th>
							<th style="width:130px;">申请时间</th>
							<th style="width:100px;">佣金</th>
							<th style="width:60px;">状态</th>
							<th style="width:150px; text-align:right;">操作</th>
						</tr>
					</thead>
					<tbody>
						{loop $list $v}
							<tr>
								<td>{$member['realname'][$v['shareid']]}</td>
								<td>{$member['mobile'][$v['shareid']]}</td>
								<td>{php echo date('Y-m-d H:i:s',$v['applytime'])}</td>
								<td>{$v['commission']} <span class="label label-success">({$v['level']}级)</span></td>
								<td><span class="label label-success">审核通过</span></td>
								<td style="width:150px; text-align:right;"><a href="{php echo $this->createWebUrl('commission',array('op'=>'applyed', 'opp'=>'jieyong', 'id' => $v['id'], 'shareid'=>$v['shareid'],'level'=>$v['level']));}">结算明细</a></td>
							</tr>
						{/loop}
					</tbody>
				</table>
			</form>
			{$pager}
		</div>
	</div>
</div>

{template 'common/footer'}