国内流行的内容管理系统(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.

59 lines
2.7KB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
  5. <title>安装支付接口</title>
  6. <link rel="stylesheet" href="../static/web/css/bootstrap.min.css">
  7. <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
  8. <link rel="stylesheet" href="../static/web/css/admin.css">
  9. </head>
  10. <style>
  11. .npvar {
  12. width: 90%
  13. }
  14. </style>
  15. <body>
  16. <center>
  17. <table width="98%" cellpadding="3" cellspacing="1" align="center" class="table maintable mt-3 mb-3">
  18. <tr>
  19. <td height="26" background="../static/web/img/tbg.gif"><a href="sys_payment.php">支付接口列表</a> &gt; 安装支付接口</td>
  20. </tr>
  21. <tr>
  22. <td height="200">
  23. <table width="100%" cellspacing="4" cellpadding="4" class="table table-borderless">
  24. <form action="sys_payment.php" method="post" enctype="multipart/form-data" name="form1">
  25. <input type='hidden' name='pid' value='<?php echo $row['id']; ?>'>
  26. <input type='hidden' name='pm' value='<?php echo $pm; ?>'>
  27. <input type='hidden' name='dopost' value='config'>
  28. <tr>
  29. <td height="26" align="center">支付名称:</td>
  30. <td width="85%"><input name="pay_name" type="text" class='iptxt' id="pay_name" value="<?php echo $row['name']; ?>" size="30"></td>
  31. </tr>
  32. <tr>
  33. <td width="15%" height="108" align="center">支付描述:</td>
  34. <td><textarea name="pay_desc" cols="75" id="pay_desc" style="height:100px"><?php echo $row['description']; ?></textarea></td>
  35. </tr>
  36. <?php echo $reval ?>
  37. <tr>
  38. <td height="26" align="center">手续费:</td>
  39. <td><input name="pay_fee" type="text" class='iptxt' id="pay_fee" size="10" value="<?php echo $row['fee']; ?>"> 元</td>
  40. </tr>
  41. <tr>
  42. <td height="26" align="center">货到付款:</td>
  43. <td><?php echo ($row['cod']==0)? '否':'是'; ?></td>
  44. </tr>
  45. <tr>
  46. <td height="26" align="center">在线支付:</td>
  47. <td><?php echo ($row['online']==0)? '否':'是'; ?></td>
  48. </tr>
  49. <tr>
  50. <td colspan="2" align="center" class="py-3"><button type="submit" class="btn btn-success btn-sm">保存</button></td>
  51. </tr>
  52. </form>
  53. </table>
  54. </td>
  55. </tr>
  56. </table>
  57. </center>
  58. </body>
  59. </html>