| 1234567891011121314151617181920212223242526 |
- <div class="form-group">
- <label class="col-xs-12 col-sm-3 col-md-2 control-label">招商员权限</label>
- <div class="col-sm-9 col-xs-12 chks" >
- <label class="checkbox-inline">
- <input type="checkbox" class='chksingle' name="setdata[staff_perm][store_apply]" value="1" @if ($set['staff_perm']['store_apply'])
- checked
- @endif /> 门店审核
- </label>
- </div>
- </div>
- <div class="form-group">
- <label class="col-xs-12 col-sm-3 col-md-2 control-label">招商中心权限</label>
- <div class="col-sm-9 col-xs-12 chks" >
- <label class="checkbox-inline">
- <input type="checkbox" class='chksingle' name="setdata[center_perm][store_apply]" value="1" @if ($set['center_perm']['store_apply'])
- checked
- @endif /> 门店审核
- </label>
- <label class="checkbox-inline">
- <input type="checkbox" class='chksingle' name="setdata[center_perm][staff_apply]" value="1" @if ($set['center_perm']['staff_apply'])
- checked
- @endif /> 招商员审核
- </label>
- </div>
- </div>
|