【调度系统】广东民航医疗快线调度系统源代码
wzp
2025-05-14 a023d5daed320eb4dbf6cfb8c28529d41cf5f9c3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<html>
<head>
    <meta http-equiv="content-type" content="text/html;charset=utf-8"/>
    <meta name="viewport" content="width=device-width, initial-scale=1" /> 
    <title>微信支付查询</title>
</head>
<?php
if(empty($_REQUEST["ShopOrdID"])){
    exit;
}
$ShopOrdID = $_GET["ShopOrdID"];
 
 
 
?>
<body>  
    <form action="Order_Check.php" method="post">
        <div style="margin-left:2%;color:#f00">微信订单号和商户订单号选少填一个,微信订单号优先:</div><br/>
        <div style="margin-left:2%;">微信订单号:<span style="color:red;">例如4200000772202009185868636313</span></div><br/>
        <input type="text" style="width:96%;height:35px;margin-left:2%;" name="transaction_id" placeholder="例如4200000772202009185868636313" /><br /><br />
        <div style="margin-left:2%;">商户订单号:<span style="color:red;">例如2016875136-1380453402N91810221</span></div><br/>
        <input type="text" style="width:96%;height:35px;margin-left:2%;" name="out_trade_no" placeholder="例如2016875136-1380453402N91810221" /><br /><br />
        <input type="hidden" name="ShopOrdID" value="<?php echo $ShopOrdID;?>" />
        <div align="center">
            <input type="submit" value="查询" style="width:210px; height:50px; border-radius: 15px;background-color:#FE6714; border:0px #FE6714 solid; cursor: pointer;  color:white;  font-size:16px;" />
        </div>
    </form>
</body>
</html>