get_goods.html 2.73 KB
<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;">&yen;{$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>&nbsp;</div>
                            </td>-->
                        </tr>
                    </volist>
                    </tbody>
                </table>
            </div>
            <div class="iDiv" style="display: none;"></div>
        </div>
        <!--分页位置-->
        {$page} </div>
</div>
</body>
</html>