| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <div class="rightlist">
- <div class="panel panel-default">
- <div class="panel-heading">客户端</div>
- <div class="panel-body">
- <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="set[wechat][wechat_status]" value="1"
- @if ($set['wechat']['wechat_status'] == 1 || !$set)
- checked
- @endif> 开启
- </label>
- <label class="radio-inline">
- <input type="radio" name="set[wechat][wechat_status]" value="0"
- @if (empty($set['wechat']['wechat_status']) || $set['wechat']['wechat_status'] == 0)
- checked
- @endif> 关闭
- </label>
- </div>
- </div>
- </div>
- <div class="panel-body">
- <div class="form-group">
- <label class="col-xs-12 col-sm-3 col-md-2 control-label">公众号APPID</label>
- <div class="col-sm-9 col-xs-12">
- <input type="text" name="set[wechat][GZH_appid]" class="form-control" value="{{$set['wechat']['GZH_appid']}}" autocomplete="off">
- <span class="help-block"></span>
- </div>
- </div>
- <div class="form-group">
- <label class="col-xs-12 col-sm-3 col-md-2 control-label">小程序APPID</label>
- <div class="col-sm-9 col-xs-12">
- <input type="text" name="set[wechat][XCX_appid]" class="form-control" value="{{$set['wechat']['XCX_appid']}}" autocomplete="off">
- <span class="help-block"></span>
- </div>
- </div>
- <div class="form-group">
- <label class="col-xs-12 col-sm-3 col-md-2 control-label">原始ID</label>
- <div class="col-sm-9 col-xs-12">
- <input type="text" name="set[wechat][initial_id]" class="form-control" value="{{$set['wechat']['initial_id']}}" autocomplete="off">
- <span class="help-block">
- gh开头如:gh_xxxxxxxxxxx
- </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="set[wechat][wechat_card_status]" value="1"
- @if ($set['wechat']['wechat_card_status'] == 1 || !$set)
- checked
- @endif> 开启
- </label>
- <label class="radio-inline">
- <input type="radio" name="set[wechat][wechat_card_status]" value="0"
- @if (empty($set['wechat']['wechat_card_status']) || $set['wechat']['wechat_card_status'] == 0)
- checked
- @endif> 关闭
- </label>
- </div>
- </div>
- <div class="form-group">
- <label class="col-xs-12 col-sm-3 col-md-2 control-label">微信-app+支付</label>
- <div class="col-sm-9 col-xs-12">
- <label class="radio-inline">
- <input type="radio" name="set[wechat][wechat_app_add]" value="1"
- @if ($set['wechat']['wechat_app_add'] == 1 || !$set)
- checked
- @endif> 开启
- </label>
- <label class="radio-inline">
- <input type="radio" name="set[wechat][wechat_app_add]" value="0"
- @if (empty($set['wechat']['wechat_app_add']) || $set['wechat']['wechat_app_add'] == 0)
- checked
- @endif> 关闭
- </label>
- </div>
- </div>
- </div>
- </div>
- </div>
|