lisy
2023-07-25 f1411a2c58e6c0e5f82d559d0653b23c04c16c20
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
@layout("/common/_container.html"){
<style type="text/css">
    html, body, #container {
        height: 100%;
        width: 100%;
    }
 
    .input-card .btn{
        margin-right: 1.2rem;
        width: 9rem;
    }
 
    .input-card .btn:last-child{
        margin-right: 0;
    }
</style>
<div class="ibox float-e-margins">
    <div class="ibox-content">
        <div class="form-horizontal">
            <input type="hidden" id="id" name="id" value="${tOrderPrivateCarId}">
            <div class="row" style="margin-top: 30px;">
                <div class="col-sm-4">
                    <h2 class="h3Class" style="font-weight: 700;">线路轨迹</h2>
                </div>
            </div>
            <div class="row" style="margin-top: 30px;">
                <div class="col-sm-10">
                    <div class="form-horizontal" id="map" style="margin-left: 50px;width: 100%; height: 500px;"></div>
                </div>
            </div>
 
        </div>
 
    </div>
</div>
<script defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCnvS7Xm3utDjc2fdd5Gvk5E1-bavcrzAA&callback=initMap&v=weekly"></script>
<script src="${ctxPath}/modular/system/tOrderPrivateCar/tOrderPrivateCar_info.js"></script>
@}