Commit ccb1b4cf by doszhang

dos

parent 98e1b954
......@@ -26,24 +26,18 @@
<table class="table table-striped table-bordered" id="users_table">
<thead>
<tr>
<th>ID</th>
<th>微信昵称</th>
<th>微信头像</th>
<th>来源</th>
<th>姓名</th>
<th>电话</th>
<th>时间</th>
<th>来源</th>
<th>微信昵称</th>
<th>微信头像</th>
</tr>
</thead>
<tbody class="text-left">
{:foreach from=$list item=item}
<tr>
<td>{:$item['id']}</td>
<td>{:$item['nickname']}</td>
<td><img class="headimgUrl" style="width:100px;height:100px;object-fit:contain;" src="{:$item['headimgurl']}" /></td>
<td>{:$item['name']}</td>
<td>{:$item['tel']}</td>
<td>{:$item.submit_time|date_format:'%Y-%m-%d %H:%M:%S'}</td>
<td>
{:if $item['uid'] == "weibo"}
微博
......@@ -51,6 +45,17 @@
微信
{:/if}
</td>
<td>{:$item['name']}</td>
<td>{:$item['tel']}</td>
<td>{:$item.submit_time|date_format:'%Y-%m-%d %H:%M:%S'}</td>
<td>
{:if $item['uid'] != "weibo"}
{:$item['nickname']}</td>
{:/if}
<td>
{:if $item['uid'] != "weibo"}
<img class="headimgUrl" style="width:100px;height:100px;object-fit:contain;" src="{:$item['headimgurl']}" /></td>
{:/if}
</tr>
{:/foreach}
</tbody>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment