Files
OA/app/contract/view/purchase/view_purchased.html
T
2026-07-23 09:40:36 +08:00

37 lines
1.1 KiB
HTML

<tr>
<td colspan="6"><strong>物品信息</strong></td>
</tr>
<tr>
<td colspan="6">
<table class="layui-table layui-table-min" style="margin:0">
<tr>
<th width="200">物品名称</th>
<th width="100">单位</th>
<th width="100">规格</th>
<th width="100">采购单价</th>
<th width="100">数量</th>
<th width="100">小计</th>
<th>备注信息</th>
</tr>
{empty name="$detail.content_array"}
<tr class="sale-tr">
<td colspan="7" style="padding:12px; text-align:center; color:#999">暂无物品信息</td>
</tr>
{else/}
{volist name="$detail.content_array" id="vo"}
<tr class="sale-tr">
<td style="text-align:left;">{$vo.purchased_title|default=''}</td>
<td>{$vo.purchased_unit|default=''}</td>
<td>{$vo.purchased_specs|default=''}</td>
<td>{$vo.purchased_price|default='0.00'}</td>
<td>{$vo.purchased_num|default='1'}</td>
<td>{$vo.purchased_subtotal|default='0.00'}</td>
<td style="text-align:left;">{$vo.purchased_remark|default=''}</td>
</tr>
{/volist}
{/empty}
</table>
</td>
</tr>