| 123456789101112131415161718192021222324252627282930313233 |
- <div class="form-group">
- <label class="col-xs-12 col-sm-3 col-md-2 control-label">招商中心独立分红</label>
- <div class="col-xs-12 col-sm-9 col-md-10">
- <label class="radio-inline">
- <input type="radio" name="setdata[store_dividend]" value="0"
- @if($set['store_dividend'] == 0) checked="checked" @endif /> 关闭</label>
- <label class="radio-inline">
- <input type="radio" name="setdata[store_dividend]" value="1"
- @if($set['store_dividend'] == 1) checked="checked" @endif /> 开启</label>
- <span style="" class='help-block'>
- 若开启,门店招商中心将按照独立设置分红<br/>
- </span>
- </div>
- </div>
- <div class="form-group">
- <label class="col-xs-12 col-sm-3 col-md-2 control-label">分红结算周期</label>
- <div class="col-sm-6 col-xs-6">
- <div class='input-group'>
- <input type='text' name='setdata[store_settle_days]' class="form-control discounts_value"
- value="{{$set['store_settle_days']}}"/>
- <div class='input-group-addon waytxt'>天</div>
- </div>
- <span style="" class='help-block'>
- 若设置为0天,将每10分钟左右分红一次<br/>
- </span>
- </div>
- </div>
|