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

69 lines
3.0KB

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