get_goods.html
2.73 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
<include file="public/layout" />
<script src="__PUBLIC__/static/js/layer/laydate/laydate.js"></script>
<body style="background-color: rgb(255, 255, 255); overflow: auto; cursor: default; -moz-user-select: inherit;">
<div id="append_parent"></div>
<div id="ajaxwaitid"></div>
<div class="page" style="padding: 0px 1% 0 1%;">
<div class="flexigrid">
<div class="mDiv">
<div class="ftitle">
<h5>(共{$pager->totalRows}条记录)</h5>
</div>
</div>
<div class="hDiv">
<div class="hDivBox">
<table cellspacing="0" cellpadding="0">
<thead>
<tr>
<th align="left" abbr="article_title" axis="col3" class="w500">
<div style="text-align: left; " class="">商品名称</div>
</th>
<th align="left" abbr="ac_id" axis="col4" class="w100">
<div style="text-align: center; " class="">价格</div>
</th>
<th align="center" abbr="article_show" axis="col5" class="w100">
<div style="text-align: center; " class="">库存</div>
</th>
<!--<th style="width:100%" axis="col7">
<div></div>
</th>-->
</tr>
</thead>
</table>
</div>
</div>
<div class="bDiv" style="height: auto;">
<div id="flexigrid" cellpadding="0" cellspacing="0" border="0">
<table>
<tbody>
<volist name="goodsList" id="list">
<tr>
<td align="left" class="w500">
<div style="text-align: left; ">{$list.goods_name}</div>
</td>
<td align="left" class="w100">
<div style="text-align: center;">¥{$list.market_price}</div>
</td>
<td align="left" class="w100">
<div style="text-align: center;">{$list.store_count}</div>
</td>
<!--<td align="" class="" style="width: 100%;">
<div> </div>
</td>-->
</tr>
</volist>
</tbody>
</table>
</div>
<div class="iDiv" style="display: none;"></div>
</div>
<!--分页位置-->
{$page} </div>
</div>
</body>
</html>