【调度系统】广东民航医疗快线调度系统源代码
wzp
2024-12-05 9dc0d99742f5526321e1b5fdb0dec10e6725415e
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?php include "../inc/odbc.php"; ?>
<?php include "../inc/function.php"; ?>
<?php
$WEB_Name="现金券使用方法";
$D_No=empty($_REQUEST['D_No'])!=false ? "" : $_REQUEST['D_No'];
$CouponName=empty($_REQUEST['CouponName'])!=false ? "" : $_REQUEST['CouponName'];
?>
<!DOCTYPE html>
<html>
 
<head>
    <?php require 'ccs.php';?>
    <title><?php echo $WEB_Name;?></title>
 
    <!--Begin  Page Level  CSS -->
    <link href="assets/plugins/morris-chart/morris.css" rel="stylesheet">
    <link href="assets/plugins/jquery-ui/jquery-ui.min.css" rel="stylesheet"/>
     <!--End  Page Level  CSS -->
 
     <!-- BEGIN PAGE LEVEL STYLES -->
    <link href="assets/plugins/bootstrap-daterangepicker/daterangepicker.css" rel="stylesheet">
    <!-- END PAGE LEVEL STYLES -->
</head>
<?php $memu="UserOrderList";?>
<body class="sticky-header">
    <!--Start left side Menu-->
    <!--End left side menu-->
    
    <!-- main content start-->
    <div class="main-content" >
 
        <!-- header section start-->
        <!-- header section end-->
 
 
        <!--body wrapper start-->
        <div class="wrapper">
 
          <!--Start Page Title-->
              <!--End Page Title-->          
           
                 <!--Start row-->
                 <div class="row">
                     <div class="container">
                         <div class="analytics-box">
                             
                         </div>
                     </div>
                 </div>
                 <!--End row-->
                  
 
                   <!--Start row-->
                  <div class="row">
                   <!--Start info box-->
                   <div class="col-md-4">
                        <div class="panel panel-border panel-purple" style="text-align: center;">
                            <div class="panel-heading">
                                <h3 class="panel-title"><?php echo $CouponName;?></h3>
                            </div>
                            <div class="panel-body">
                                <p><h2 class="header-title" style="color:#660099;font-size:22px;font-weight:bold;"><?php echo substr($D_No,0,4)." ".substr($D_No,4,4)." ".substr($D_No,8,4)." ".substr($D_No,12,4);?></h2></p>
                            </div>
                        </div>
                    </div>
                   <div class="col-md-4">
                        <div class="panel panel-default">
                            <div class="panel-heading">
                                <h3 class="panel-title">使用方法:</h3>
                            </div>
                            <div class="panel-body">
                                <p>
                                    您可在客服确认价格后,告知现金抵用券号。客服将会为您在最终报价基础上,再减去相应的金额。<br><br>
                                    每张任务单只能使用一个现金抵用券。<br><br>
                                    现金抵用券可分享给您身边有需要的好友使用。<br><br>
                                    现金抵用券目前只支持从广州市区出发的转运任务。<br><br>
                                    现金券和其他优惠不能叠加。
                                </p>
                            </div>
                        </div>
                    </div>
                   <!--End info box-->
                
                  </div>
                  <!--End row-->
               
                </div>
        <!-- End Wrapper-->
 
 
        
 
       </div>
      <!--End main content -->
    
    <?php require 'vicgame.php';?>
    
 
    
 
</body>
 
</html>