list.blade.php 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. @extends('layouts.base')
  2. @section('content')
  3. @section('title', trans('微店等级列表'))
  4. <div class="rightlist">
  5. <!-- 新增加右侧顶部三级菜单 -->
  6. <div class="right-titpos">
  7. <ul class="add-snav">
  8. <li class="active"><a href="#">微店等级</a></li>
  9. </ul>
  10. </div>
  11. <!-- 新增加右侧顶部三级菜单结束 -->
  12. <form action="" method="post">
  13. <div class='panel panel-default'>
  14. <div class="panel-heading">总数:{{$list->total()}} </div>
  15. <div class='panel-body'>
  16. <table class="table">
  17. <thead>
  18. <tr>
  19. <th>等级权重</th>
  20. <th>等级名称</th>
  21. <th>分红比例</th>
  22. <th style="width:26%">商品</th>
  23. <th>操作</th>
  24. </tr>
  25. </thead>
  26. <tbody>
  27. @foreach($list as $row)
  28. <tr>
  29. <td><span class="label label-danger">{{ $row->level_weight }}</span></td>
  30. <td>{{ $row->level_name }}</td>
  31. <td>{{ $row->bonus_ratio }}</td>
  32. <td>
  33. <img src='{{tomedia($row->hasOneGoods->thumb)}}' style='width:30px;height:30px;padding:1px;border:1px solid #ccc' />
  34. <br/>
  35. {{$row->hasOneGoods->title}}
  36. </td>
  37. <td>
  38. <a class='btn btn-default' href="{{ yzWebUrl($operation_url['edit_level_url'], ['id' => $row->id]) }}" title="编辑/查看"><i class='fa fa-edit'></i></a>
  39. <a class='btn btn-default' href="{{ yzWebUrl($operation_url['delete_level_url'], ['id' => $row->id]) }}" onclick="return confirm('确认删除此等级吗?');return false;"><i class='fa fa-remove'></i></a>
  40. </td>
  41. </tr>
  42. @endforeach
  43. </tbody>
  44. </table>
  45. </div>
  46. {!! $pager !!}
  47. <div class='panel-footer'>
  48. <a class='btn btn-info' href="{{ yzWebUrl($operation_url['add_level_url']) }}"><i class="fa fa-plus"></i> 添加新等级</a>
  49. </div>
  50. </div>
  51. </form>
  52. </div>
  53. @endsection