| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- @extends('layouts.base')
- @section('content')
- @section('title', '等级管理')
- <div class="w1200 ">
- <div class=" rightlist ">
- <div class="right-titpos">
- <ul class="add-snav">
- <li class="active"><a href="#">等级管理</a></li>
- </ul>
- </div>
- <form action="" method="post" class="form-horizontal" id="form1">
- <div class="right-addbox">
- <div class="panel panel-info">
- <div class="panel-body">
- </div>
- </div>
- </div>
- </form>
- <div class="clearfix">
- <div class='panel panel-default'>
- <div class='panel-body table-responsive'>
- <table class="table table-hover" style="overflow:visible;">
- <thead>
- <tr>
- <th style='width:10%;text-align: center;'>等级ID</th>
- <th style='width:8%;text-align: center;'>等级名称</th>
- <th style='width:8%;text-align: center;'>封顶金额</th>
- <th style='width:8%;text-align: center;'>操作</th>
- </tr>
- </thead>
- <tbody>
- @if (!empty($list))
- @foreach($list as $row)
- <tr>
- <td style='text-align: center;'>{{$row['id']}}</td>
- <td style='text-align: center;'>
- {{$row['level_name']}}
- </td>
- <td style='text-align: center;'>
- {{$row['hasOneSet']['total_amount']}}
- </td>
- <td style='text-align: center;'>
- <a class='btn btn-default' href="{{yzWebUrl("plugin.share-partner.admin.levels.edit", ['id'=>$row['id']])}}"
- >编辑</a>
- </td>
- </tr>
- @endforeach
- @else
- <td colspan="4" style="color: red">没有更多数据了!</td>
- @endif
- </tbody>
- </table>
- {!! $pager !!}
- </div>
- </div>
- </div>
- </div>
- </div>
- <script language="javascript">
- $(function () {
- });
- </script>
- @endsection
|