链街Dcat后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
741 B

5 years ago
5 years ago
  1. <div class="btn-group btn-group-toggle" data-toggle="buttons">
  2. <label class="btn btn-primary {{request()->get('type','today')=='today'? 'active':''}}">
  3. <input type="radio" name="options" id="today" checked> 今日
  4. </label>
  5. <label class="btn btn-primary {{request()->get('type')=='yesterday'? 'active':''}}">
  6. <input type="radio" name="options" checked id="yesterday"> 昨日
  7. </label>
  8. <label class="btn btn-primary {{request()->get('type')=='week'? 'active':''}}">
  9. <input type="radio" name="options" id="week"> 本周
  10. </label>
  11. <label class="btn btn-primary {{request()->get('type')=='month'? 'active':''}}">
  12. <input type="radio" name="options" id="month"> 本月
  13. </label>
  14. </div>