pay_modify.php 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>改价</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <meta name="viewport" content="width=device-width" />
  7. <link href="<?php echo $data['rootUrl']; ?>global/v1/m/images/style.css" rel="stylesheet" type="text/css" />
  8. <link href="<?php echo $data['rootUrl']; ?>global/v1/js/easydialog.css" rel="stylesheet" type="text/css" />
  9. </head>
  10. <body>
  11. <div class="main_content new_product">
  12. <div class="globle_form">
  13. <form action="<?php echo $data['rootUrl']; ?>m/pay/modify/<?php echo $data['userArray']['id']; ?>" name="cityform" method="post">
  14. <table cellspacing="0" cellpadding="0" class="tableForm">
  15. <tr><th width="120">订单号</th><td><?php echo $data['userArray']['trade_sn']; ?></td></tr>
  16. <tr><th width="120">栏目名称</th><td><input type="text" name="money" value="<?php echo $data['userArray']['money']; ?>" class="inputText"></td></tr>
  17. <tr><td><input id="demoBtn3" class="button btn-orange" type="submit" name="citysubmit" value="修改价格"></td></tr>
  18. </table>
  19. </form>
  20. </div>
  21. </div>
  22. <script language="javascript" type="text/javascript" src="http://zhzdwk.com/statics/js/jquery.min.js"></script>
  23. <script>
  24. // 全选
  25. function selectall(name) {
  26. if ($("#check_box").attr("checked")==false) {
  27. $("input[name='"+name+"']").each(function() {
  28. this.checked=false;
  29. });
  30. } else {
  31. $("input[name='"+name+"']").each(function() {
  32. this.checked=true;
  33. });
  34. }
  35. }
  36. // 激活
  37. function confirm_active() {
  38. if(confirm('确认通过审核吗?')) $('#myform').submit();
  39. }
  40. // 删除
  41. function confirm_delete(){
  42. if(confirm('确认删除吗?')) $('#myform').submit();
  43. }
  44. function confirmurl(url,message) {
  45. url = url;
  46. if(confirm(message)) redirect(url);
  47. }
  48. function redirect(url) {
  49. location.href = url;
  50. }
  51. </script>
  52. </body>
  53. </html>