| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>改价</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name="viewport" content="width=device-width" />
- <link href="<?php echo $data['rootUrl']; ?>global/v1/m/images/style.css" rel="stylesheet" type="text/css" />
- <link href="<?php echo $data['rootUrl']; ?>global/v1/js/easydialog.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <div class="main_content new_product">
- <div class="globle_form">
- <form action="<?php echo $data['rootUrl']; ?>m/pay/modify/<?php echo $data['userArray']['id']; ?>" name="cityform" method="post">
- <table cellspacing="0" cellpadding="0" class="tableForm">
- <tr><th width="120">订单号</th><td><?php echo $data['userArray']['trade_sn']; ?></td></tr>
- <tr><th width="120">栏目名称</th><td><input type="text" name="money" value="<?php echo $data['userArray']['money']; ?>" class="inputText"></td></tr>
- <tr><td><input id="demoBtn3" class="button btn-orange" type="submit" name="citysubmit" value="修改价格"></td></tr>
- </table>
- </form>
- </div>
- </div>
- <script language="javascript" type="text/javascript" src="http://zhzdwk.com/statics/js/jquery.min.js"></script>
- <script>
- // 全选
- function selectall(name) {
- if ($("#check_box").attr("checked")==false) {
- $("input[name='"+name+"']").each(function() {
- this.checked=false;
- });
- } else {
- $("input[name='"+name+"']").each(function() {
- this.checked=true;
- });
- }
- }
- // 激活
- function confirm_active() {
- if(confirm('确认通过审核吗?')) $('#myform').submit();
- }
- // 删除
- function confirm_delete(){
- if(confirm('确认删除吗?')) $('#myform').submit();
- }
- function confirmurl(url,message) {
- url = url;
- if(confirm(message)) redirect(url);
- }
- function redirect(url) {
- location.href = url;
- }
- </script>
- </body>
- </html>
|