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

56 lines
2.4KB

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