wechat.blade.php 4.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <div class="rightlist">
  2. <div class="panel panel-default">
  3. <div class="panel-heading">客户端</div>
  4. <div class="panel-body">
  5. <div class="form-group">
  6. <label class="col-xs-12 col-sm-3 col-md-2 control-label">微信支付</label>
  7. <div class="col-sm-9 col-xs-12">
  8. <label class="radio-inline">
  9. <input type="radio" name="set[wechat][wechat_status]" value="1"
  10. @if ($set['wechat']['wechat_status'] == 1 || !$set)
  11. checked
  12. @endif> 开启
  13. </label>
  14. <label class="radio-inline">
  15. <input type="radio" name="set[wechat][wechat_status]" value="0"
  16. @if (empty($set['wechat']['wechat_status']) || $set['wechat']['wechat_status'] == 0)
  17. checked
  18. @endif> 关闭
  19. </label>
  20. </div>
  21. </div>
  22. </div>
  23. <div class="panel-body">
  24. <div class="form-group">
  25. <label class="col-xs-12 col-sm-3 col-md-2 control-label">公众号APPID</label>
  26. <div class="col-sm-9 col-xs-12">
  27. <input type="text" name="set[wechat][GZH_appid]" class="form-control" value="{{$set['wechat']['GZH_appid']}}" autocomplete="off">
  28. <span class="help-block"></span>
  29. </div>
  30. </div>
  31. <div class="form-group">
  32. <label class="col-xs-12 col-sm-3 col-md-2 control-label">小程序APPID</label>
  33. <div class="col-sm-9 col-xs-12">
  34. <input type="text" name="set[wechat][XCX_appid]" class="form-control" value="{{$set['wechat']['XCX_appid']}}" autocomplete="off">
  35. <span class="help-block"></span>
  36. </div>
  37. </div>
  38. <div class="form-group">
  39. <label class="col-xs-12 col-sm-3 col-md-2 control-label">原始ID</label>
  40. <div class="col-sm-9 col-xs-12">
  41. <input type="text" name="set[wechat][initial_id]" class="form-control" value="{{$set['wechat']['initial_id']}}" autocomplete="off">
  42. <span class="help-block">
  43. gh开头如:gh_xxxxxxxxxxx
  44. </span>
  45. </div>
  46. </div>
  47. <div class="form-group">
  48. <label class="col-xs-12 col-sm-3 col-md-2 control-label">微信-付款码支付</label>
  49. <div class="col-sm-9 col-xs-12">
  50. <label class="radio-inline">
  51. <input type="radio" name="set[wechat][wechat_card_status]" value="1"
  52. @if ($set['wechat']['wechat_card_status'] == 1 || !$set)
  53. checked
  54. @endif> 开启
  55. </label>
  56. <label class="radio-inline">
  57. <input type="radio" name="set[wechat][wechat_card_status]" value="0"
  58. @if (empty($set['wechat']['wechat_card_status']) || $set['wechat']['wechat_card_status'] == 0)
  59. checked
  60. @endif> 关闭
  61. </label>
  62. </div>
  63. </div>
  64. <div class="form-group">
  65. <label class="col-xs-12 col-sm-3 col-md-2 control-label">微信-app+支付</label>
  66. <div class="col-sm-9 col-xs-12">
  67. <label class="radio-inline">
  68. <input type="radio" name="set[wechat][wechat_app_add]" value="1"
  69. @if ($set['wechat']['wechat_app_add'] == 1 || !$set)
  70. checked
  71. @endif> 开启
  72. </label>
  73. <label class="radio-inline">
  74. <input type="radio" name="set[wechat][wechat_app_add]" value="0"
  75. @if (empty($set['wechat']['wechat_app_add']) || $set['wechat']['wechat_app_add'] == 0)
  76. checked
  77. @endif> 关闭
  78. </label>
  79. </div>
  80. </div>
  81. </div>
  82. </div>
  83. </div>