zentaopms/extension/max/leave/view/review.html.php
2023-05-16 10:50:42 +08:00

30 lines
1.1 KiB
PHP

<?php
/**
* The review view file of leave module of RanZhi.
*
* @copyright Copyright 2009-2018 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
* @license ZPL (http://zpl.pub/page/zplv12.html)
* @author Tingting Dai <daitingting@xirangit.com>
* @package leave
* @version $Id$
* @link http://www.ranzhi.org
*/
?>
<?php include '../../common/view/header.modal.html.php';?>
<?php include $app->getModuleRoot() . 'common/view/kindeditor.html.php';?>
<form method='post' id='ajaxForm' action='<?php echo inlink('review', "id={$id}&status=reject&mode={$mode}")?>'>
<table class='table table-form'>
<tr>
<th class='w-80px text-middle'><?php echo $lang->leave->rejectReason;?></th>
<td><?php echo html::textarea('comment', '', "class='form-control'");?></td>
<td></td>
</tr>
<tr>
<th></th>
<td><?php echo baseHTML::submitButton();?></td>
<td></td>
</tr>
</table>
</form>
<?php include '../../common/view/footer.modal.html.php';?>