国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
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.

273 lines
9.8KB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
  6. <title>支付接口设置</title>
  7. <link rel="stylesheet" href="/static/web/css/font-awesome.min.css">
  8. <link rel="stylesheet" href="/static/web/css/bootstrap.min.css">
  9. <link rel="stylesheet" href="/static/web/css/admin.css">
  10. <script src="/static/web/js/jquery.min.js"></script>
  11. <script src="/static/web/js/bootstrap.min.js"></script>
  12. <script src="/static/web/js/admin.main.js"></script>
  13. </head>
  14. <body>
  15. <div class="container-fluid">
  16. <ol class="breadcrumb">
  17. <li class="breadcrumb-item"><a href="index_body.php">后台面板</a></li>
  18. <li class="breadcrumb-item active">支付接口设置</li>
  19. </ol>
  20. <div class="card shadow-sm mb-3">
  21. <div class="card-header">支付接口设置</div>
  22. <div class="card-body">
  23. <ul class="nav nav-pills mb-3" id="pay-tab" role="tablist">
  24. <li class="nav-item" role="presentation">
  25. <button type="button" id="wechat-tab" class="nav-link active" data-toggle="tab" data-target="#wechat" role="tab" aria-controls="wechat" aria-selected="true">微信支付</button>
  26. </li>
  27. <li class="nav-item" role="presentation">
  28. <button type="button" id="alipay-tab" class="nav-link" data-toggle="tab" data-target="#alipay" role="tab" aria-controls="alipay" aria-selected="false">支付宝</button>
  29. </li>
  30. <li class="nav-item" role="presentation">
  31. <button type="button" id="bank-tab" class="nav-link" data-toggle="tab" data-target="#bank" role="tab" aria-controls="bank" aria-selected="false">银行转帐</button>
  32. </li>
  33. <li class="nav-item" role="presentation">
  34. <button type="button" id="balance-tab" class="nav-link" data-toggle="tab" data-target="#balance" role="tab" aria-controls="balance" aria-selected="false">积分支付</button>
  35. </li>
  36. <li class="nav-item" role="presentation">
  37. <button type="button" id="cod-tab" class="nav-link" data-toggle="tab" data-target="#cod" role="tab" aria-controls="cod" aria-selected="false">货到付款</button>
  38. </li>
  39. </ul>
  40. <div class="tab-content" id="pay-tabContent">
  41. <div class="tab-pane fade show active" id="wechat" role="tabpanel" aria-labelledby="wechat-tab">
  42. <form>
  43. <div class="form-group">
  44. <input type="checkbox" id="iptWechatEnabled">
  45. <label for="iptWechatEnabled">是否启用</label>
  46. </div>
  47. <div class="form-group">
  48. <label for="iptWechatAppID">AppID</label>
  49. <input type="text" id="iptWechatAppID" class="form-control">
  50. </div>
  51. <div class="form-group">
  52. <label for="iptWechatAPIv2Secret">APIv2Secret</label>
  53. <input type="text" id="iptWechatAPIv2Secret" class="form-control">
  54. </div>
  55. <div class="form-group">
  56. <label for="iptWechatMchID">商户号</label>
  57. <input type="text" id="iptWechatMchID" class="form-control">
  58. </div>
  59. <div class="form-group">
  60. <label for="iptWechatSortrank">排序(越小越靠前)</label>
  61. <input type="text" id="iptWechatSortrank" class="form-control" value="0">
  62. </div>
  63. </form>
  64. </div>
  65. <div class="tab-pane fade" id="alipay" role="tabpanel" aria-labelledby="alipay-tab">
  66. <form>
  67. <div class="form-group">
  68. <input type="checkbox" id="iptAlipayEnabled">
  69. <label for="iptAlipayEnabled">是否启用</label>
  70. </div>
  71. <div class="form-group">
  72. <label for="iptAlipayAPPID">APPID</label>
  73. <input type="text" id="iptAlipayAPPID" class="form-control">
  74. </div>
  75. <div class="form-group">
  76. <label for="iptAlipayPrivateKey">应用私钥</label>
  77. <input type="text" id="iptAlipayPrivateKey" class="form-control">
  78. </div>
  79. <div class="form-group">
  80. <label for="iptAlipayCertPublicKey">支付宝公钥证书</label>
  81. <input type="text" id="iptAlipayCertPublicKey" class="form-control">
  82. </div>
  83. <div class="form-group">
  84. <label for="iptAlipaySignType">签名类型</label>
  85. <input type="text" id="iptAlipaySignType" class="form-control" value="RSA2" disabled>
  86. </div>
  87. <div class="form-group">
  88. <label for="iptAlipaySortrank">排序(越小越靠前)</label>
  89. <input type="text" id="iptAlipaySortrank" class="form-control" value="0">
  90. </div>
  91. </form>
  92. </div>
  93. <div class="tab-pane fade" id="bank" role="tabpanel" aria-labelledby="bank-tab">
  94. <form>
  95. <div class="form-group">
  96. <input type="checkbox" id="iptBankEnabled">
  97. <label for="iptBankEnabled">是否启用</label>
  98. <span>(会员支付到指定银行卡,手动确认订单收款)</span>
  99. </div>
  100. <div class="form-group">
  101. <label for="iptBankAccountName">账户名</label>
  102. <input type="text" id="iptBankAccountName" class="form-control">
  103. </div>
  104. <div class="form-group">
  105. <label for="iptBankAccountNO">账号</label>
  106. <input type="text" id="iptBankAccountNO" class="form-control">
  107. </div>
  108. <div class="form-group">
  109. <label for="iptBankName">开户行</label>
  110. <input type="text" id="iptBankName" class="form-control">
  111. </div>
  112. <div class="form-group">
  113. <label for="iptBankSortrank">排序(越小越靠前)</label>
  114. <input type="text" id="iptBankSortrank" class="form-control" value="0">
  115. </div>
  116. </form>
  117. </div>
  118. <div class="tab-pane fade" id="balance" role="tabpanel" aria-labelledby="balance-tab">
  119. <form>
  120. <div class="form-group">
  121. <input type="checkbox" id="iptBalanceEnabled">
  122. <label for="iptBalanceEnabled">是否启用</label>
  123. <span>(采用积分进行支付)</span>
  124. </div>
  125. <div class="form-group">
  126. <label for="iptBalanceSortrank">排序(越小越靠前)</label>
  127. <input type="text" id="iptBalanceSortrank" class="form-control" value="0">
  128. </div>
  129. </form>
  130. </div>
  131. <div class="tab-pane fade" id="cod" role="tabpanel" aria-labelledby="cod-tab">
  132. <form>
  133. <div class="form-group">
  134. <input type="checkbox" id="iptCodEnabled">
  135. <label for="iptCodEnabled">是否启用</label>
  136. <span>(购买直接发货,到货后支付)</span>
  137. </div>
  138. <div class="form-group">
  139. <label for="iptCodSortrank">排序(越小越靠前)</label>
  140. <input type="text" id="iptCodSortrank" class="form-control" value="0">
  141. </div>
  142. </form>
  143. </div>
  144. <div class="text-center"><button type="submit" id="btnSave" class="btn btn-success btn-sm">保存</button></div>
  145. </div>
  146. </div>
  147. </div>
  148. </div>
  149. <script>
  150. $('.custom-file-input').on('change', function() {
  151. let fileName = $(this).val().split('\\').pop();
  152. $(this).siblings('.custom-file-label').addClass("selected").html(fileName);
  153. });
  154. let config = {
  155. Wechat: {
  156. AppID: '',
  157. APIv2Secret: '',
  158. MchID: '',
  159. Sortrank: 0,
  160. Enabled: true,
  161. },
  162. Alipay: {
  163. APPID: '',
  164. PrivateKey: '',
  165. CertPublicKey: '',
  166. SignType: 'RSA2',
  167. Sortrank: 0,
  168. Enabled: false,
  169. },
  170. Bank: {
  171. AccountName: '',
  172. AccountNO: '',
  173. Name: '',
  174. Sortrank: 0,
  175. Enabled: true,
  176. },
  177. Balance: {
  178. Sortrank: 0,
  179. Enabled: false,
  180. },
  181. Cod: {
  182. Sortrank: 0,
  183. Enabled: true,
  184. }
  185. }
  186. //加载系统config
  187. function getPayments() {
  188. $.get("sys_payment.php?dopost=get_payments", function(data) {
  189. if (data.code === 0) {
  190. for (const key in data.data) {
  191. if (Object.hasOwnProperty.call(data.data, key)) {
  192. const element = data.data[key];
  193. let itemConfig = {};
  194. try {
  195. itemConfig = JSON.parse(element.config);
  196. } catch (error) {
  197. itemConfig = config[key]
  198. }
  199. itemConfig.Sortrank = element.sortrank;
  200. itemConfig.Enabled = parseInt(element.status) === 0? false : true;
  201. for (const k1 in config[key]) {
  202. if (Object.hasOwnProperty.call(config[key], k1)) {
  203. const ee = config[key][k1];
  204. if (typeof itemConfig[k1] === "undefined") {
  205. itemConfig[k1] = ee;
  206. }
  207. }
  208. }
  209. for (const k2 in itemConfig) {
  210. if (Object.hasOwnProperty.call(itemConfig, k2)) {
  211. const element = itemConfig[k2];
  212. if ($(`#ipt${key}${k2}`).attr('type') === 'text') {
  213. $(`#ipt${key}${k2}`).val(element);
  214. } else if ($(`#ipt${key}${k2}`).attr('type') === 'checkbox') {
  215. $(`#ipt${key}${k2}`).prop('checked', element);
  216. }
  217. }
  218. }
  219. config[key] = itemConfig;
  220. }
  221. }
  222. }
  223. });
  224. }
  225. //更新config
  226. function updateConfig() {
  227. for (const key in config) {
  228. if (Object.hasOwnProperty.call(config, key)) {
  229. const element = config[key];
  230. for (const kk in element) {
  231. if (Object.hasOwnProperty.call(element, kk)) {
  232. const itemConfig = element[kk];
  233. if ($(`#ipt${key}${kk}`).attr('type') === 'text') {
  234. let val = $(`#ipt${key}${kk}`).val();
  235. if (kk === "Sortrank") {
  236. val = parseInt(val);
  237. }
  238. config[key][kk] = val;
  239. } else if ($(`#ipt${key}${kk}`).attr('type') === 'checkbox') {
  240. config[key][kk] = $(`#ipt${key}${kk}`).prop('checked');
  241. }
  242. }
  243. }
  244. }
  245. }
  246. }
  247. //保存配置信息
  248. function saveConfig() {
  249. $.ajax({
  250. type: "post",
  251. url: 'sys_payment.php?dopost=save_config',
  252. data: JSON.stringify(config),
  253. contentType: "application/json; charset=utf-8",
  254. dataType: "json",
  255. success: function(data) {
  256. if (data.code === 0) {
  257. ShowMsg("保存支付接口设置成功");
  258. } else {
  259. ShowMsg("保存支付接口设置失败");
  260. }
  261. }
  262. })
  263. }
  264. $(document).ready(function() {
  265. getPayments();
  266. $("#btnSave").click(() => {
  267. updateConfig()
  268. saveConfig();
  269. });
  270. });
  271. </script>
  272. </body>
  273. </html>