No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

wechat_template.htm 7.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. {include file="public/layout" /}
  2. <style type="text/css">
  3. .ncap-form-default dt.tit em.none{
  4. display: none;
  5. }
  6. </style>
  7. <body class="bodystyle" style="cursor: default; -moz-user-select: inherit; min-width:400px;">
  8. <div id="append_parent"></div>
  9. <div id="ajaxwaitid"></div>
  10. <div class="page min-hg-c-10" style="min-width: 400px;">
  11. <div class="flexigrid">
  12. <form class="form-horizontal" id="postWechatForm">
  13. <input type="hidden" name="pay_id" value="{$Config.pay_id}">
  14. <div class="ncap-form-default">
  15. <dl class="row">
  16. <dt class="tit">
  17. <label>支付功能</label>
  18. </dt>
  19. <dd class="opt">
  20. <label class="curpoin"><input id="is_open_wechat0" name="pay_info[is_open_wechat]" value="0" type="radio" {if condition="!isset($pay_info.is_open_wechat) || empty($pay_info.is_open_wechat)"} checked="checked"{/if}>开启</label>
  21. &nbsp;
  22. <label class="curpoin"><input id="is_open_wechat1" name="pay_info[is_open_wechat]" value="1" type="radio" {if condition="isset($pay_info.is_open_wechat) && $pay_info.is_open_wechat == 1"} checked="checked"{/if}>关闭</label>
  23. </dd>
  24. </dl>
  25. <!-- <dl class="row">
  26. <dt class="tit">
  27. <label>支付终端</label>
  28. </dt>
  29. <dd class="opt">
  30. <ul class="nc-row ncap-waybill-list">
  31. <li style="width: 100%;">
  32. <label class="label">
  33. <input class="check" type="checkbox" name="pay_terminal[]" value="1" {if condition="in_array(1, $Config.pay_terminal)"} checked="checked" {/if}>电脑端
  34. </label>
  35. &nbsp; &nbsp;
  36. <label class="label">
  37. <input class="check" type="checkbox" name="pay_terminal[]" value="2" {if condition="in_array(2, $Config.pay_terminal)"} checked="checked" {/if}>手机浏览器
  38. </label>
  39. &nbsp; &nbsp;
  40. <label class="label">
  41. <input class="check" type="checkbox" name="pay_terminal[]" value="3" {if condition="in_array(3, $Config.pay_terminal)"} checked="checked" {/if}>手机端微信
  42. </label>
  43. </li>
  44. </ul>
  45. </dd>
  46. </dl> -->
  47. <dl class="row">
  48. <dt class="tit">
  49. <label for="username"><em class="em_empty {notempty name='$pay_info.is_open_wechat'} none {/notempty}">*</em>微信AppId</label>
  50. </dt>
  51. <dd class="opt">
  52. <input type="text" name="pay_info[appid]" id="appid" value="{$pay_info.appid|default=''}" class="input-txt" autocomplete="off">
  53. <p class="notic">请输入您的微信公众平台中的微信AppId,用于微信支付。</p>
  54. </dd>
  55. </dl>
  56. <dl class="row">
  57. <dt class="tit">
  58. <label for="username"><em class="em_empty {notempty name='$pay_info.is_open_wechat'} none {/notempty}">*</em>微信商户号</label>
  59. </dt>
  60. <dd class="opt">
  61. <input type="text" name="pay_info[mchid]" id="mchid" value="{$pay_info.mchid|default=''}" class="input-txt" autocomplete="off">
  62. <p class="notic">请输入您的微信公众平台中的微信商户号,用于微信支付。</p>
  63. </dd>
  64. </dl>
  65. <dl class="row">
  66. <dt class="tit">
  67. <label for="username"><em class="em_empty {notempty name='$pay_info.is_open_wechat'} none {/notempty}">*</em>微信KEY值</label>
  68. </dt>
  69. <dd class="opt">
  70. <input type="text" name="pay_info[key]" id="key" value="{$pay_info.key|default=''}" class="input-txt" autocomplete="off">
  71. <p class="notic">请输入您的微信公众平台中的微信KEY值,用于微信支付。</p>
  72. </dd>
  73. </dl>
  74. <dl class="row">
  75. <div class="bot" style="padding-bottom:0px;">
  76. <a href="JavaScript:void(0);" onclick="wechatset();" class="ncap-btn-big ncap-btn-green" id="submitWechatBtn">确认提交</a>
  77. &nbsp;<a href="JavaScript:void(0);" onclick="click_to_eyou_1575506523('https://www.eyoucms.com/plus/view.php?aid=8829&origin_eycms=1','微信支付配置教程')" style="font-size: 12px;padding-left: 10px;position:absolute;top: 30px">不会配置?</a>
  78. </div>
  79. </dl>
  80. </div>
  81. </form>
  82. </div>
  83. </div>
  84. <script type="text/javascript">
  85. var parentObj = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
  86. $(function(){
  87. $("input[name='pay_info[is_open_wechat]']").click(function(){
  88. if(1 == $(this).val()){
  89. $('.em_empty').hide();
  90. } else {
  91. $('.em_empty').show();
  92. }
  93. });
  94. });
  95. /*微信支付配置*/
  96. function wechatset(){
  97. var is_open_wechat = $("#postWechatForm input[name='pay_info[is_open_wechat]']:checked").val();
  98. if (is_open_wechat == 0) {
  99. if ($('#postWechatForm input[id=appid]').val() == '') {
  100. layer.alert('微信AppId不能为空!', {icon: 2, title: false});
  101. return false;
  102. }
  103. if ($('#postWechatForm input[id=mchid]').val() == '') {
  104. layer.alert('微信商户号不能为空!', {icon: 2, title: false});
  105. return false;
  106. }
  107. if ($('#postWechatForm input[id=key]').val() == '') {
  108. layer.alert('微信KEY值不能为空!', {icon: 2, title: false});
  109. return false;
  110. }
  111. }
  112. layer_loading('正在处理');
  113. $.ajax({
  114. url: "{:url('PayApi/save_pay_api_config', ['_ajax'=>1])}",
  115. type: 'POST',
  116. dataType: 'JSON',
  117. data: $('#postWechatForm').serialize(),
  118. success: function(res){
  119. layer.closeAll();
  120. if (1 == res.code) {
  121. var _parent = parent;
  122. _parent.layer.close(parentObj);
  123. _parent.layer.msg(res.msg, {shade: layer_shade, time: 1000});
  124. } else {
  125. showErrorAlert(res.msg);
  126. }
  127. },
  128. error: function(e){
  129. layer.closeAll();
  130. showErrorAlert(e.responseText);
  131. return false;
  132. }
  133. });
  134. }
  135. </script>
  136. {include file="public/footer" /}