index.blade.php 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. @extends('admin.public.base')
  2. @section('body_class')
  3. style="margin: 0 auto;width: 96%;padding: 30px 0px;"
  4. @endsection
  5. @section('content')
  6. <div class="page-header">
  7. @if( check_auth('admin/coupon/add') )
  8. <a href="{{url('admin/coupon/add')}}" class="btn btn-primary">新增</a>
  9. @endif
  10. </div>
  11. <form action="" method="get" class="form-horizontal form-line">
  12. <div class="form-group col col-md-1" style="margin-right: 2px;">
  13. <input type="text" class="form-control" name="coupon_code" value="{{request('coupon_code','')}}" placeholder="请输入优惠券编码查询" />
  14. </div>
  15. <div class="form-group col col-md-1" style="margin-right: 2px;">
  16. <input type="text" class="form-control" name="coupon_name" value="{{request('coupon_name','')}}" placeholder="请输入优惠券名称查询" />
  17. </div>
  18. <div class="form-group col col-md-1" style="margin-right: 2px;">
  19. <select name="status" class="form-control">
  20. <option value="" >优惠券状态</option>
  21. <option value="0" @if (request('status') === '0' ) selected="selected" @endif >启用</option>
  22. <option value="2" @if (request('status') === '2' ) selected="selected" @endif >停用</option>
  23. <option value="3" @if (request('status') === '3' ) selected="selected" @endif >结束</option>
  24. <option value="4" @if (request('status') === '4' ) selected="selected" @endif >作废</option>
  25. </select>
  26. </div>
  27. <div class="form-group col col-md-1" style="margin-right: 2px;">
  28. <select name="rebate_type" class="form-control">
  29. <option value="0" >优惠券类型</option>
  30. <option value="1" @if (request('rebate_type') == '1' ) selected="selected" @endif >满减</option>
  31. <option value="2" @if (request('rebate_type') == '2' ) selected="selected" @endif >折扣</option>
  32. <option value="3" @if (request('rebate_type') == '3' ) selected="selected" @endif >赠品</option>
  33. </select>
  34. </div>
  35. <div class="form-group col col-md-1" style="margin-right: 2px;">
  36. <input type="text" class="form-control" name="start_time" value="{{request('start_time','')}}" placeholder="请输入开始时间查询" />
  37. </div>
  38. <div class="form-group col col-md-1" style="margin-right: 2px;">
  39. <input type="text" class="form-control" name="end_time" value="{{request('end_time','')}}" placeholder="请输入结束时间查询" />
  40. </div>
  41. <input type="submit" class="btn btn-sm btn-primary" value="查询"/>
  42. <a href="{{url('admin/coupon/index')}}" class="btn btn-sm btn-default" >重置</a>
  43. </form>
  44. <div class="row">
  45. <div class="col-xs-12">
  46. <div class="table-responsive">
  47. <table class="table table-striped table-bordered table-hover">
  48. <thead>
  49. <tr>
  50. <th>优惠券编码</th>
  51. <th>优惠券名称</th>
  52. <th>优惠券类型</th>
  53. <th>优惠力度</th>
  54. <th>已领取/发行量</th>
  55. <th>活动城市</th>
  56. <th>商品范围</th>
  57. <th>发放类型</th>
  58. <th>店铺</th>
  59. <th>优惠券状态</th>
  60. <th>发放时间</th>
  61. <th>修改时间</th>
  62. <th>操作</th>
  63. </tr>
  64. </thead>
  65. <tbody>
  66. @foreach ($list as $a)
  67. <tr>
  68. <td> {{$a['coupon_code']}}</td>
  69. <td> {{$a['name']}}</td>
  70. <td>
  71. @if ($a['rebate_type'] == 1) 满减券 @endif
  72. @if ($a['rebate_type'] == 2) 折扣券 @endif
  73. @if ($a['rebate_type'] == 3) 赠品券 @endif
  74. </td>
  75. <td>
  76. 满 {{$a['std_pay']}} 元
  77. @if ($a['rebate_type'] == 1)
  78. 减 {{$a['rebate']}} 元
  79. @endif
  80. @if ($a['rebate_type'] == 2)
  81. 打 {{$a['rebate']}} 折
  82. @endif
  83. @if ($a['rebate_type'] == 3)
  84. 赠送 {{$a['rebate']}}
  85. @endif
  86. </td>
  87. <td> {{$a['custom_total']}}/{{$a['issue_total']}}</td>
  88. <td> {{$a['city_ids']}}</td>
  89. <td>
  90. @if ( $a['type_id'] == 1 )
  91. <a href="{{url('admin/coupon_product/index?'.http_build_query(['coupon_code'=>$a['coupon_code']]))}}">指定商品</a>
  92. @elseif ( $a['type_id'] == 3 )
  93. <a href="{{url('admin/coupon_product_exclude/index?'.http_build_query(['coupon_code'=>$a['coupon_code']]))}}">排除商品</a>
  94. @else
  95. 全部商品
  96. @endif
  97. </td>
  98. <td> {{$a['gant_name']}} </td>
  99. <td> {{$a['business_name']}} </td>
  100. <td>
  101. @if ($a['status'] == 0)
  102. @if ( $a['start_time'] > time() )
  103. 待开始
  104. @else
  105. 进行中
  106. @endif
  107. @endif
  108. @if ($a['status'] == 2) 停用 @endif
  109. @if ($a['status'] == 3) 结束 @endif
  110. @if ($a['status'] == 4) 作废 @endif
  111. </td>
  112. <td> {{date('Y/m/d H:i',$a['start_time'])}} ~ {{date('Y/m/d H:i:s',$a['end_time'])}}</td>
  113. <td> {{date('Y/m/d H:i',$a['update_time'])}}</td>
  114. <td>
  115. @if( check_auth('admin/custom_coupon/add') )
  116. <a href="{{url('admin/custom_coupon/add?'.http_build_query(['coupon_code'=>$a['coupon_code']]))}}" class="btn btn-primary btn-sm ">发放优惠券</a>
  117. @endif
  118. @if( check_auth('admin/coupon/edit') )
  119. <a class="btn btn-sm btn-warning" href="{{url('admin/coupon/edit?'.http_build_query(['id'=>$a['id']]))}}" title="查看">
  120. 编辑
  121. </a>
  122. @endif
  123. @if( check_auth('admin/custom_coupon/index') )
  124. <a class="btn btn-sm btn-primary" href="{{url('admin/custom_coupon/index?'.http_build_query(['coupon_code'=>$a['coupon_code']]))}}" title="领用记录">
  125. 发放记录
  126. </a>
  127. @endif
  128. @if( check_auth('admin/coupon/set_status') )
  129. @if ( $a['status'] == 2)
  130. <a class="delete btn btn-sm btn-success" data-url="{{url('admin/coupon/set_status?'.http_build_query(['id'=>$a['id'],'status'=>'0']))}}">
  131. 启用
  132. </a>
  133. @endif
  134. @if( $a['status'] == 0)
  135. <a class="delete btn btn-sm btn-danger" data-url="{{url('admin/coupon/set_status?'.http_build_query(['id'=>$a['id'],'status'=>'2']))}}">
  136. 停用
  137. </a>
  138. @endif
  139. @if ( $a['status'] < 3 )
  140. <a class="delete btn btn-sm btn-danger" data-url="{{url('admin/coupon/set_status?'.http_build_query(['id'=>$a['id'],'status'=>'4']))}}">
  141. 作废
  142. </a>
  143. @endif
  144. @endif
  145. </td>
  146. </tr>
  147. @endforeach
  148. <tr>
  149. <td colspan="20" class="page">{{$list->render()}}</td>
  150. </tr>
  151. <tr>
  152. <td colspan="20">总计 {{$list->total()}} 个产品</td>
  153. </tr>
  154. </tbody>
  155. </table>
  156. </div>
  157. </div>
  158. </div>
  159. @endsection