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

47 lines
1.8KB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
  6. <title>安装支付接口</title>
  7. <link rel="stylesheet" href="../static/web/font/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. </head>
  11. <body>
  12. <table cellpadding="3" cellspacing="1" align="center" class="table maintable my-3">
  13. <tr>
  14. <td bgcolor="#f5f5f5" colspan="2"><a href="sys_payment.php">支付接口设置</a> &gt; 安装支付接口</td>
  15. </tr>
  16. <form action="sys_payment.php" method="post" enctype="multipart/form-data" name="form1">
  17. <input type="hidden" name="pid" value="<?php echo $row['id'];?>">
  18. <input type="hidden" name="pm" value="<?php echo $pm;?>">
  19. <input type="hidden" name="dopost" value="config">
  20. <tr>
  21. <td width="260">支付名称:</td>
  22. <td><input type="text" name="pay_name" id="pay_name" class="admin-textarea-xl" value="<?php echo $row['name'];?>"></td>
  23. </tr>
  24. <tr>
  25. <td>支付描述:</td>
  26. <td><textarea name="pay_desc" id="pay_desc" class="admin-textarea-xl"><?php echo $row['description'];?></textarea></td>
  27. </tr>
  28. <?php echo $reval ?>
  29. <tr>
  30. <td>手续费:</td>
  31. <td><input type="text" name="pay_fee" id="pay_fee" class="admin-input-xs" value="<?php echo $row['fee'];?>"> 元</td>
  32. </tr>
  33. <tr>
  34. <td>货到付款:</td>
  35. <td><?php echo ($row['cod']==0)? '否':'是';?></td>
  36. </tr>
  37. <tr>
  38. <td>在线支付:</td>
  39. <td><?php echo ($row['online']==0)? '否':'是';?></td>
  40. </tr>
  41. <tr>
  42. <td bgcolor="#f5f5f5" colspan="2" align="center"><button type="submit" class="btn btn-success btn-sm">保存</button></td>
  43. </tr>
  44. </form>
  45. </table>
  46. </body>
  47. </html>