show_gd.html
3 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
<include file="public/layout"/>
<style>
.te_le .dataTables_paginate{float: left;}
.bot{float: right;padding: 15px 0}
.vdisib{display: inline-block;*display: inline;*zoom: 1;vertical-align: middle;}
.flexigrid .hDiv th, .flexigrid .bDiv td.dny{display: none;}
</style>
<body style="background-color: rgb(255, 255, 255); overflow: auto; cursor: default; -moz-user-select: inherit;">
<div class="page" style="padding: 0px 1% 0 1%;">
<!-- 操作说明 -->
<div class="flexigrid">
<div class="mDiv">
<div class="ftitle vdisib">
<h3 class="vdisib">商品详情</h3>
<h5 class="vdisib">(共{:count($goodlist)}条记录)</h5>
</div>
<div title="刷新数据" class="pReload vdisib"><i class="fa fa-refresh"></i></div>
</div>
<div class="bDiv" style="height: auto;">
<div id="flexigrid" cellpadding="0" cellspacing="0" border="0">
<table>
<tbody>
<tr>
<td abbr="ac_id" axis="col4" width="14%" align="left">
<div style="text-align: left; " class="">商品编号</div>
</td>
<td abbr="article_time" axis="col6" class="" align="left" width="35%">
<div style="text-align: left;" class="">商品名称</div>
</td>
<td abbr="ac_id" axis="col4" align="left" width="10%">
<div style="text-align: center; " class="">总数量</div>
</td>
<td abbr="ac_id" axis="col4" align="left" width="10%">
<div style="text-align: center; " class="">单位</div>
</td>
</tr>
<volist name="goodlist" id="list">
<tr>
<td class="" width="14%" align="left">
<div style="text-align: left; ">{$list.goods_sn}</div>
</td>
<td class="" align="left" width="35%">
<div style="text-align: left;">{$list.goods_name}</div>
</td>
<td align="left" width="10%">
<div style="text-align: center;">{$list.goods_num}</div>
</td>
<td align="left" width="10%">
<div style="text-align: center;">
<if condition="$list.lb_state eq 2">次
<else/>件</if>
</div>
</td>
</tr>
</volist>
</tbody>
</table>
</div>
<div class="iDiv" style="display: none;"></div>
</div>
</div>
</div>
</body>
</html>