permission.blade.php 1.1 KB

1234567891011121314151617181920212223242526
  1. <div class="form-group">
  2. <label class="col-xs-12 col-sm-3 col-md-2 control-label">招商员权限</label>
  3. <div class="col-sm-9 col-xs-12 chks" >
  4. <label class="checkbox-inline">
  5. <input type="checkbox" class='chksingle' name="setdata[staff_perm][store_apply]" value="1" @if ($set['staff_perm']['store_apply'])
  6. checked
  7. @endif /> 门店审核
  8. </label>
  9. </div>
  10. </div>
  11. <div class="form-group">
  12. <label class="col-xs-12 col-sm-3 col-md-2 control-label">招商中心权限</label>
  13. <div class="col-sm-9 col-xs-12 chks" >
  14. <label class="checkbox-inline">
  15. <input type="checkbox" class='chksingle' name="setdata[center_perm][store_apply]" value="1" @if ($set['center_perm']['store_apply'])
  16. checked
  17. @endif /> 门店审核
  18. </label>
  19. <label class="checkbox-inline">
  20. <input type="checkbox" class='chksingle' name="setdata[center_perm][staff_apply]" value="1" @if ($set['center_perm']['staff_apply'])
  21. checked
  22. @endif /> 招商员审核
  23. </label>
  24. </div>
  25. </div>