dev_oa/app/oa/view/approve/view_chuchai.html

33 lines
765 B
HTML
Raw Normal View History

{extend name="../../base/view/common/base" /}
{block name="style"}
{include file="/approve/view_style" /}
{/block}
<!-- 主体 -->
{block name="body"}
2022-06-08 15:13:48 +08:00
<form class="layui-form p-4">
<h3 class="pb-3">出差审批</h3>
<table class="layui-table layui-table-form">
<tr>
<td class="layui-td-gray">出差地点</td>
<td>{$detail.address}</td>
</tr>
<tr>
<td class="layui-td-gray">出差日期</td>
<td>{$detail.start_time} 至 {$detail.end_time}</td>
</tr>
<tr>
<td class="layui-td-gray">出差事由</td>
<td colspan="3">{$detail.content}</td>
</tr>
</table>
{include file="/approve/view_step" /}
</div>
{/block}
<!-- /主体 -->
<!-- 脚本 -->
{block name="script"}
{include file="/approve/view_script" /}
{/block}
<!-- /脚本 -->