62 lines
2.4 KiB
PHP
62 lines
2.4 KiB
PHP
@extends('layouts.base')
|
|
@section('title', trans('激活码记录'))
|
|
@section('content')
|
|
<div class="w1200 ">
|
|
<style>
|
|
.time {
|
|
width: 30%;
|
|
float: left;
|
|
}
|
|
table a {
|
|
color: #333;
|
|
}
|
|
</style>
|
|
<div class=" rightlist ">
|
|
<div class="right-titpos">
|
|
<ul class="add-snav">
|
|
<li class="active"><a href="#">激活码记录</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="clearfix">
|
|
<div class="panel panel-default">
|
|
<div class="panel-body table-responsive">
|
|
<table class="table table-hover">
|
|
<thead class="navbar-inner">
|
|
<tr>
|
|
<th width="6%">经销商等级</th>
|
|
<th width="10%">已使用/已发放</th>
|
|
<th width="10%">发放/使用记录</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach($level_list as $item)
|
|
<tr>
|
|
<td>{{$item['level_name']}}</td>
|
|
<td>{{$item['used_num']}}/{{$item['send_num']}}</td>
|
|
<td style="height: 59px;">
|
|
<a href="{!! yzWebUrl('plugin.team-dividend.admin.code-record.details', ['level_id'=>$item['id']]) !!}">
|
|
查看详情
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
{!!$pager!!}
|
|
<!--分页-->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script language='javascript'>
|
|
$(function () {
|
|
$('#export').click(function(){
|
|
$('#form1').get(0).action="{!! yzWebUrl('plugin.team-dividend.admin.code-record.export') !!}";
|
|
$('#form1').submit();
|
|
$('#form1').get(0).action="{!! yzWebUrl('plugin.team-dividend.admin.code-record.index') !!}";
|
|
});
|
|
});
|
|
</script>
|
|
@endsection |