|
@@ -0,0 +1,26 @@
|
|
|
+{notempty name='vo.approve'}
|
|
|
+<table cellpadding="8">
|
|
|
+ {foreach $vo.approve as $k=>$v}
|
|
|
+ <tr>
|
|
|
+ {if ($k eq 1)}<td class="content with-30" rowspan="{$vo.approve_count}">审批流程</td>{/if}
|
|
|
+ <td class="content with-70" style="line-height: 100%;">
|
|
|
+ {if $v.remark}<div style="line-height: 100%;">{$v.remark}</div> {/if}
|
|
|
+ <table cellpadding="0">
|
|
|
+ <tr>
|
|
|
+ <td>{$v.user.name|default='--'} {$get_approve_status_list_admin[$v.status]|default='--'}</td>
|
|
|
+ <td align="right">{$v.approve_time|default='--'}</td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ {if ($v.user.signature_status eq 3)}
|
|
|
+ <div style="line-height: 100%;"><img src="{$v.user.signature}" with="20px" height="20px"></div>
|
|
|
+ {/if}
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ {/foreach}
|
|
|
+ {notempty name='vo.approve_copy'}
|
|
|
+ <tr>
|
|
|
+ <td class="content">抄送 {foreach $vo.approve_copy as $k=>$v}{$v.user.name|default='--'} {/foreach}</td>
|
|
|
+ </tr>
|
|
|
+ {/notempty}
|
|
|
+</table>
|
|
|
+{/notempty}
|