573 lines
27 KiB
PHP
573 lines
27 KiB
PHP
<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">
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[is_team_dividend]" value="1"
|
||
@if($set['is_team_dividend'] == 1) checked="checked" @endif /> 开启</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[is_team_dividend]" value="0"
|
||
@if($set['is_team_dividend'] == 0) checked="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">
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[buy_self]" value="1"
|
||
@if($set['buy_self'] == 1) checked="checked" @endif /> 开启</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[buy_self]" value="0"
|
||
@if($set['buy_self'] == 0) checked="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">
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[is_flat_prize]" value="1"
|
||
@if($set['is_flat_prize'] == 1) checked="checked" @endif /> 开启</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[is_flat_prize]" value="0"
|
||
@if($set['is_flat_prize'] == 0) checked="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">
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[flat_prize_limit]" value="1"
|
||
@if($set['flat_prize_limit'] == 1) checked="checked" @endif /> 开启</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[flat_prize_limit]" value="0"
|
||
@if($set['flat_prize_limit'] == 0) checked="checked" @endif /> 关闭</label>
|
||
<span style="" class='help-block'>
|
||
开启后,一笔订单关系链从下往上只有第一个满足平级奖条件的上级会员可以获得平级奖
|
||
如第一个满足平级奖条件的会员的平级对象非直属下级,无法获得平级奖
|
||
</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-9 col-xs-12">
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[calculate_formula]" value="1"
|
||
@if($set['calculate_formula'] == 1) checked="checked" @endif /> 下级团队奖励</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[calculate_formula]" value="0"
|
||
@if(!$set['calculate_formula']) checked="checked" @endif /> 独立计算</label>
|
||
<span style="" class='help-block'>
|
||
下级团队奖励:按照下级获得的团队奖励金额来计算平级奖<br />
|
||
独立计算:商品设置,基础设置等,单独计算平级奖,与下级无关
|
||
</span>
|
||
<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-9 col-xs-12">
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[is_award_gratitude]" value="1"
|
||
@if($set['is_award_gratitude'] == 1) checked="checked" @endif /> 开启</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[is_award_gratitude]" value="0"
|
||
@if($set['is_award_gratitude'] == 0) checked="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">
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[is_extra_award]" value="1"
|
||
@if($set['is_extra_award'] == 1) checked="checked" @endif /> 开启</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[is_extra_award]" value="0"
|
||
@if($set['is_extra_award'] == 0) checked="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-6 col-xs-6">
|
||
<div class='input-group'>
|
||
<input type='text' name='setdata[extra_level]' class="form-control discounts_value"
|
||
value="{{$set['extra_level'] ?: 1}}"/>
|
||
<div class='input-group-addon waytxt'>层</div>
|
||
</div>
|
||
<span class='help-block'>默认一层</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-9 col-xs-12">
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[is_reward_integral]" value="1" @if($set['is_reward_integral'] == 1) checked="checked" @endif /> 开启
|
||
</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[is_reward_integral]" value="0" @if($set['is_reward_integral'] == 0) checked="checked" @endif /> 关闭
|
||
</label>
|
||
<span class='help-block'>开启后经销商获得佣金时会同步获得相同比例的积分</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[integral_ratio]' class="form-control discounts_value" value="{{$set['integral_ratio'] ?: 1}}"/>
|
||
</div>
|
||
<span class='help-block'>同步奖励积分比例,默认1:1</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-9 col-xs-12">
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[redpack_enable]" value="1"
|
||
@if($set['redpack_enable'] == 1) checked="checked" @endif /> 显示</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[redpack_enable]" value="0"
|
||
@if($set['redpack_enable'] != 1) checked="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">
|
||
<select name='setdata[failure_hours]' class='form-control'>
|
||
@foreach($hours as $item)
|
||
<option value='{{$item['hours']}}'
|
||
@if($set['failure_hours'] == $item['hours'])
|
||
selected
|
||
@endif
|
||
>{{$item['title']}}</option>
|
||
@endforeach
|
||
</select>
|
||
</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">
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[settlement_event]" value="0"
|
||
@if(!$set['settlement_event'])
|
||
checked="checked" @endif />
|
||
订单完成后</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[settlement_event]" value="1"
|
||
@if($set['settlement_event'] == 1)
|
||
checked="checked" @endif />
|
||
订单支付后</label>
|
||
<span class='help-block'>默认[订单完成后]分红订单进入结算计算(ps:计算结算期)</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-9 col-xs-12">
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[upgrate_type]" value="1"
|
||
@if($set['upgrate_type'] == 1) checked="checked" @endif /> 或</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[upgrate_type]" value="0"
|
||
@if($set['upgrate_type'] == 0) checked="checked" @endif /> 与</label>
|
||
<span 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-9 col-xs-12">
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[including_self]" value="1"
|
||
@if($set['including_self'] == 1) checked="checked" @endif /> 包括</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[including_self]" value="0"
|
||
@if($set['including_self'] == 0) checked="checked" @endif /> 不包括</label>
|
||
<span class='help-block'></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-9 col-xs-12">
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[show_pay_order]" value="0"
|
||
@if($set['show_pay_order'] == 0) checked="checked" @endif /> 已完成订单</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[show_pay_order]" value="1"
|
||
@if($set['show_pay_order'] == 1) checked="checked" @endif /> 已支付订单</label>
|
||
|
||
<span class='help-block'>只影响后台的经销商管理(团队业绩,团队商品销量)。前端的团队业绩、团队商品销量、团队业绩列表、个人业绩。不影响升级条件等其他业绩统计</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-9 col-xs-12">
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[level_up_choose]" value="0"
|
||
@if($set['level_up_choose'] == 0) checked="checked" @endif />订单实付金额</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[level_up_choose]" value="1"
|
||
@if($set['level_up_choose'] == 1) checked="checked" @endif />订单现价</label>
|
||
<span class='help-block'>升级条件编号:1001、1003、1004、1007、1013订单金额的统计受设置的影响</span>
|
||
</div>
|
||
</div>
|
||
|
||
<div>
|
||
<h4>结算/提现设置</h4>
|
||
</div><hr>
|
||
|
||
{{--<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">--}}
|
||
{{--<label class="radio-inline">--}}
|
||
{{--<input type="radio" name="setdata[is_distinction]" value="1"--}}
|
||
{{--@if($set['is_distinction'] == 1) checked="checked" @endif /> 开启</label>--}}
|
||
{{--<label class="radio-inline">--}}
|
||
{{--<input type="radio" name="setdata[is_distinction]" value="0"--}}
|
||
{{--@if($set['is_distinction'] == 0) checked="checked" @endif /> 关闭</label>--}}
|
||
{{--</div>--}}
|
||
{{--</div>--}}
|
||
<input type="hidden" name="setdata[is_distinction]" value="1"></input>
|
||
|
||
<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">
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[culate_method]" value="0"
|
||
@if($set['culate_method'] == 0) checked="checked" @endif /> 订单价格:(不包括运费及抵扣金额)</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[culate_method]" value="1"
|
||
@if($set['culate_method'] == 1) checked="checked" @endif /> 利润:(订单最终价格-成本,负数取0)</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[culate_method]" value="2"
|
||
@if($set['culate_method'] == 2) checked="checked" @endif /> 成本:(订单成本价格,负数取0)</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[culate_method]" value="3"
|
||
@if($set['culate_method'] == 3) checked="checked" @endif /> 现价:(订单商品现价,负数取0)</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">
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[culate_model]" value="0"
|
||
@if($set['culate_model'] == 0) checked="checked" @endif />收入提现</label>
|
||
@if(app('plugins')->isEnabled('love'))
|
||
<label class="radio-inline" style="margin-left: 35px">
|
||
<input type="radio" name="setdata[culate_model]" value="1"
|
||
@if($set['culate_model'] == 1) checked="checked" @endif />转入爱心值(可用)</label>
|
||
<label class="radio-inline" style="margin-left: 35px">
|
||
<input type="radio" name="setdata[culate_model]" value="2"
|
||
@if($set['culate_model'] == 2) checked="checked" @endif />转入爱心值(冻结)</label>
|
||
@endif
|
||
<label class="radio-inline" style="margin-left: 35px">
|
||
<input type="radio" name="setdata[culate_model]" value="3"
|
||
@if($set['culate_model'] == 3) checked="checked" @endif />转入积分</label>
|
||
<label class="radio-inline" style="margin-left: 35px">
|
||
<input type="radio" name="setdata[culate_model]" value="5"
|
||
@if($set['culate_model'] == 5) checked="checked" @endif />转入余额</label>
|
||
<label class="radio-inline" style="margin-left: 35px">
|
||
<input type="radio" name="setdata[culate_model]" value="6"
|
||
@if($set['culate_model'] == 6) checked="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">
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[settlement_model]" value="0"
|
||
@if($set['settlement_model'] == 0) checked="checked" @endif />自动结算</label>
|
||
<label class="radio-inline" style="margin-left: 35px">
|
||
<input type="radio" name="setdata[settlement_model]" value="1"
|
||
@if($set['settlement_model'] == 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[settle_days]' class="form-control discounts_value"
|
||
value="{{$set['settle_days']}}"/>
|
||
<div class='input-group-addon waytxt'>天</div>
|
||
</div>
|
||
</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">
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[auto_withdraw]" value="1"
|
||
@if($set['auto_withdraw'] == 1) checked="checked" @endif />开启</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[auto_withdraw]" value="0"
|
||
@if($set['auto_withdraw'] == 0) checked="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-6 col-xs-6">
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[withdraw_type]" value="0"
|
||
@if($set['withdraw_type'] == 0) checked="checked" @endif />固定期</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[withdraw_type]" value="1"
|
||
@if($set['withdraw_type'] == 1) checked="checked" @endif />提现周期</label>
|
||
</div>
|
||
</div>
|
||
|
||
<div>
|
||
<h4>前端页面设置</h4>
|
||
</div><hr>
|
||
|
||
<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">
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[goods_details]" value="1"
|
||
@if($set['goods_details'] == 1) checked="checked" @endif /> 显示</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[goods_details]" value="0"
|
||
@if($set['goods_details'] == 0) checked="checked" @endif /> 隐藏</label>
|
||
<span style="" class='help-block'>
|
||
在商品活动中显示经销商等级提成比列,隐藏则不显示(非经销商身份不显示)
|
||
</span>
|
||
</div>
|
||
|
||
</div>
|
||
|
||
<input type='hidden' name='setdata[http_host]' class="form-control discounts_value"
|
||
value="{{$_SERVER['HTTP_HOST']}}"/>
|
||
|
||
<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">
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[is_record_list]" value="1"
|
||
@if($set['is_record_list'] == 1) checked="checked" @endif /> 显示</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[is_record_list]" value="0"
|
||
@if($set['is_record_list'] == 0) checked="checked" @endif /> 隐藏</label>
|
||
<span style="" class='help-block'>
|
||
默认隐藏,隐藏后提成记录中不显示未支付订单产生的提成记录;该设置与是否只显示已结算订单记录同时起效,前端显示同时满足两个条件的订单记录
|
||
</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-9 col-xs-12">
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[is_settle_list]" value="1"
|
||
@if($set['is_settle_list'] == 1) checked="checked" @endif /> 是</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[is_settle_list]" value="0"
|
||
@if($set['is_settle_list'] == 0) checked="checked" @endif /> 否</label>
|
||
<span style="" class='help-block'>
|
||
默认显示全部,该设置与是否显示未支付订单记录同时起效,前端显示同时满足两个条件的订单记录
|
||
</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-9 col-xs-12">
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[is_pay_record]" value="0"
|
||
@if($set['is_pay_record'] == 0) checked="checked" @endif /> 所有记录</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[is_pay_record]" value="1"
|
||
@if($set['is_pay_record'] == 1) checked="checked" @endif /> 已结算记录</label>
|
||
<span style="" class='help-block'>
|
||
默认统计所有记录,包含未支付订单的提成记录,选择已结算记录则只统计提成中已结算的记录;
|
||
</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-9 col-xs-12">
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[is_show_unpay]" value="0"
|
||
@if($set['is_show_unpay'] == 0) checked="checked" @endif /> 否</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[is_show_unpay]" value="1"
|
||
@if($set['is_show_unpay'] == 1) checked="checked" @endif /> 是</label>
|
||
<span style="" class='help-block'>
|
||
默认只统计已支付订单
|
||
</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-9 col-xs-12">
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[is_customer]" value="0"
|
||
@if($set['is_customer'] == 0) checked="checked" @endif /> 显示</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[is_customer]" value="1"
|
||
@if($set['is_customer'] == 1) checked="checked" @endif /> 不显示</label>
|
||
<span style="" class='help-block'>
|
||
默认显示
|
||
</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-9 col-xs-12">
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[is_team_data]" value="0"
|
||
@if($set['is_team_data'] == 0) checked="checked" @endif /> 显示</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[is_team_data]" value="1"
|
||
@if($set['is_team_data'] == 1) checked="checked" @endif /> 隐藏</label>
|
||
<span style="" class='help-block'>
|
||
默认显示
|
||
</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-9 col-xs-12">
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[is_team_order_details]" value="1"
|
||
@if($set['is_team_order_details'] == 1) checked="checked" @endif /> 开启</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[is_team_order_details]" value="0"
|
||
@if($set['is_team_order_details'] == 0) checked="checked" @endif /> 关闭</label>
|
||
<span style="" class='help-block'>
|
||
<p>开启后用户点击列表上记录展开显示订单详情</p>
|
||
</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-9 col-xs-12">
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[is_team_buyer]" value="1"
|
||
@if($set['is_team_buyer'] == 1) checked="checked" @endif /> 开启</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[is_team_buyer]" value="0"
|
||
@if($set['is_team_buyer'] == 0) checked="checked" @endif /> 关闭</label>
|
||
<span style="" class='help-block'>
|
||
<p>开启后用户点击列表上记录展开显示购买者信息</p>
|
||
</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-9 col-xs-12">
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[commission_record]" value="1"
|
||
@if($set['commission_record'] == 1 || empty($set['commission_record'])) checked="checked" @endif /> 显示</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[commission_record]" value="0"
|
||
@if($set['commission_record'] == 0 && isset($set['commission_record'])) checked="checked" @endif /> 隐藏</label>
|
||
</br>
|
||
<span style="" class='help-block'>
|
||
<p>不支持小程序</p>
|
||
</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-9 col-xs-12">
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[order_survey]" value="1"
|
||
@if($set['order_survey'] == 1) checked="checked" @endif /> 显示</label>
|
||
<label class="radio-inline">
|
||
<input type="radio" name="setdata[order_survey]" value="0"
|
||
@if($set['order_survey'] == 0) checked="checked" @endif /> 隐藏</label>
|
||
</br>
|
||
<span style="" class='help-block'>
|
||
<p>不支持小程序</p>
|
||
</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[recommend_text]' class="form-control discounts_value"--}}
|
||
{{--value="{{$set['recommend_text']}}"/>--}}
|
||
{{--<div class='input-group-addon waytxt'></div>--}}
|
||
{{--</div>--}}
|
||
{{--<span style="color: #3C4858">订单概况页面"直推字样"自定义</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[no_recommend_text]' class="form-control discounts_value"--}}
|
||
{{--value="{{$set['no_recommend_text']}}"/>--}}
|
||
{{--<div class='input-group-addon waytxt'></div>--}}
|
||
{{--</div>--}}
|
||
{{--<span style="color: #3C4858">订单概况页面"非直推字样"自定义</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[poundage]' class="form-control discounts_value"--}}
|
||
{{--value="{{$set['poundage']}}"/>--}}
|
||
{{--<div class='input-group-addon waytxt'>%</div>--}}
|
||
{{--</div>--}}
|
||
{{--</div>--}}
|
||
{{--</div>--}}
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|