You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
828 B
30 lines
828 B
<html>
|
|
<head>
|
|
<title>list</title>
|
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
|
|
</head>
|
|
<body>
|
|
<table border="1px">
|
|
<tr>
|
|
<th width="30">序号</th>
|
|
<th width="100">商品名称</th>
|
|
<th width="70">商品售价</th>
|
|
<th>商品规格</th>
|
|
<th width="70">商品总库存</th>
|
|
<th width="70">剩余库存</th>
|
|
<th>供货时间</th>
|
|
</tr>
|
|
{foreach from=$excel item=item name=f1}
|
|
<tr>
|
|
<td>{$smarty.foreach.f1.iteration}</td>
|
|
<td>{$item->product_title}</td>
|
|
<td>{$item->price}</td>
|
|
<td>{$item->specifications}</td>
|
|
<td>{$item->total_num}</td>
|
|
<td>{$item->num}</td>
|
|
<td>{$item->add_date}</td>
|
|
</tr>
|
|
{/foreach}
|
|
</table>
|
|
</body>
|
|
</html>
|