index.html
4.5 KB
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
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0;" name="viewport" />
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>学考无忧-物流信息</title>
<link rel="stylesheet" href="__TMPL__/public/assets/css/reset.css">
<link rel="stylesheet" href="__TMPL__/public/assets/css/base.css">
</head>
<body>
<!-- 顶部 -->
<div class="order_top">
<a href="javascript:history.back(-1)">
<img src="__TMPL__/public/assets/images/left.png" alt="">
</a>
<p>物流信息</p>
</div>
<div class="logistics_box">
<!-- 商品信息 -->
<div class="log_detail">
<div class="log_detailImg">
<img src="{:cmf_get_image_url($indent.indent_goods.0.thumbnail)}" alt="">
</div>
<div class="log_detailTxt">
<h1 class="one-txt-cut">{$indent.indent_goods.0.book_name}</h1>
<p>运单号:<notempty name="$indent.logistic_code">{$indent.logistic_code}<else />暂无</notempty></p>
<p>
信息来源:
{$indent.logistic_name}
<!--
<if condition="$indent.logistic_name eq 'SF'">
顺丰快递
<elseif condition="$indent.logistic_name eq 'YTO'"/>
圆通快递
<elseif condition="$indent.logistic_name eq 'ZTO'"/>
中通快递
<elseif condition="$indent.logistic_name eq 'STO'"/>
申通快递
<elseif condition="$indent.logistic_name eq 'YD'"/>
韵达快递
<elseif condition="$indent.logistic_name eq 'HHTT'"/>
天天快递
<elseif condition="$indent.logistic_name eq 'HTKY'"/>
百世快递
<elseif condition="$indent.logistic_name eq 'YZPY'"/>
邮政快递包裹
<elseif condition="$indent.logistic_name eq 'EMS'"/>
EMS
<elseif condition="$indent.logistic_name eq 'DBL'"/>
德邦快递
<elseif condition="$indent.logistic_name eq 'ZJS'"/>
宅急送
<elseif condition="$indent.logistic_name eq 'TNT'"/>
TNT快递
<else />
<if condition="$indent.is_courier eq 1">
统一配送
<else/>
暂无
</if>
</if>
-->
</p>
</div>
</div>
</div>
<script src="__TMPL__/public/assets/js/base.js"></script>
<script src="__TMPL__/public/assets/js/jquery.js"></script>
<script>
var circle = $(".log_Li");
// console.log(circle);
var list = $(".log_rightTxt");
// console.log(list)
for (var i = 0; i < circle.length; i++) {
for (var j = 0; j < list.length; j++) {
if (i == j && i == 0 && j == 0) {
var h = $(list[j]).css("height");
console.log(h)
h = h.split("p");
h = parseInt(h[0]);
h = h + 20;
console.log(h);
console.log(h);
$(circle[i]).css("height", h + "px");
$(circle[i]).find(".log_line").css("height", h + "px");
} else if (i == j != 0) {
var h = $(list[j]).css("height");
// console.log(h)
h = h.split("p");
console.log(h[0]);
h = parseInt(h[0]);
h = h + 20;
console.log(h);
$(circle[i]).css("height", h + "px");
$(circle[i]).find(".log_line").css("height", h + "px");
}
}
}
</script>
</body>
</html>