index_approve.html 1.0 KB

1234567891011121314151617181920212223242526
  1. {notempty name='vo.approve'}
  2. <table cellpadding="8">
  3. {foreach $vo.approve as $k=>$v}
  4. <tr>
  5. {if ($k eq 1)}<td class="content with-30" rowspan="{$vo.approve_count}">审批流程</td>{/if}
  6. <td class="content with-70" style="line-height: 100%;">
  7. {if $v.remark}<div style="line-height: 100%;">{$v.remark}</div> {/if}
  8. <table cellpadding="0">
  9. <tr>
  10. <td>{$v.user.name|default='--'}&nbsp;{$get_approve_status_list_admin[$v.status]|default='--'}</td>
  11. <td align="right">{$v.approve_time|default='--'}</td>
  12. </tr>
  13. </table>
  14. {if ($v.user.signature_status eq 3 && $v.user.signature)}
  15. <img src="{$v.user.signature}" height="30px" style="vertical-align:top;">
  16. {/if}
  17. </td>
  18. </tr>
  19. {/foreach}
  20. {notempty name='vo.approve_copy'}
  21. <tr>
  22. <td class="content">抄送 {foreach $vo.approve_copy as $k=>$v}{$v.user.name|default='--'}&nbsp;{/foreach}</td>
  23. </tr>
  24. {/notempty}
  25. </table>
  26. {/notempty}