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.

conf_weixin.htm 8.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. {include file="public/layout" /}
  2. <body class="bodystyle" style="overflow-y: scroll;min-width:auto;">
  3. <div id="toolTipLayer" style="position: absolute; z-index: 9999; display: none; visibility: visible; left: 95px; top: 573px;"></div>
  4. <div id="append_parent"></div>
  5. <div id="ajaxwaitid"></div>
  6. <style type="text/css">
  7. .ercodepic{
  8. width: 150px;
  9. height: 150px;
  10. vertical-align: middle;
  11. text-align: center;
  12. display: table-cell;
  13. }
  14. </style>
  15. <div class="page" style="min-width: auto;box-shadow:none;">
  16. {include file="canal/bar" /}
  17. <!-- 操作说明 -->
  18. <div id="explanation" class="explanation">
  19. <div id="checkZoom" class="title"><i class="fa fa-lightbulb-o"></i>
  20. <h4 title="提示相关设置操作时应注意的要点">提示</h4>
  21. <span title="收起提示" id="explanationZoom" style="display: block;"></span>
  22. </div>
  23. <ul>
  24. <li>登录微信小程序平台 <a href="https://mp.weixin.qq.com" target="_blank">https://mp.weixin.qq.com</a> ,在“开发管理->开发设置”里获取AppID、AppSecret的值</li>
  25. <li>登录微信支付商户平台 <a href="https://pay.weixin.qq.com" target="_blank">https://pay.weixin.qq.com</a> ,具体点击<a href="JavaScript:void(0);" onclick="click_to_eyou_1575506523('https://www.eyoucms.com/plus/view.php?aid=8829&origin_eycms=1','微信支付配置教程')" class="red">查看教程</a>操作</li>
  26. <li>以下配置可通用于开源微信小程序API、或云插件库里的微信小程序插件。</li>
  27. </ul>
  28. </div>
  29. <form class="form-horizontal" id="post_form" action="{:url('Canal/conf_weixin')}" method="post">
  30. <div class="ncap-form-default">
  31. <dl class="row"><dt class="tit"><label><b>微信登录</b></label></dt></dl>
  32. <dl class="row">
  33. <dt class="tit">
  34. <label for="appid"><em id="em_appid" {empty name='$data.appid'}style="display: none;"{/empty}>*</em>AppID</label>
  35. </dt>
  36. <dd class="opt">
  37. <input type="text" name="appid" id="appid" value="{$data.appid|default=''}" class="input-txt" autocomplete="off">
  38. <p class="notic">小程序ID</p>
  39. </dd>
  40. </dl>
  41. <dl class="row">
  42. <dt class="tit">
  43. <label for="appsecret"><em id="em_appsecret" {empty name='$data.appsecret'}style="display: none;"{/empty}>*</em>AppSecret</label>
  44. </dt>
  45. <dd class="opt">
  46. <input type="text" name="appsecret" id="appsecret" value="{$data.appsecret|default=''}" class="input-txt" autocomplete="off">
  47. <p class="notic">小程序密钥</p>
  48. </dd>
  49. </dl>
  50. <dl class="row"><dt class="tit"><label><b>微信支付</b></label></dt></dl>
  51. <dl class="row">
  52. <dt class="tit">
  53. <label for="mchid">商户号</label>
  54. </dt>
  55. <dd class="opt">
  56. <input type="text" name="mchid" id="mchid" value="{$data.mchid|default=''}" class="input-txt" autocomplete="off">
  57. <p class="notic">商户ID</p>
  58. </dd>
  59. </dl>
  60. <dl class="row">
  61. <dt class="tit">
  62. <label for="apikey">APIv2密钥</label>
  63. </dt>
  64. <dd class="opt">
  65. <input type="text" name="apikey" id="apikey" value="{$data.apikey|default=''}" class="input-txt" autocomplete="off">
  66. <p class="notic">APIv2密钥</p>
  67. </dd>
  68. </dl>
  69. <dl class="row {empty name='$qrcodeurl'}none{/empty}" id="dl_qrcode">
  70. <dt class="tit">
  71. <label for="qrcode">小程序码</label>
  72. </dt>
  73. <dd class="opt">
  74. <span id="span_qrcode"></span>
  75. <div class="ercodepic">
  76. <img id="img_qrcode" src="__STATIC__/common/images/loading.gif" width="23" height="23" />
  77. </div>
  78. <p class="notic"></p>
  79. </dd>
  80. </dl>
  81. <div class="bot">
  82. <a href="JavaScript:void(0);" onclick="checkForm();" class="ncap-btn-big ncap-btn-green" id="submitBtn">确认提交</a>
  83. </div>
  84. </div>
  85. </form>
  86. </div>
  87. <script type="text/javascript">
  88. $(function(){
  89. $('#appid, #appsecret').keyup(function(){
  90. var appid = $.trim($('#appid').val());
  91. var appsecret = $.trim($('#appsecret').val());
  92. if (appid != '' || appsecret != '') {
  93. $('#em_appid').show();
  94. $('#em_appsecret').show();
  95. } else {
  96. $('#em_appid').hide();
  97. $('#em_appsecret').hide();
  98. }
  99. });
  100. function ajax_get_weixin_qrcode()
  101. {
  102. var appid = $.trim($('#appid').val());
  103. var appsecret = $.trim($('#appsecret').val());
  104. if (appid != '' && appsecret != '') {
  105. $('#dl_qrcode').show();
  106. var qrcodeurl = "{$qrcodeurl}";
  107. if (qrcodeurl != '') {
  108. $('#img_qrcode').attr('src', qrcodeurl);
  109. setTimeout(function(){
  110. $('#img_qrcode').attr('width', 150).attr('height', 150);
  111. },100);
  112. }
  113. }
  114. $.ajax({
  115. url: "{:url('Canal/ajax_get_weixin_qrcode', ['_ajax'=>1])}",
  116. type: 'GET',
  117. dataType: 'JSON',
  118. data: {},
  119. success: function (res) {
  120. if (1 == res.code) {
  121. $('#span_qrcode').hide();
  122. $('#img_qrcode').attr('src', '');
  123. $('#img_qrcode').attr('src', res.data.qrcodeurl).attr('width', 150).attr('height', 150).show();
  124. } else {
  125. $('#span_qrcode').html(res.msg);
  126. $('#img_qrcode').hide();
  127. return false;
  128. }
  129. },
  130. error: function (e) {
  131. $('#span_qrcode').html(e.responseText);
  132. $('#img_qrcode').hide();
  133. return false;
  134. }
  135. });
  136. }
  137. ajax_get_weixin_qrcode();
  138. });
  139. // 判断输入框是否为空
  140. function checkForm(){
  141. var appid = $.trim($('#appid').val());
  142. var appsecret = $.trim($('#appsecret').val());
  143. if (appid != '' || appsecret != '') {
  144. if(appid == ''){
  145. showErrorMsg('AppID不能为空!');
  146. $('#appid').focus();
  147. return false;
  148. }
  149. if(appsecret == ''){
  150. showErrorMsg('AppSecret不能为空!');
  151. $('#appsecret').focus();
  152. return false;
  153. }
  154. if($.trim($('#mchid').val()) == '' && $.trim($('#apikey').val()) != ''){
  155. showErrorMsg('微信支付商户号不能为空!');
  156. $('#mchid').focus();
  157. return false;
  158. }
  159. if($.trim($('#mchid').val()) != '' && $.trim($('#apikey').val()) == ''){
  160. showErrorMsg('微信支付API密钥不能为空!');
  161. $('#apikey').focus();
  162. return false;
  163. }
  164. }
  165. layer_loading('正在处理');
  166. $.ajax({
  167. url: "{:url('Canal/conf_weixin', ['_ajax'=>1])}",
  168. type: 'POST',
  169. dataType: 'JSON',
  170. data: $('#post_form').serialize(),
  171. success: function (res) {
  172. layer.closeAll();
  173. if (1 == res.code) {
  174. layer.msg(res.msg, {shade: layer_shade, time: 1000}, function(){
  175. window.location.reload();
  176. });
  177. } else {
  178. showErrorAlert(res.msg);
  179. return false;
  180. }
  181. },
  182. error: function (e) {
  183. layer.closeAll();
  184. showErrorAlert(e.responseText);
  185. return false;
  186. }
  187. });
  188. }
  189. </script>
  190. {include file="public/footer" /}