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

71 lines
3.0KB

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