birth.html 679 字节
<include file="public@header" />
</head>
<body>
<table class="table table-bordered">
    <caption>会员列表</caption>
    <thead>
    <tr>
        <th>ID</th>
        <th>会员号</th>
        <th>姓名</th>
        <th>手机号</th>
        <th>生日</th>
        <th>微信号</th>

    </tr>
    </thead>
    <tbody>
        <volist name="data" id="vo">
            <tr>
                <td>{$vo.id}</td>
                <td>{$vo.members}</td>
                <td>{$vo.name}</td>
                <td>{$vo.phone}</td>
                <td>{$vo.birthday}</td>
                <td>{$vo.weixin}</td>

            </tr>
        </volist>
    </tbody>
</table>
</body>
</html>