| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?
- include("../config/conn.php");
- include("../config/function.php");
- sesCheck();
- $userid=returnuserid($_SESSION["SHOPUSER"]);
- $orderbh=$_GET[orderbh];
- while0("*","yjcode_serverorder where orderbh='".$orderbh."' and userid=".$userid);if(!$row=mysql_fetch_array($res)){php_toheader("serverorder.php");}
- if(sqlzhuru($_POST[yjcode])=="qxtk"){
- zwzr();
- $zfmm=sha1(sqlzhuru($_POST[t1]));
- if(panduan("uid,zfmm","yjcode_user where zfmm='".$zfmm."' and uid='".$_SESSION[SHOPUSER]."'")==0){Audit_alert("支付密码有误!","serverqxtk.php?orderbh=".$orderbh);}
- if($row[ddzt]!=7 && $row[ddzt]!=9){Audit_alert("未知错误!","serverorderview.php?orderbh=".$orderbh);}
- $str="买方取消了退款申请";
- intotable("yjcode_serverorderlog","orderbh,userid,selluserid,admin,txt,sj","'".$orderbh."',".$row[userid].",".$row[selluserid].",1,'".$str."','".getsj()."'");
- updatetable("yjcode_serverorder","ddzt=4 where id=".$row[id]);
- php_toheader("serverorderview.php?orderbh=".$orderbh);
- }
- ?>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="x-ua-compatible" content="ie=7" />
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
- <title>用户管理面板 - <?=webname?></title>
- <? include("cssjs.html");?>
- <link href="css/buy.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <? include("../tem/top.html");?>
- <? include("top.php");?>
- <div class="yjcode">
- <? include("left.php");?>
- <!--RB-->
- <div class="userright">
-
- <!--白B-->
- <div class="rkuang">
-
- <? include("serverorderv.php");?>
- <? if($row[ddzt]==7 || $row[ddzt]==9){?>
- <script language="javascript">
- function tj(){
- if((document.f1.t1.value).replace("/\s/","")==""){alert("请输入支付密码");document.f1.t1.focus();return false;}
- layer.msg('正在操作,请稍候', {icon: 16 ,time: 0,shade :0.25});
- f1.action="serverqxtk.php?orderbh=<?=$orderbh?>";
- }
- </script>
- <form name="f1" method="post" onsubmit="return tj()">
- <ul class="ordercz">
- <li class="l1"><strong>取消退款申请的话,订单会变更为担保状态,需要商家再次提交验收</strong></li>
- <li class="l2">请输入您的支付密码:(<a href="zfmm.php" class="red">忘了支付密码?</a>)</li>
- <li class="l3"><input name="t1" class="inp" size="30" type="password"/></li>
- <li class="l4"><?=tjbtnr("取消退款")?></li>
- </ul>
- <input type="hidden" value="qxtk" name="yjcode" />
- <input type="hidden" value="<?=$orderbh?>" name="orderbh" />
- </form>
- <? }?>
- <div class="clear clear10"></div>
-
- </div>
- <!--白E-->
- </div>
- <!--RE-->
- </div>
- <div class="clear clear15"></div>
- <? include("../tem/bottom.html");?>
- </body>
- </html>
|